1{
2  "definitions": {
3    "io.k8s.api.admissionregistration.v1.MutatingWebhook": {
4      "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.",
5      "properties": {
6        "admissionReviewVersions": {
7          "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.",
8          "items": {
9            "type": "string"
10          },
11          "type": "array"
12        },
13        "clientConfig": {
14          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.WebhookClientConfig",
15          "description": "ClientConfig defines how to communicate with the hook. Required"
16        },
17        "failurePolicy": {
18          "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.",
19          "type": "string"
20        },
21        "matchPolicy": {
22          "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"",
23          "type": "string"
24        },
25        "name": {
26          "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
27          "type": "string"
28        },
29        "namespaceSelector": {
30          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
31          "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\";  you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"runlevel\",\n      \"operator\": \"NotIn\",\n      \"values\": [\n        \"0\",\n        \"1\"\n      ]\n    }\n  ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"environment\",\n      \"operator\": \"In\",\n      \"values\": [\n        \"prod\",\n        \"staging\"\n      ]\n    }\n  ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything."
32        },
33        "objectSelector": {
34          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
35          "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything."
36        },
37        "reinvocationPolicy": {
38          "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".",
39          "type": "string"
40        },
41        "rules": {
42          "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.",
43          "items": {
44            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.RuleWithOperations"
45          },
46          "type": "array"
47        },
48        "sideEffects": {
49          "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.",
50          "type": "string"
51        },
52        "timeoutSeconds": {
53          "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.",
54          "format": "int32",
55          "type": "integer"
56        }
57      },
58      "required": [
59        "name",
60        "clientConfig",
61        "sideEffects",
62        "admissionReviewVersions"
63      ],
64      "type": "object"
65    },
66    "io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration": {
67      "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.",
68      "properties": {
69        "apiVersion": {
70          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
71          "type": "string"
72        },
73        "kind": {
74          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
75          "type": "string"
76        },
77        "metadata": {
78          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
79          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
80        },
81        "webhooks": {
82          "description": "Webhooks is a list of webhooks and the affected resources and operations.",
83          "items": {
84            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhook"
85          },
86          "type": "array",
87          "x-kubernetes-patch-merge-key": "name",
88          "x-kubernetes-patch-strategy": "merge"
89        }
90      },
91      "type": "object",
92      "x-kubernetes-group-version-kind": [
93        {
94          "group": "admissionregistration.k8s.io",
95          "kind": "MutatingWebhookConfiguration",
96          "version": "v1"
97        }
98      ]
99    },
100    "io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList": {
101      "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.",
102      "properties": {
103        "apiVersion": {
104          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
105          "type": "string"
106        },
107        "items": {
108          "description": "List of MutatingWebhookConfiguration.",
109          "items": {
110            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
111          },
112          "type": "array"
113        },
114        "kind": {
115          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
116          "type": "string"
117        },
118        "metadata": {
119          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
120          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
121        }
122      },
123      "required": [
124        "items"
125      ],
126      "type": "object",
127      "x-kubernetes-group-version-kind": [
128        {
129          "group": "admissionregistration.k8s.io",
130          "kind": "MutatingWebhookConfigurationList",
131          "version": "v1"
132        }
133      ]
134    },
135    "io.k8s.api.admissionregistration.v1.RuleWithOperations": {
136      "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.",
137      "properties": {
138        "apiGroups": {
139          "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.",
140          "items": {
141            "type": "string"
142          },
143          "type": "array"
144        },
145        "apiVersions": {
146          "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.",
147          "items": {
148            "type": "string"
149          },
150          "type": "array"
151        },
152        "operations": {
153          "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.",
154          "items": {
155            "type": "string"
156          },
157          "type": "array"
158        },
159        "resources": {
160          "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.",
161          "items": {
162            "type": "string"
163          },
164          "type": "array"
165        },
166        "scope": {
167          "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".",
168          "type": "string"
169        }
170      },
171      "type": "object"
172    },
173    "io.k8s.api.admissionregistration.v1.ServiceReference": {
174      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
175      "properties": {
176        "name": {
177          "description": "`name` is the name of the service. Required",
178          "type": "string"
179        },
180        "namespace": {
181          "description": "`namespace` is the namespace of the service. Required",
182          "type": "string"
183        },
184        "path": {
185          "description": "`path` is an optional URL path which will be sent in any request to this service.",
186          "type": "string"
187        },
188        "port": {
189          "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
190          "format": "int32",
191          "type": "integer"
192        }
193      },
194      "required": [
195        "namespace",
196        "name"
197      ],
198      "type": "object"
199    },
200    "io.k8s.api.admissionregistration.v1.ValidatingWebhook": {
201      "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.",
202      "properties": {
203        "admissionReviewVersions": {
204          "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.",
205          "items": {
206            "type": "string"
207          },
208          "type": "array"
209        },
210        "clientConfig": {
211          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.WebhookClientConfig",
212          "description": "ClientConfig defines how to communicate with the hook. Required"
213        },
214        "failurePolicy": {
215          "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.",
216          "type": "string"
217        },
218        "matchPolicy": {
219          "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"",
220          "type": "string"
221        },
222        "name": {
223          "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
224          "type": "string"
225        },
226        "namespaceSelector": {
227          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
228          "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\";  you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"runlevel\",\n      \"operator\": \"NotIn\",\n      \"values\": [\n        \"0\",\n        \"1\"\n      ]\n    }\n  ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"environment\",\n      \"operator\": \"In\",\n      \"values\": [\n        \"prod\",\n        \"staging\"\n      ]\n    }\n  ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything."
229        },
230        "objectSelector": {
231          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
232          "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything."
233        },
234        "rules": {
235          "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.",
236          "items": {
237            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.RuleWithOperations"
238          },
239          "type": "array"
240        },
241        "sideEffects": {
242          "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.",
243          "type": "string"
244        },
245        "timeoutSeconds": {
246          "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.",
247          "format": "int32",
248          "type": "integer"
249        }
250      },
251      "required": [
252        "name",
253        "clientConfig",
254        "sideEffects",
255        "admissionReviewVersions"
256      ],
257      "type": "object"
258    },
259    "io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration": {
260      "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.",
261      "properties": {
262        "apiVersion": {
263          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
264          "type": "string"
265        },
266        "kind": {
267          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
268          "type": "string"
269        },
270        "metadata": {
271          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
272          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
273        },
274        "webhooks": {
275          "description": "Webhooks is a list of webhooks and the affected resources and operations.",
276          "items": {
277            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhook"
278          },
279          "type": "array",
280          "x-kubernetes-patch-merge-key": "name",
281          "x-kubernetes-patch-strategy": "merge"
282        }
283      },
284      "type": "object",
285      "x-kubernetes-group-version-kind": [
286        {
287          "group": "admissionregistration.k8s.io",
288          "kind": "ValidatingWebhookConfiguration",
289          "version": "v1"
290        }
291      ]
292    },
293    "io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList": {
294      "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.",
295      "properties": {
296        "apiVersion": {
297          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
298          "type": "string"
299        },
300        "items": {
301          "description": "List of ValidatingWebhookConfiguration.",
302          "items": {
303            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
304          },
305          "type": "array"
306        },
307        "kind": {
308          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
309          "type": "string"
310        },
311        "metadata": {
312          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
313          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
314        }
315      },
316      "required": [
317        "items"
318      ],
319      "type": "object",
320      "x-kubernetes-group-version-kind": [
321        {
322          "group": "admissionregistration.k8s.io",
323          "kind": "ValidatingWebhookConfigurationList",
324          "version": "v1"
325        }
326      ]
327    },
328    "io.k8s.api.admissionregistration.v1.WebhookClientConfig": {
329      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
330      "properties": {
331        "caBundle": {
332          "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
333          "format": "byte",
334          "type": "string"
335        },
336        "service": {
337          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ServiceReference",
338          "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
339        },
340        "url": {
341          "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
342          "type": "string"
343        }
344      },
345      "type": "object"
346    },
347    "io.k8s.api.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 webhook 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 chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. 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. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 MutatingWebhookConfiguration instead.",
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/sig-architecture/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/sig-architecture/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/sig-architecture/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/sig-architecture/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/sig-architecture/api-conventions.md#types-kinds",
458          "type": "string"
459        },
460        "metadata": {
461          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
462          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#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, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.",
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 webhook 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 chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. 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. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 ValidatingWebhookConfiguration instead.",
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/sig-architecture/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/sig-architecture/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/sig-architecture/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/sig-architecture/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/sig-architecture/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/sig-architecture/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.apiserverinternal.v1alpha1.ServerStorageVersion": {
688      "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.",
689      "properties": {
690        "apiServerID": {
691          "description": "The ID of the reporting API server.",
692          "type": "string"
693        },
694        "decodableVersions": {
695          "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.",
696          "items": {
697            "type": "string"
698          },
699          "type": "array",
700          "x-kubernetes-list-type": "set"
701        },
702        "encodingVersion": {
703          "description": "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).",
704          "type": "string"
705        }
706      },
707      "type": "object"
708    },
709    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": {
710      "description": "\n Storage version of a specific resource.",
711      "properties": {
712        "apiVersion": {
713          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
714          "type": "string"
715        },
716        "kind": {
717          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
718          "type": "string"
719        },
720        "metadata": {
721          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
722          "description": "The name is <group>.<resource>."
723        },
724        "spec": {
725          "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec",
726          "description": "Spec is an empty spec. It is here to comply with Kubernetes API style."
727        },
728        "status": {
729          "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus",
730          "description": "API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend."
731        }
732      },
733      "required": [
734        "spec",
735        "status"
736      ],
737      "type": "object",
738      "x-kubernetes-group-version-kind": [
739        {
740          "group": "internal.apiserver.k8s.io",
741          "kind": "StorageVersion",
742          "version": "v1alpha1"
743        }
744      ]
745    },
746    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition": {
747      "description": "Describes the state of the storageVersion at a certain point.",
748      "properties": {
749        "lastTransitionTime": {
750          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
751          "description": "Last time the condition transitioned from one status to another."
752        },
753        "message": {
754          "description": "A human readable message indicating details about the transition.",
755          "type": "string"
756        },
757        "observedGeneration": {
758          "description": "If set, this represents the .metadata.generation that the condition was set based upon.",
759          "format": "int64",
760          "type": "integer"
761        },
762        "reason": {
763          "description": "The reason for the condition's last transition.",
764          "type": "string"
765        },
766        "status": {
767          "description": "Status of the condition, one of True, False, Unknown.",
768          "type": "string"
769        },
770        "type": {
771          "description": "Type of the condition.",
772          "type": "string"
773        }
774      },
775      "required": [
776        "type",
777        "status",
778        "reason"
779      ],
780      "type": "object"
781    },
782    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList": {
783      "description": "A list of StorageVersions.",
784      "properties": {
785        "apiVersion": {
786          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
787          "type": "string"
788        },
789        "items": {
790          "items": {
791            "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
792          },
793          "type": "array"
794        },
795        "kind": {
796          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
797          "type": "string"
798        },
799        "metadata": {
800          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
801        }
802      },
803      "required": [
804        "items"
805      ],
806      "type": "object",
807      "x-kubernetes-group-version-kind": [
808        {
809          "group": "internal.apiserver.k8s.io",
810          "kind": "StorageVersionList",
811          "version": "v1alpha1"
812        }
813      ]
814    },
815    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": {
816      "description": "StorageVersionSpec is an empty spec.",
817      "type": "object"
818    },
819    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": {
820      "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.",
821      "properties": {
822        "commonEncodingVersion": {
823          "description": "If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.",
824          "type": "string"
825        },
826        "conditions": {
827          "description": "The latest available observations of the storageVersion's state.",
828          "items": {
829            "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition"
830          },
831          "type": "array",
832          "x-kubernetes-list-map-keys": [
833            "type"
834          ],
835          "x-kubernetes-list-type": "map"
836        },
837        "storageVersions": {
838          "description": "The reported versions per API server instance.",
839          "items": {
840            "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion"
841          },
842          "type": "array",
843          "x-kubernetes-list-map-keys": [
844            "apiServerID"
845          ],
846          "x-kubernetes-list-type": "map"
847        }
848      },
849      "type": "object"
850    },
851    "io.k8s.api.apps.v1.ControllerRevision": {
852      "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.",
853      "properties": {
854        "apiVersion": {
855          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
856          "type": "string"
857        },
858        "data": {
859          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
860          "description": "Data is the serialized representation of the state."
861        },
862        "kind": {
863          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
864          "type": "string"
865        },
866        "metadata": {
867          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
868          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
869        },
870        "revision": {
871          "description": "Revision indicates the revision of the state represented by Data.",
872          "format": "int64",
873          "type": "integer"
874        }
875      },
876      "required": [
877        "revision"
878      ],
879      "type": "object",
880      "x-kubernetes-group-version-kind": [
881        {
882          "group": "apps",
883          "kind": "ControllerRevision",
884          "version": "v1"
885        }
886      ]
887    },
888    "io.k8s.api.apps.v1.ControllerRevisionList": {
889      "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.",
890      "properties": {
891        "apiVersion": {
892          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
893          "type": "string"
894        },
895        "items": {
896          "description": "Items is the list of ControllerRevisions",
897          "items": {
898            "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
899          },
900          "type": "array"
901        },
902        "kind": {
903          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
904          "type": "string"
905        },
906        "metadata": {
907          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
908          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
909        }
910      },
911      "required": [
912        "items"
913      ],
914      "type": "object",
915      "x-kubernetes-group-version-kind": [
916        {
917          "group": "apps",
918          "kind": "ControllerRevisionList",
919          "version": "v1"
920        }
921      ]
922    },
923    "io.k8s.api.apps.v1.DaemonSet": {
924      "description": "DaemonSet represents the configuration of a daemon set.",
925      "properties": {
926        "apiVersion": {
927          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
928          "type": "string"
929        },
930        "kind": {
931          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
932          "type": "string"
933        },
934        "metadata": {
935          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
936          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
937        },
938        "spec": {
939          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec",
940          "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"
941        },
942        "status": {
943          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus",
944          "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"
945        }
946      },
947      "type": "object",
948      "x-kubernetes-group-version-kind": [
949        {
950          "group": "apps",
951          "kind": "DaemonSet",
952          "version": "v1"
953        }
954      ]
955    },
956    "io.k8s.api.apps.v1.DaemonSetCondition": {
957      "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
958      "properties": {
959        "lastTransitionTime": {
960          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
961          "description": "Last time the condition transitioned from one status to another."
962        },
963        "message": {
964          "description": "A human readable message indicating details about the transition.",
965          "type": "string"
966        },
967        "reason": {
968          "description": "The reason for the condition's last transition.",
969          "type": "string"
970        },
971        "status": {
972          "description": "Status of the condition, one of True, False, Unknown.",
973          "type": "string"
974        },
975        "type": {
976          "description": "Type of DaemonSet condition.",
977          "type": "string"
978        }
979      },
980      "required": [
981        "type",
982        "status"
983      ],
984      "type": "object"
985    },
986    "io.k8s.api.apps.v1.DaemonSetList": {
987      "description": "DaemonSetList is a collection of daemon sets.",
988      "properties": {
989        "apiVersion": {
990          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
991          "type": "string"
992        },
993        "items": {
994          "description": "A list of daemon sets.",
995          "items": {
996            "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
997          },
998          "type": "array"
999        },
1000        "kind": {
1001          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1002          "type": "string"
1003        },
1004        "metadata": {
1005          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1006          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1007        }
1008      },
1009      "required": [
1010        "items"
1011      ],
1012      "type": "object",
1013      "x-kubernetes-group-version-kind": [
1014        {
1015          "group": "apps",
1016          "kind": "DaemonSetList",
1017          "version": "v1"
1018        }
1019      ]
1020    },
1021    "io.k8s.api.apps.v1.DaemonSetSpec": {
1022      "description": "DaemonSetSpec is the specification of a daemon set.",
1023      "properties": {
1024        "minReadySeconds": {
1025          "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).",
1026          "format": "int32",
1027          "type": "integer"
1028        },
1029        "revisionHistoryLimit": {
1030          "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.",
1031          "format": "int32",
1032          "type": "integer"
1033        },
1034        "selector": {
1035          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1036          "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"
1037        },
1038        "template": {
1039          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1040          "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"
1041        },
1042        "updateStrategy": {
1043          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy",
1044          "description": "An update strategy to replace existing DaemonSet pods with new pods."
1045        }
1046      },
1047      "required": [
1048        "selector",
1049        "template"
1050      ],
1051      "type": "object"
1052    },
1053    "io.k8s.api.apps.v1.DaemonSetStatus": {
1054      "description": "DaemonSetStatus represents the current status of a daemon set.",
1055      "properties": {
1056        "collisionCount": {
1057          "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.",
1058          "format": "int32",
1059          "type": "integer"
1060        },
1061        "conditions": {
1062          "description": "Represents the latest available observations of a DaemonSet's current state.",
1063          "items": {
1064            "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition"
1065          },
1066          "type": "array",
1067          "x-kubernetes-patch-merge-key": "type",
1068          "x-kubernetes-patch-strategy": "merge"
1069        },
1070        "currentNumberScheduled": {
1071          "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/",
1072          "format": "int32",
1073          "type": "integer"
1074        },
1075        "desiredNumberScheduled": {
1076          "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/",
1077          "format": "int32",
1078          "type": "integer"
1079        },
1080        "numberAvailable": {
1081          "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)",
1082          "format": "int32",
1083          "type": "integer"
1084        },
1085        "numberMisscheduled": {
1086          "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/",
1087          "format": "int32",
1088          "type": "integer"
1089        },
1090        "numberReady": {
1091          "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
1092          "format": "int32",
1093          "type": "integer"
1094        },
1095        "numberUnavailable": {
1096          "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)",
1097          "format": "int32",
1098          "type": "integer"
1099        },
1100        "observedGeneration": {
1101          "description": "The most recent generation observed by the daemon set controller.",
1102          "format": "int64",
1103          "type": "integer"
1104        },
1105        "updatedNumberScheduled": {
1106          "description": "The total number of nodes that are running updated daemon pod",
1107          "format": "int32",
1108          "type": "integer"
1109        }
1110      },
1111      "required": [
1112        "currentNumberScheduled",
1113        "numberMisscheduled",
1114        "desiredNumberScheduled",
1115        "numberReady"
1116      ],
1117      "type": "object"
1118    },
1119    "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": {
1120      "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
1121      "properties": {
1122        "rollingUpdate": {
1123          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet",
1124          "description": "Rolling update config params. Present only if type = \"RollingUpdate\"."
1125        },
1126        "type": {
1127          "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.",
1128          "type": "string"
1129        }
1130      },
1131      "type": "object"
1132    },
1133    "io.k8s.api.apps.v1.Deployment": {
1134      "description": "Deployment enables declarative updates for Pods and ReplicaSets.",
1135      "properties": {
1136        "apiVersion": {
1137          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1138          "type": "string"
1139        },
1140        "kind": {
1141          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1142          "type": "string"
1143        },
1144        "metadata": {
1145          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1146          "description": "Standard object metadata."
1147        },
1148        "spec": {
1149          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentSpec",
1150          "description": "Specification of the desired behavior of the Deployment."
1151        },
1152        "status": {
1153          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStatus",
1154          "description": "Most recently observed status of the Deployment."
1155        }
1156      },
1157      "type": "object",
1158      "x-kubernetes-group-version-kind": [
1159        {
1160          "group": "apps",
1161          "kind": "Deployment",
1162          "version": "v1"
1163        }
1164      ]
1165    },
1166    "io.k8s.api.apps.v1.DeploymentCondition": {
1167      "description": "DeploymentCondition describes the state of a deployment at a certain point.",
1168      "properties": {
1169        "lastTransitionTime": {
1170          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1171          "description": "Last time the condition transitioned from one status to another."
1172        },
1173        "lastUpdateTime": {
1174          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1175          "description": "The last time this condition was updated."
1176        },
1177        "message": {
1178          "description": "A human readable message indicating details about the transition.",
1179          "type": "string"
1180        },
1181        "reason": {
1182          "description": "The reason for the condition's last transition.",
1183          "type": "string"
1184        },
1185        "status": {
1186          "description": "Status of the condition, one of True, False, Unknown.",
1187          "type": "string"
1188        },
1189        "type": {
1190          "description": "Type of deployment condition.",
1191          "type": "string"
1192        }
1193      },
1194      "required": [
1195        "type",
1196        "status"
1197      ],
1198      "type": "object"
1199    },
1200    "io.k8s.api.apps.v1.DeploymentList": {
1201      "description": "DeploymentList is a list of Deployments.",
1202      "properties": {
1203        "apiVersion": {
1204          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1205          "type": "string"
1206        },
1207        "items": {
1208          "description": "Items is the list of Deployments.",
1209          "items": {
1210            "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
1211          },
1212          "type": "array"
1213        },
1214        "kind": {
1215          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1216          "type": "string"
1217        },
1218        "metadata": {
1219          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1220          "description": "Standard list metadata."
1221        }
1222      },
1223      "required": [
1224        "items"
1225      ],
1226      "type": "object",
1227      "x-kubernetes-group-version-kind": [
1228        {
1229          "group": "apps",
1230          "kind": "DeploymentList",
1231          "version": "v1"
1232        }
1233      ]
1234    },
1235    "io.k8s.api.apps.v1.DeploymentSpec": {
1236      "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
1237      "properties": {
1238        "minReadySeconds": {
1239          "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)",
1240          "format": "int32",
1241          "type": "integer"
1242        },
1243        "paused": {
1244          "description": "Indicates that the deployment is paused.",
1245          "type": "boolean"
1246        },
1247        "progressDeadlineSeconds": {
1248          "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.",
1249          "format": "int32",
1250          "type": "integer"
1251        },
1252        "replicas": {
1253          "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
1254          "format": "int32",
1255          "type": "integer"
1256        },
1257        "revisionHistoryLimit": {
1258          "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.",
1259          "format": "int32",
1260          "type": "integer"
1261        },
1262        "selector": {
1263          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1264          "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."
1265        },
1266        "strategy": {
1267          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy",
1268          "description": "The deployment strategy to use to replace existing pods with new ones.",
1269          "x-kubernetes-patch-strategy": "retainKeys"
1270        },
1271        "template": {
1272          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1273          "description": "Template describes the pods that will be created."
1274        }
1275      },
1276      "required": [
1277        "selector",
1278        "template"
1279      ],
1280      "type": "object"
1281    },
1282    "io.k8s.api.apps.v1.DeploymentStatus": {
1283      "description": "DeploymentStatus is the most recently observed status of the Deployment.",
1284      "properties": {
1285        "availableReplicas": {
1286          "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
1287          "format": "int32",
1288          "type": "integer"
1289        },
1290        "collisionCount": {
1291          "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.",
1292          "format": "int32",
1293          "type": "integer"
1294        },
1295        "conditions": {
1296          "description": "Represents the latest available observations of a deployment's current state.",
1297          "items": {
1298            "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition"
1299          },
1300          "type": "array",
1301          "x-kubernetes-patch-merge-key": "type",
1302          "x-kubernetes-patch-strategy": "merge"
1303        },
1304        "observedGeneration": {
1305          "description": "The generation observed by the deployment controller.",
1306          "format": "int64",
1307          "type": "integer"
1308        },
1309        "readyReplicas": {
1310          "description": "Total number of ready pods targeted by this deployment.",
1311          "format": "int32",
1312          "type": "integer"
1313        },
1314        "replicas": {
1315          "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
1316          "format": "int32",
1317          "type": "integer"
1318        },
1319        "unavailableReplicas": {
1320          "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.",
1321          "format": "int32",
1322          "type": "integer"
1323        },
1324        "updatedReplicas": {
1325          "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
1326          "format": "int32",
1327          "type": "integer"
1328        }
1329      },
1330      "type": "object"
1331    },
1332    "io.k8s.api.apps.v1.DeploymentStrategy": {
1333      "description": "DeploymentStrategy describes how to replace existing pods with new ones.",
1334      "properties": {
1335        "rollingUpdate": {
1336          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
1337          "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
1338        },
1339        "type": {
1340          "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
1341          "type": "string"
1342        }
1343      },
1344      "type": "object"
1345    },
1346    "io.k8s.api.apps.v1.ReplicaSet": {
1347      "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
1348      "properties": {
1349        "apiVersion": {
1350          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1351          "type": "string"
1352        },
1353        "kind": {
1354          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1355          "type": "string"
1356        },
1357        "metadata": {
1358          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1359          "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"
1360        },
1361        "spec": {
1362          "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec",
1363          "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"
1364        },
1365        "status": {
1366          "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus",
1367          "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"
1368        }
1369      },
1370      "type": "object",
1371      "x-kubernetes-group-version-kind": [
1372        {
1373          "group": "apps",
1374          "kind": "ReplicaSet",
1375          "version": "v1"
1376        }
1377      ]
1378    },
1379    "io.k8s.api.apps.v1.ReplicaSetCondition": {
1380      "description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
1381      "properties": {
1382        "lastTransitionTime": {
1383          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1384          "description": "The last time the condition transitioned from one status to another."
1385        },
1386        "message": {
1387          "description": "A human readable message indicating details about the transition.",
1388          "type": "string"
1389        },
1390        "reason": {
1391          "description": "The reason for the condition's last transition.",
1392          "type": "string"
1393        },
1394        "status": {
1395          "description": "Status of the condition, one of True, False, Unknown.",
1396          "type": "string"
1397        },
1398        "type": {
1399          "description": "Type of replica set condition.",
1400          "type": "string"
1401        }
1402      },
1403      "required": [
1404        "type",
1405        "status"
1406      ],
1407      "type": "object"
1408    },
1409    "io.k8s.api.apps.v1.ReplicaSetList": {
1410      "description": "ReplicaSetList is a collection of ReplicaSets.",
1411      "properties": {
1412        "apiVersion": {
1413          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1414          "type": "string"
1415        },
1416        "items": {
1417          "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
1418          "items": {
1419            "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
1420          },
1421          "type": "array"
1422        },
1423        "kind": {
1424          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1425          "type": "string"
1426        },
1427        "metadata": {
1428          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1429          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
1430        }
1431      },
1432      "required": [
1433        "items"
1434      ],
1435      "type": "object",
1436      "x-kubernetes-group-version-kind": [
1437        {
1438          "group": "apps",
1439          "kind": "ReplicaSetList",
1440          "version": "v1"
1441        }
1442      ]
1443    },
1444    "io.k8s.api.apps.v1.ReplicaSetSpec": {
1445      "description": "ReplicaSetSpec is the specification of a ReplicaSet.",
1446      "properties": {
1447        "minReadySeconds": {
1448          "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)",
1449          "format": "int32",
1450          "type": "integer"
1451        },
1452        "replicas": {
1453          "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",
1454          "format": "int32",
1455          "type": "integer"
1456        },
1457        "selector": {
1458          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1459          "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"
1460        },
1461        "template": {
1462          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1463          "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"
1464        }
1465      },
1466      "required": [
1467        "selector"
1468      ],
1469      "type": "object"
1470    },
1471    "io.k8s.api.apps.v1.ReplicaSetStatus": {
1472      "description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
1473      "properties": {
1474        "availableReplicas": {
1475          "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
1476          "format": "int32",
1477          "type": "integer"
1478        },
1479        "conditions": {
1480          "description": "Represents the latest available observations of a replica set's current state.",
1481          "items": {
1482            "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition"
1483          },
1484          "type": "array",
1485          "x-kubernetes-patch-merge-key": "type",
1486          "x-kubernetes-patch-strategy": "merge"
1487        },
1488        "fullyLabeledReplicas": {
1489          "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
1490          "format": "int32",
1491          "type": "integer"
1492        },
1493        "observedGeneration": {
1494          "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
1495          "format": "int64",
1496          "type": "integer"
1497        },
1498        "readyReplicas": {
1499          "description": "The number of ready replicas for this replica set.",
1500          "format": "int32",
1501          "type": "integer"
1502        },
1503        "replicas": {
1504          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
1505          "format": "int32",
1506          "type": "integer"
1507        }
1508      },
1509      "required": [
1510        "replicas"
1511      ],
1512      "type": "object"
1513    },
1514    "io.k8s.api.apps.v1.RollingUpdateDaemonSet": {
1515      "description": "Spec to control the desired behavior of daemon set rolling update.",
1516      "properties": {
1517        "maxSurge": {
1518          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1519          "description": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption. This is an alpha field and requires enabling DaemonSetUpdateSurge feature gate."
1520        },
1521        "maxUnavailable": {
1522          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1523          "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 down to a minimum of one. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
1524        }
1525      },
1526      "type": "object"
1527    },
1528    "io.k8s.api.apps.v1.RollingUpdateDeployment": {
1529      "description": "Spec to control the desired behavior of rolling update.",
1530      "properties": {
1531        "maxSurge": {
1532          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1533          "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."
1534        },
1535        "maxUnavailable": {
1536          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1537          "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."
1538        }
1539      },
1540      "type": "object"
1541    },
1542    "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": {
1543      "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
1544      "properties": {
1545        "partition": {
1546          "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.",
1547          "format": "int32",
1548          "type": "integer"
1549        }
1550      },
1551      "type": "object"
1552    },
1553    "io.k8s.api.apps.v1.StatefulSet": {
1554      "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.",
1555      "properties": {
1556        "apiVersion": {
1557          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1558          "type": "string"
1559        },
1560        "kind": {
1561          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1562          "type": "string"
1563        },
1564        "metadata": {
1565          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1566        },
1567        "spec": {
1568          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec",
1569          "description": "Spec defines the desired identities of pods in this set."
1570        },
1571        "status": {
1572          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus",
1573          "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time."
1574        }
1575      },
1576      "type": "object",
1577      "x-kubernetes-group-version-kind": [
1578        {
1579          "group": "apps",
1580          "kind": "StatefulSet",
1581          "version": "v1"
1582        }
1583      ]
1584    },
1585    "io.k8s.api.apps.v1.StatefulSetCondition": {
1586      "description": "StatefulSetCondition describes the state of a statefulset at a certain point.",
1587      "properties": {
1588        "lastTransitionTime": {
1589          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1590          "description": "Last time the condition transitioned from one status to another."
1591        },
1592        "message": {
1593          "description": "A human readable message indicating details about the transition.",
1594          "type": "string"
1595        },
1596        "reason": {
1597          "description": "The reason for the condition's last transition.",
1598          "type": "string"
1599        },
1600        "status": {
1601          "description": "Status of the condition, one of True, False, Unknown.",
1602          "type": "string"
1603        },
1604        "type": {
1605          "description": "Type of statefulset condition.",
1606          "type": "string"
1607        }
1608      },
1609      "required": [
1610        "type",
1611        "status"
1612      ],
1613      "type": "object"
1614    },
1615    "io.k8s.api.apps.v1.StatefulSetList": {
1616      "description": "StatefulSetList is a collection of StatefulSets.",
1617      "properties": {
1618        "apiVersion": {
1619          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1620          "type": "string"
1621        },
1622        "items": {
1623          "items": {
1624            "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
1625          },
1626          "type": "array"
1627        },
1628        "kind": {
1629          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1630          "type": "string"
1631        },
1632        "metadata": {
1633          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
1634        }
1635      },
1636      "required": [
1637        "items"
1638      ],
1639      "type": "object",
1640      "x-kubernetes-group-version-kind": [
1641        {
1642          "group": "apps",
1643          "kind": "StatefulSetList",
1644          "version": "v1"
1645        }
1646      ]
1647    },
1648    "io.k8s.api.apps.v1.StatefulSetSpec": {
1649      "description": "A StatefulSetSpec is the specification of a StatefulSet.",
1650      "properties": {
1651        "podManagementPolicy": {
1652          "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.",
1653          "type": "string"
1654        },
1655        "replicas": {
1656          "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.",
1657          "format": "int32",
1658          "type": "integer"
1659        },
1660        "revisionHistoryLimit": {
1661          "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.",
1662          "format": "int32",
1663          "type": "integer"
1664        },
1665        "selector": {
1666          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1667          "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"
1668        },
1669        "serviceName": {
1670          "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.",
1671          "type": "string"
1672        },
1673        "template": {
1674          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1675          "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."
1676        },
1677        "updateStrategy": {
1678          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy",
1679          "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template."
1680        },
1681        "volumeClaimTemplates": {
1682          "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.",
1683          "items": {
1684            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
1685          },
1686          "type": "array"
1687        }
1688      },
1689      "required": [
1690        "selector",
1691        "template",
1692        "serviceName"
1693      ],
1694      "type": "object"
1695    },
1696    "io.k8s.api.apps.v1.StatefulSetStatus": {
1697      "description": "StatefulSetStatus represents the current state of a StatefulSet.",
1698      "properties": {
1699        "collisionCount": {
1700          "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.",
1701          "format": "int32",
1702          "type": "integer"
1703        },
1704        "conditions": {
1705          "description": "Represents the latest available observations of a statefulset's current state.",
1706          "items": {
1707            "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition"
1708          },
1709          "type": "array",
1710          "x-kubernetes-patch-merge-key": "type",
1711          "x-kubernetes-patch-strategy": "merge"
1712        },
1713        "currentReplicas": {
1714          "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
1715          "format": "int32",
1716          "type": "integer"
1717        },
1718        "currentRevision": {
1719          "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).",
1720          "type": "string"
1721        },
1722        "observedGeneration": {
1723          "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.",
1724          "format": "int64",
1725          "type": "integer"
1726        },
1727        "readyReplicas": {
1728          "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.",
1729          "format": "int32",
1730          "type": "integer"
1731        },
1732        "replicas": {
1733          "description": "replicas is the number of Pods created by the StatefulSet controller.",
1734          "format": "int32",
1735          "type": "integer"
1736        },
1737        "updateRevision": {
1738          "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)",
1739          "type": "string"
1740        },
1741        "updatedReplicas": {
1742          "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
1743          "format": "int32",
1744          "type": "integer"
1745        }
1746      },
1747      "required": [
1748        "replicas"
1749      ],
1750      "type": "object"
1751    },
1752    "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": {
1753      "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.",
1754      "properties": {
1755        "rollingUpdate": {
1756          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy",
1757          "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType."
1758        },
1759        "type": {
1760          "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.",
1761          "type": "string"
1762        }
1763      },
1764      "type": "object"
1765    },
1766    "io.k8s.api.authentication.v1.BoundObjectReference": {
1767      "description": "BoundObjectReference is a reference to an object that a token is bound to.",
1768      "properties": {
1769        "apiVersion": {
1770          "description": "API version of the referent.",
1771          "type": "string"
1772        },
1773        "kind": {
1774          "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
1775          "type": "string"
1776        },
1777        "name": {
1778          "description": "Name of the referent.",
1779          "type": "string"
1780        },
1781        "uid": {
1782          "description": "UID of the referent.",
1783          "type": "string"
1784        }
1785      },
1786      "type": "object"
1787    },
1788    "io.k8s.api.authentication.v1.TokenRequest": {
1789      "description": "TokenRequest requests a token for a given service account.",
1790      "properties": {
1791        "apiVersion": {
1792          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1793          "type": "string"
1794        },
1795        "kind": {
1796          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1797          "type": "string"
1798        },
1799        "metadata": {
1800          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1801        },
1802        "spec": {
1803          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestSpec"
1804        },
1805        "status": {
1806          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestStatus"
1807        }
1808      },
1809      "required": [
1810        "spec"
1811      ],
1812      "type": "object",
1813      "x-kubernetes-group-version-kind": [
1814        {
1815          "group": "authentication.k8s.io",
1816          "kind": "TokenRequest",
1817          "version": "v1"
1818        }
1819      ]
1820    },
1821    "io.k8s.api.authentication.v1.TokenRequestSpec": {
1822      "description": "TokenRequestSpec contains client provided parameters of a token request.",
1823      "properties": {
1824        "audiences": {
1825          "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.",
1826          "items": {
1827            "type": "string"
1828          },
1829          "type": "array"
1830        },
1831        "boundObjectRef": {
1832          "$ref": "#/definitions/io.k8s.api.authentication.v1.BoundObjectReference",
1833          "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."
1834        },
1835        "expirationSeconds": {
1836          "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.",
1837          "format": "int64",
1838          "type": "integer"
1839        }
1840      },
1841      "required": [
1842        "audiences"
1843      ],
1844      "type": "object"
1845    },
1846    "io.k8s.api.authentication.v1.TokenRequestStatus": {
1847      "description": "TokenRequestStatus is the result of a token request.",
1848      "properties": {
1849        "expirationTimestamp": {
1850          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1851          "description": "ExpirationTimestamp is the time of expiration of the returned token."
1852        },
1853        "token": {
1854          "description": "Token is the opaque bearer token.",
1855          "type": "string"
1856        }
1857      },
1858      "required": [
1859        "token",
1860        "expirationTimestamp"
1861      ],
1862      "type": "object"
1863    },
1864    "io.k8s.api.authentication.v1.TokenReview": {
1865      "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.",
1866      "properties": {
1867        "apiVersion": {
1868          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1869          "type": "string"
1870        },
1871        "kind": {
1872          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1873          "type": "string"
1874        },
1875        "metadata": {
1876          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1877        },
1878        "spec": {
1879          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec",
1880          "description": "Spec holds information about the request being evaluated"
1881        },
1882        "status": {
1883          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus",
1884          "description": "Status is filled in by the server and indicates whether the request can be authenticated."
1885        }
1886      },
1887      "required": [
1888        "spec"
1889      ],
1890      "type": "object",
1891      "x-kubernetes-group-version-kind": [
1892        {
1893          "group": "authentication.k8s.io",
1894          "kind": "TokenReview",
1895          "version": "v1"
1896        }
1897      ]
1898    },
1899    "io.k8s.api.authentication.v1.TokenReviewSpec": {
1900      "description": "TokenReviewSpec is a description of the token authentication request.",
1901      "properties": {
1902        "audiences": {
1903          "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.",
1904          "items": {
1905            "type": "string"
1906          },
1907          "type": "array"
1908        },
1909        "token": {
1910          "description": "Token is the opaque bearer token.",
1911          "type": "string"
1912        }
1913      },
1914      "type": "object"
1915    },
1916    "io.k8s.api.authentication.v1.TokenReviewStatus": {
1917      "description": "TokenReviewStatus is the result of the token authentication request.",
1918      "properties": {
1919        "audiences": {
1920          "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.",
1921          "items": {
1922            "type": "string"
1923          },
1924          "type": "array"
1925        },
1926        "authenticated": {
1927          "description": "Authenticated indicates that the token was associated with a known user.",
1928          "type": "boolean"
1929        },
1930        "error": {
1931          "description": "Error indicates that the token couldn't be checked",
1932          "type": "string"
1933        },
1934        "user": {
1935          "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo",
1936          "description": "User is the UserInfo associated with the provided token."
1937        }
1938      },
1939      "type": "object"
1940    },
1941    "io.k8s.api.authentication.v1.UserInfo": {
1942      "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
1943      "properties": {
1944        "extra": {
1945          "additionalProperties": {
1946            "items": {
1947              "type": "string"
1948            },
1949            "type": "array"
1950          },
1951          "description": "Any additional information provided by the authenticator.",
1952          "type": "object"
1953        },
1954        "groups": {
1955          "description": "The names of groups this user is a part of.",
1956          "items": {
1957            "type": "string"
1958          },
1959          "type": "array"
1960        },
1961        "uid": {
1962          "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.",
1963          "type": "string"
1964        },
1965        "username": {
1966          "description": "The name that uniquely identifies this user among all active users.",
1967          "type": "string"
1968        }
1969      },
1970      "type": "object"
1971    },
1972    "io.k8s.api.authentication.v1beta1.TokenReview": {
1973      "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.",
1974      "properties": {
1975        "apiVersion": {
1976          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1977          "type": "string"
1978        },
1979        "kind": {
1980          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1981          "type": "string"
1982        },
1983        "metadata": {
1984          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1985        },
1986        "spec": {
1987          "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewSpec",
1988          "description": "Spec holds information about the request being evaluated"
1989        },
1990        "status": {
1991          "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewStatus",
1992          "description": "Status is filled in by the server and indicates whether the request can be authenticated."
1993        }
1994      },
1995      "required": [
1996        "spec"
1997      ],
1998      "type": "object",
1999      "x-kubernetes-group-version-kind": [
2000        {
2001          "group": "authentication.k8s.io",
2002          "kind": "TokenReview",
2003          "version": "v1beta1"
2004        }
2005      ]
2006    },
2007    "io.k8s.api.authentication.v1beta1.TokenReviewSpec": {
2008      "description": "TokenReviewSpec is a description of the token authentication request.",
2009      "properties": {
2010        "audiences": {
2011          "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.",
2012          "items": {
2013            "type": "string"
2014          },
2015          "type": "array"
2016        },
2017        "token": {
2018          "description": "Token is the opaque bearer token.",
2019          "type": "string"
2020        }
2021      },
2022      "type": "object"
2023    },
2024    "io.k8s.api.authentication.v1beta1.TokenReviewStatus": {
2025      "description": "TokenReviewStatus is the result of the token authentication request.",
2026      "properties": {
2027        "audiences": {
2028          "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.",
2029          "items": {
2030            "type": "string"
2031          },
2032          "type": "array"
2033        },
2034        "authenticated": {
2035          "description": "Authenticated indicates that the token was associated with a known user.",
2036          "type": "boolean"
2037        },
2038        "error": {
2039          "description": "Error indicates that the token couldn't be checked",
2040          "type": "string"
2041        },
2042        "user": {
2043          "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.UserInfo",
2044          "description": "User is the UserInfo associated with the provided token."
2045        }
2046      },
2047      "type": "object"
2048    },
2049    "io.k8s.api.authentication.v1beta1.UserInfo": {
2050      "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
2051      "properties": {
2052        "extra": {
2053          "additionalProperties": {
2054            "items": {
2055              "type": "string"
2056            },
2057            "type": "array"
2058          },
2059          "description": "Any additional information provided by the authenticator.",
2060          "type": "object"
2061        },
2062        "groups": {
2063          "description": "The names of groups this user is a part of.",
2064          "items": {
2065            "type": "string"
2066          },
2067          "type": "array"
2068        },
2069        "uid": {
2070          "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.",
2071          "type": "string"
2072        },
2073        "username": {
2074          "description": "The name that uniquely identifies this user among all active users.",
2075          "type": "string"
2076        }
2077      },
2078      "type": "object"
2079    },
2080    "io.k8s.api.authorization.v1.LocalSubjectAccessReview": {
2081      "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.",
2082      "properties": {
2083        "apiVersion": {
2084          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2085          "type": "string"
2086        },
2087        "kind": {
2088          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2089          "type": "string"
2090        },
2091        "metadata": {
2092          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2093        },
2094        "spec": {
2095          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec",
2096          "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."
2097        },
2098        "status": {
2099          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
2100          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
2101        }
2102      },
2103      "required": [
2104        "spec"
2105      ],
2106      "type": "object",
2107      "x-kubernetes-group-version-kind": [
2108        {
2109          "group": "authorization.k8s.io",
2110          "kind": "LocalSubjectAccessReview",
2111          "version": "v1"
2112        }
2113      ]
2114    },
2115    "io.k8s.api.authorization.v1.NonResourceAttributes": {
2116      "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface",
2117      "properties": {
2118        "path": {
2119          "description": "Path is the URL path of the request",
2120          "type": "string"
2121        },
2122        "verb": {
2123          "description": "Verb is the standard HTTP verb",
2124          "type": "string"
2125        }
2126      },
2127      "type": "object"
2128    },
2129    "io.k8s.api.authorization.v1.NonResourceRule": {
2130      "description": "NonResourceRule holds information that describes a rule for the non-resource",
2131      "properties": {
2132        "nonResourceURLs": {
2133          "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.",
2134          "items": {
2135            "type": "string"
2136          },
2137          "type": "array"
2138        },
2139        "verbs": {
2140          "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  \"*\" means all.",
2141          "items": {
2142            "type": "string"
2143          },
2144          "type": "array"
2145        }
2146      },
2147      "required": [
2148        "verbs"
2149      ],
2150      "type": "object"
2151    },
2152    "io.k8s.api.authorization.v1.ResourceAttributes": {
2153      "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
2154      "properties": {
2155        "group": {
2156          "description": "Group is the API Group of the Resource.  \"*\" means all.",
2157          "type": "string"
2158        },
2159        "name": {
2160          "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.",
2161          "type": "string"
2162        },
2163        "namespace": {
2164          "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",
2165          "type": "string"
2166        },
2167        "resource": {
2168          "description": "Resource is one of the existing resource types.  \"*\" means all.",
2169          "type": "string"
2170        },
2171        "subresource": {
2172          "description": "Subresource is one of the existing resource types.  \"\" means none.",
2173          "type": "string"
2174        },
2175        "verb": {
2176          "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
2177          "type": "string"
2178        },
2179        "version": {
2180          "description": "Version is the API Version of the Resource.  \"*\" means all.",
2181          "type": "string"
2182        }
2183      },
2184      "type": "object"
2185    },
2186    "io.k8s.api.authorization.v1.ResourceRule": {
2187      "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.",
2188      "properties": {
2189        "apiGroups": {
2190          "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.",
2191          "items": {
2192            "type": "string"
2193          },
2194          "type": "array"
2195        },
2196        "resourceNames": {
2197          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
2198          "items": {
2199            "type": "string"
2200          },
2201          "type": "array"
2202        },
2203        "resources": {
2204          "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.",
2205          "items": {
2206            "type": "string"
2207          },
2208          "type": "array"
2209        },
2210        "verbs": {
2211          "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
2212          "items": {
2213            "type": "string"
2214          },
2215          "type": "array"
2216        }
2217      },
2218      "required": [
2219        "verbs"
2220      ],
2221      "type": "object"
2222    },
2223    "io.k8s.api.authorization.v1.SelfSubjectAccessReview": {
2224      "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",
2225      "properties": {
2226        "apiVersion": {
2227          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2228          "type": "string"
2229        },
2230        "kind": {
2231          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2232          "type": "string"
2233        },
2234        "metadata": {
2235          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2236        },
2237        "spec": {
2238          "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec",
2239          "description": "Spec holds information about the request being evaluated.  user and groups must be empty"
2240        },
2241        "status": {
2242          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
2243          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
2244        }
2245      },
2246      "required": [
2247        "spec"
2248      ],
2249      "type": "object",
2250      "x-kubernetes-group-version-kind": [
2251        {
2252          "group": "authorization.k8s.io",
2253          "kind": "SelfSubjectAccessReview",
2254          "version": "v1"
2255        }
2256      ]
2257    },
2258    "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": {
2259      "description": "SelfSubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
2260      "properties": {
2261        "nonResourceAttributes": {
2262          "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes",
2263          "description": "NonResourceAttributes describes information for a non-resource access request"
2264        },
2265        "resourceAttributes": {
2266          "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes",
2267          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
2268        }
2269      },
2270      "type": "object"
2271    },
2272    "io.k8s.api.authorization.v1.SelfSubjectRulesReview": {
2273      "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.",
2274      "properties": {
2275        "apiVersion": {
2276          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2277          "type": "string"
2278        },
2279        "kind": {
2280          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2281          "type": "string"
2282        },
2283        "metadata": {
2284          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2285        },
2286        "spec": {
2287          "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec",
2288          "description": "Spec holds information about the request being evaluated."
2289        },
2290        "status": {
2291          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus",
2292          "description": "Status is filled in by the server and indicates the set of actions a user can perform."
2293        }
2294      },
2295      "required": [
2296        "spec"
2297      ],
2298      "type": "object",
2299      "x-kubernetes-group-version-kind": [
2300        {
2301          "group": "authorization.k8s.io",
2302          "kind": "SelfSubjectRulesReview",
2303          "version": "v1"
2304        }
2305      ]
2306    },
2307    "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": {
2308      "properties": {
2309        "namespace": {
2310          "description": "Namespace to evaluate rules for. Required.",
2311          "type": "string"
2312        }
2313      },
2314      "type": "object"
2315    },
2316    "io.k8s.api.authorization.v1.SubjectAccessReview": {
2317      "description": "SubjectAccessReview checks whether or not a user or group can perform an action.",
2318      "properties": {
2319        "apiVersion": {
2320          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2321          "type": "string"
2322        },
2323        "kind": {
2324          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2325          "type": "string"
2326        },
2327        "metadata": {
2328          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2329        },
2330        "spec": {
2331          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec",
2332          "description": "Spec holds information about the request being evaluated"
2333        },
2334        "status": {
2335          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
2336          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
2337        }
2338      },
2339      "required": [
2340        "spec"
2341      ],
2342      "type": "object",
2343      "x-kubernetes-group-version-kind": [
2344        {
2345          "group": "authorization.k8s.io",
2346          "kind": "SubjectAccessReview",
2347          "version": "v1"
2348        }
2349      ]
2350    },
2351    "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": {
2352      "description": "SubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
2353      "properties": {
2354        "extra": {
2355          "additionalProperties": {
2356            "items": {
2357              "type": "string"
2358            },
2359            "type": "array"
2360          },
2361          "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator.  Since that is input to the authorizer it needs a reflection here.",
2362          "type": "object"
2363        },
2364        "groups": {
2365          "description": "Groups is the groups you're testing for.",
2366          "items": {
2367            "type": "string"
2368          },
2369          "type": "array"
2370        },
2371        "nonResourceAttributes": {
2372          "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes",
2373          "description": "NonResourceAttributes describes information for a non-resource access request"
2374        },
2375        "resourceAttributes": {
2376          "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes",
2377          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
2378        },
2379        "uid": {
2380          "description": "UID information about the requesting user.",
2381          "type": "string"
2382        },
2383        "user": {
2384          "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",
2385          "type": "string"
2386        }
2387      },
2388      "type": "object"
2389    },
2390    "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": {
2391      "description": "SubjectAccessReviewStatus",
2392      "properties": {
2393        "allowed": {
2394          "description": "Allowed is required. True if the action would be allowed, false otherwise.",
2395          "type": "boolean"
2396        },
2397        "denied": {
2398          "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.",
2399          "type": "boolean"
2400        },
2401        "evaluationError": {
2402          "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.",
2403          "type": "string"
2404        },
2405        "reason": {
2406          "description": "Reason is optional.  It indicates why a request was allowed or denied.",
2407          "type": "string"
2408        }
2409      },
2410      "required": [
2411        "allowed"
2412      ],
2413      "type": "object"
2414    },
2415    "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": {
2416      "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.",
2417      "properties": {
2418        "evaluationError": {
2419          "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.",
2420          "type": "string"
2421        },
2422        "incomplete": {
2423          "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.",
2424          "type": "boolean"
2425        },
2426        "nonResourceRules": {
2427          "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.",
2428          "items": {
2429            "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceRule"
2430          },
2431          "type": "array"
2432        },
2433        "resourceRules": {
2434          "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.",
2435          "items": {
2436            "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceRule"
2437          },
2438          "type": "array"
2439        }
2440      },
2441      "required": [
2442        "resourceRules",
2443        "nonResourceRules",
2444        "incomplete"
2445      ],
2446      "type": "object"
2447    },
2448    "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview": {
2449      "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.",
2450      "properties": {
2451        "apiVersion": {
2452          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2453          "type": "string"
2454        },
2455        "kind": {
2456          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2457          "type": "string"
2458        },
2459        "metadata": {
2460          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2461        },
2462        "spec": {
2463          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec",
2464          "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."
2465        },
2466        "status": {
2467          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus",
2468          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
2469        }
2470      },
2471      "required": [
2472        "spec"
2473      ],
2474      "type": "object",
2475      "x-kubernetes-group-version-kind": [
2476        {
2477          "group": "authorization.k8s.io",
2478          "kind": "LocalSubjectAccessReview",
2479          "version": "v1beta1"
2480        }
2481      ]
2482    },
2483    "io.k8s.api.authorization.v1beta1.NonResourceAttributes": {
2484      "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface",
2485      "properties": {
2486        "path": {
2487          "description": "Path is the URL path of the request",
2488          "type": "string"
2489        },
2490        "verb": {
2491          "description": "Verb is the standard HTTP verb",
2492          "type": "string"
2493        }
2494      },
2495      "type": "object"
2496    },
2497    "io.k8s.api.authorization.v1beta1.NonResourceRule": {
2498      "description": "NonResourceRule holds information that describes a rule for the non-resource",
2499      "properties": {
2500        "nonResourceURLs": {
2501          "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.",
2502          "items": {
2503            "type": "string"
2504          },
2505          "type": "array"
2506        },
2507        "verbs": {
2508          "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  \"*\" means all.",
2509          "items": {
2510            "type": "string"
2511          },
2512          "type": "array"
2513        }
2514      },
2515      "required": [
2516        "verbs"
2517      ],
2518      "type": "object"
2519    },
2520    "io.k8s.api.authorization.v1beta1.ResourceAttributes": {
2521      "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
2522      "properties": {
2523        "group": {
2524          "description": "Group is the API Group of the Resource.  \"*\" means all.",
2525          "type": "string"
2526        },
2527        "name": {
2528          "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.",
2529          "type": "string"
2530        },
2531        "namespace": {
2532          "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",
2533          "type": "string"
2534        },
2535        "resource": {
2536          "description": "Resource is one of the existing resource types.  \"*\" means all.",
2537          "type": "string"
2538        },
2539        "subresource": {
2540          "description": "Subresource is one of the existing resource types.  \"\" means none.",
2541          "type": "string"
2542        },
2543        "verb": {
2544          "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
2545          "type": "string"
2546        },
2547        "version": {
2548          "description": "Version is the API Version of the Resource.  \"*\" means all.",
2549          "type": "string"
2550        }
2551      },
2552      "type": "object"
2553    },
2554    "io.k8s.api.authorization.v1beta1.ResourceRule": {
2555      "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.",
2556      "properties": {
2557        "apiGroups": {
2558          "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.",
2559          "items": {
2560            "type": "string"
2561          },
2562          "type": "array"
2563        },
2564        "resourceNames": {
2565          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
2566          "items": {
2567            "type": "string"
2568          },
2569          "type": "array"
2570        },
2571        "resources": {
2572          "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.",
2573          "items": {
2574            "type": "string"
2575          },
2576          "type": "array"
2577        },
2578        "verbs": {
2579          "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
2580          "items": {
2581            "type": "string"
2582          },
2583          "type": "array"
2584        }
2585      },
2586      "required": [
2587        "verbs"
2588      ],
2589      "type": "object"
2590    },
2591    "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview": {
2592      "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",
2593      "properties": {
2594        "apiVersion": {
2595          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2596          "type": "string"
2597        },
2598        "kind": {
2599          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2600          "type": "string"
2601        },
2602        "metadata": {
2603          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2604        },
2605        "spec": {
2606          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec",
2607          "description": "Spec holds information about the request being evaluated.  user and groups must be empty"
2608        },
2609        "status": {
2610          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus",
2611          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
2612        }
2613      },
2614      "required": [
2615        "spec"
2616      ],
2617      "type": "object",
2618      "x-kubernetes-group-version-kind": [
2619        {
2620          "group": "authorization.k8s.io",
2621          "kind": "SelfSubjectAccessReview",
2622          "version": "v1beta1"
2623        }
2624      ]
2625    },
2626    "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec": {
2627      "description": "SelfSubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
2628      "properties": {
2629        "nonResourceAttributes": {
2630          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes",
2631          "description": "NonResourceAttributes describes information for a non-resource access request"
2632        },
2633        "resourceAttributes": {
2634          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes",
2635          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
2636        }
2637      },
2638      "type": "object"
2639    },
2640    "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview": {
2641      "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.",
2642      "properties": {
2643        "apiVersion": {
2644          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2645          "type": "string"
2646        },
2647        "kind": {
2648          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2649          "type": "string"
2650        },
2651        "metadata": {
2652          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2653        },
2654        "spec": {
2655          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec",
2656          "description": "Spec holds information about the request being evaluated."
2657        },
2658        "status": {
2659          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus",
2660          "description": "Status is filled in by the server and indicates the set of actions a user can perform."
2661        }
2662      },
2663      "required": [
2664        "spec"
2665      ],
2666      "type": "object",
2667      "x-kubernetes-group-version-kind": [
2668        {
2669          "group": "authorization.k8s.io",
2670          "kind": "SelfSubjectRulesReview",
2671          "version": "v1beta1"
2672        }
2673      ]
2674    },
2675    "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec": {
2676      "properties": {
2677        "namespace": {
2678          "description": "Namespace to evaluate rules for. Required.",
2679          "type": "string"
2680        }
2681      },
2682      "type": "object"
2683    },
2684    "io.k8s.api.authorization.v1beta1.SubjectAccessReview": {
2685      "description": "SubjectAccessReview checks whether or not a user or group can perform an action.",
2686      "properties": {
2687        "apiVersion": {
2688          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2689          "type": "string"
2690        },
2691        "kind": {
2692          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2693          "type": "string"
2694        },
2695        "metadata": {
2696          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2697        },
2698        "spec": {
2699          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec",
2700          "description": "Spec holds information about the request being evaluated"
2701        },
2702        "status": {
2703          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus",
2704          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
2705        }
2706      },
2707      "required": [
2708        "spec"
2709      ],
2710      "type": "object",
2711      "x-kubernetes-group-version-kind": [
2712        {
2713          "group": "authorization.k8s.io",
2714          "kind": "SubjectAccessReview",
2715          "version": "v1beta1"
2716        }
2717      ]
2718    },
2719    "io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec": {
2720      "description": "SubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
2721      "properties": {
2722        "extra": {
2723          "additionalProperties": {
2724            "items": {
2725              "type": "string"
2726            },
2727            "type": "array"
2728          },
2729          "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator.  Since that is input to the authorizer it needs a reflection here.",
2730          "type": "object"
2731        },
2732        "group": {
2733          "description": "Groups is the groups you're testing for.",
2734          "items": {
2735            "type": "string"
2736          },
2737          "type": "array"
2738        },
2739        "nonResourceAttributes": {
2740          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes",
2741          "description": "NonResourceAttributes describes information for a non-resource access request"
2742        },
2743        "resourceAttributes": {
2744          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes",
2745          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
2746        },
2747        "uid": {
2748          "description": "UID information about the requesting user.",
2749          "type": "string"
2750        },
2751        "user": {
2752          "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",
2753          "type": "string"
2754        }
2755      },
2756      "type": "object"
2757    },
2758    "io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus": {
2759      "description": "SubjectAccessReviewStatus",
2760      "properties": {
2761        "allowed": {
2762          "description": "Allowed is required. True if the action would be allowed, false otherwise.",
2763          "type": "boolean"
2764        },
2765        "denied": {
2766          "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.",
2767          "type": "boolean"
2768        },
2769        "evaluationError": {
2770          "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.",
2771          "type": "string"
2772        },
2773        "reason": {
2774          "description": "Reason is optional.  It indicates why a request was allowed or denied.",
2775          "type": "string"
2776        }
2777      },
2778      "required": [
2779        "allowed"
2780      ],
2781      "type": "object"
2782    },
2783    "io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus": {
2784      "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.",
2785      "properties": {
2786        "evaluationError": {
2787          "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.",
2788          "type": "string"
2789        },
2790        "incomplete": {
2791          "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.",
2792          "type": "boolean"
2793        },
2794        "nonResourceRules": {
2795          "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.",
2796          "items": {
2797            "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceRule"
2798          },
2799          "type": "array"
2800        },
2801        "resourceRules": {
2802          "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.",
2803          "items": {
2804            "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceRule"
2805          },
2806          "type": "array"
2807        }
2808      },
2809      "required": [
2810        "resourceRules",
2811        "nonResourceRules",
2812        "incomplete"
2813      ],
2814      "type": "object"
2815    },
2816    "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": {
2817      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
2818      "properties": {
2819        "apiVersion": {
2820          "description": "API version of the referent",
2821          "type": "string"
2822        },
2823        "kind": {
2824          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
2825          "type": "string"
2826        },
2827        "name": {
2828          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
2829          "type": "string"
2830        }
2831      },
2832      "required": [
2833        "kind",
2834        "name"
2835      ],
2836      "type": "object"
2837    },
2838    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": {
2839      "description": "configuration of a horizontal pod autoscaler.",
2840      "properties": {
2841        "apiVersion": {
2842          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2843          "type": "string"
2844        },
2845        "kind": {
2846          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2847          "type": "string"
2848        },
2849        "metadata": {
2850          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2851          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2852        },
2853        "spec": {
2854          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec",
2855          "description": "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
2856        },
2857        "status": {
2858          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus",
2859          "description": "current information about the autoscaler."
2860        }
2861      },
2862      "type": "object",
2863      "x-kubernetes-group-version-kind": [
2864        {
2865          "group": "autoscaling",
2866          "kind": "HorizontalPodAutoscaler",
2867          "version": "v1"
2868        }
2869      ]
2870    },
2871    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": {
2872      "description": "list of horizontal pod autoscaler objects.",
2873      "properties": {
2874        "apiVersion": {
2875          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2876          "type": "string"
2877        },
2878        "items": {
2879          "description": "list of horizontal pod autoscaler objects.",
2880          "items": {
2881            "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
2882          },
2883          "type": "array"
2884        },
2885        "kind": {
2886          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2887          "type": "string"
2888        },
2889        "metadata": {
2890          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
2891          "description": "Standard list metadata."
2892        }
2893      },
2894      "required": [
2895        "items"
2896      ],
2897      "type": "object",
2898      "x-kubernetes-group-version-kind": [
2899        {
2900          "group": "autoscaling",
2901          "kind": "HorizontalPodAutoscalerList",
2902          "version": "v1"
2903        }
2904      ]
2905    },
2906    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": {
2907      "description": "specification of a horizontal pod autoscaler.",
2908      "properties": {
2909        "maxReplicas": {
2910          "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
2911          "format": "int32",
2912          "type": "integer"
2913        },
2914        "minReplicas": {
2915          "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.",
2916          "format": "int32",
2917          "type": "integer"
2918        },
2919        "scaleTargetRef": {
2920          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference",
2921          "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."
2922        },
2923        "targetCPUUtilizationPercentage": {
2924          "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.",
2925          "format": "int32",
2926          "type": "integer"
2927        }
2928      },
2929      "required": [
2930        "scaleTargetRef",
2931        "maxReplicas"
2932      ],
2933      "type": "object"
2934    },
2935    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": {
2936      "description": "current status of a horizontal pod autoscaler",
2937      "properties": {
2938        "currentCPUUtilizationPercentage": {
2939          "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.",
2940          "format": "int32",
2941          "type": "integer"
2942        },
2943        "currentReplicas": {
2944          "description": "current number of replicas of pods managed by this autoscaler.",
2945          "format": "int32",
2946          "type": "integer"
2947        },
2948        "desiredReplicas": {
2949          "description": "desired number of replicas of pods managed by this autoscaler.",
2950          "format": "int32",
2951          "type": "integer"
2952        },
2953        "lastScaleTime": {
2954          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2955          "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed."
2956        },
2957        "observedGeneration": {
2958          "description": "most recent generation observed by this autoscaler.",
2959          "format": "int64",
2960          "type": "integer"
2961        }
2962      },
2963      "required": [
2964        "currentReplicas",
2965        "desiredReplicas"
2966      ],
2967      "type": "object"
2968    },
2969    "io.k8s.api.autoscaling.v1.Scale": {
2970      "description": "Scale represents a scaling request for a resource.",
2971      "properties": {
2972        "apiVersion": {
2973          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2974          "type": "string"
2975        },
2976        "kind": {
2977          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2978          "type": "string"
2979        },
2980        "metadata": {
2981          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2982          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
2983        },
2984        "spec": {
2985          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec",
2986          "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
2987        },
2988        "status": {
2989          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus",
2990          "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."
2991        }
2992      },
2993      "type": "object",
2994      "x-kubernetes-group-version-kind": [
2995        {
2996          "group": "autoscaling",
2997          "kind": "Scale",
2998          "version": "v1"
2999        }
3000      ]
3001    },
3002    "io.k8s.api.autoscaling.v1.ScaleSpec": {
3003      "description": "ScaleSpec describes the attributes of a scale subresource.",
3004      "properties": {
3005        "replicas": {
3006          "description": "desired number of instances for the scaled object.",
3007          "format": "int32",
3008          "type": "integer"
3009        }
3010      },
3011      "type": "object"
3012    },
3013    "io.k8s.api.autoscaling.v1.ScaleStatus": {
3014      "description": "ScaleStatus represents the current status of a scale subresource.",
3015      "properties": {
3016        "replicas": {
3017          "description": "actual number of observed instances of the scaled object.",
3018          "format": "int32",
3019          "type": "integer"
3020        },
3021        "selector": {
3022          "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",
3023          "type": "string"
3024        }
3025      },
3026      "required": [
3027        "replicas"
3028      ],
3029      "type": "object"
3030    },
3031    "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource": {
3032      "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  The values will be averaged together before being compared to the target.  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.  Only one \"target\" type should be set.",
3033      "properties": {
3034        "container": {
3035          "description": "container is the name of the container in the pods of the scaling target",
3036          "type": "string"
3037        },
3038        "name": {
3039          "description": "name is the name of the resource in question.",
3040          "type": "string"
3041        },
3042        "targetAverageUtilization": {
3043          "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.",
3044          "format": "int32",
3045          "type": "integer"
3046        },
3047        "targetAverageValue": {
3048          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3049          "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."
3050        }
3051      },
3052      "required": [
3053        "name",
3054        "container"
3055      ],
3056      "type": "object"
3057    },
3058    "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus": {
3059      "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory).  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
3060      "properties": {
3061        "container": {
3062          "description": "container is the name of the container in the pods of the scaling target",
3063          "type": "string"
3064        },
3065        "currentAverageUtilization": {
3066          "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.",
3067          "format": "int32",
3068          "type": "integer"
3069        },
3070        "currentAverageValue": {
3071          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3072          "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."
3073        },
3074        "name": {
3075          "description": "name is the name of the resource in question.",
3076          "type": "string"
3077        }
3078      },
3079      "required": [
3080        "name",
3081        "currentAverageValue",
3082        "container"
3083      ],
3084      "type": "object"
3085    },
3086    "io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference": {
3087      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
3088      "properties": {
3089        "apiVersion": {
3090          "description": "API version of the referent",
3091          "type": "string"
3092        },
3093        "kind": {
3094          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
3095          "type": "string"
3096        },
3097        "name": {
3098          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
3099          "type": "string"
3100        }
3101      },
3102      "required": [
3103        "kind",
3104        "name"
3105      ],
3106      "type": "object"
3107    },
3108    "io.k8s.api.autoscaling.v2beta1.ExternalMetricSource": {
3109      "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.",
3110      "properties": {
3111        "metricName": {
3112          "description": "metricName is the name of the metric in question.",
3113          "type": "string"
3114        },
3115        "metricSelector": {
3116          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3117          "description": "metricSelector is used to identify a specific time series within a given metric."
3118        },
3119        "targetAverageValue": {
3120          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3121          "description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue."
3122        },
3123        "targetValue": {
3124          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3125          "description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue."
3126        }
3127      },
3128      "required": [
3129        "metricName"
3130      ],
3131      "type": "object"
3132    },
3133    "io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus": {
3134      "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
3135      "properties": {
3136        "currentAverageValue": {
3137          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3138          "description": "currentAverageValue is the current value of metric averaged over autoscaled pods."
3139        },
3140        "currentValue": {
3141          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3142          "description": "currentValue is the current value of the metric (as a quantity)"
3143        },
3144        "metricName": {
3145          "description": "metricName is the name of a metric used for autoscaling in metric system.",
3146          "type": "string"
3147        },
3148        "metricSelector": {
3149          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3150          "description": "metricSelector is used to identify a specific time series within a given metric."
3151        }
3152      },
3153      "required": [
3154        "metricName",
3155        "currentValue"
3156      ],
3157      "type": "object"
3158    },
3159    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler": {
3160      "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.",
3161      "properties": {
3162        "apiVersion": {
3163          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3164          "type": "string"
3165        },
3166        "kind": {
3167          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3168          "type": "string"
3169        },
3170        "metadata": {
3171          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
3172          "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3173        },
3174        "spec": {
3175          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec",
3176          "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
3177        },
3178        "status": {
3179          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus",
3180          "description": "status is the current information about the autoscaler."
3181        }
3182      },
3183      "type": "object",
3184      "x-kubernetes-group-version-kind": [
3185        {
3186          "group": "autoscaling",
3187          "kind": "HorizontalPodAutoscaler",
3188          "version": "v2beta1"
3189        }
3190      ]
3191    },
3192    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition": {
3193      "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
3194      "properties": {
3195        "lastTransitionTime": {
3196          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3197          "description": "lastTransitionTime is the last time the condition transitioned from one status to another"
3198        },
3199        "message": {
3200          "description": "message is a human-readable explanation containing details about the transition",
3201          "type": "string"
3202        },
3203        "reason": {
3204          "description": "reason is the reason for the condition's last transition.",
3205          "type": "string"
3206        },
3207        "status": {
3208          "description": "status is the status of the condition (True, False, Unknown)",
3209          "type": "string"
3210        },
3211        "type": {
3212          "description": "type describes the current condition",
3213          "type": "string"
3214        }
3215      },
3216      "required": [
3217        "type",
3218        "status"
3219      ],
3220      "type": "object"
3221    },
3222    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList": {
3223      "description": "HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.",
3224      "properties": {
3225        "apiVersion": {
3226          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3227          "type": "string"
3228        },
3229        "items": {
3230          "description": "items is the list of horizontal pod autoscaler objects.",
3231          "items": {
3232            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
3233          },
3234          "type": "array"
3235        },
3236        "kind": {
3237          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3238          "type": "string"
3239        },
3240        "metadata": {
3241          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
3242          "description": "metadata is the standard list metadata."
3243        }
3244      },
3245      "required": [
3246        "items"
3247      ],
3248      "type": "object",
3249      "x-kubernetes-group-version-kind": [
3250        {
3251          "group": "autoscaling",
3252          "kind": "HorizontalPodAutoscalerList",
3253          "version": "v2beta1"
3254        }
3255      ]
3256    },
3257    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec": {
3258      "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
3259      "properties": {
3260        "maxReplicas": {
3261          "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
3262          "format": "int32",
3263          "type": "integer"
3264        },
3265        "metrics": {
3266          "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.",
3267          "items": {
3268            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricSpec"
3269          },
3270          "type": "array"
3271        },
3272        "minReplicas": {
3273          "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.",
3274          "format": "int32",
3275          "type": "integer"
3276        },
3277        "scaleTargetRef": {
3278          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
3279          "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."
3280        }
3281      },
3282      "required": [
3283        "scaleTargetRef",
3284        "maxReplicas"
3285      ],
3286      "type": "object"
3287    },
3288    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus": {
3289      "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
3290      "properties": {
3291        "conditions": {
3292          "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
3293          "items": {
3294            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition"
3295          },
3296          "type": "array"
3297        },
3298        "currentMetrics": {
3299          "description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
3300          "items": {
3301            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricStatus"
3302          },
3303          "type": "array"
3304        },
3305        "currentReplicas": {
3306          "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
3307          "format": "int32",
3308          "type": "integer"
3309        },
3310        "desiredReplicas": {
3311          "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
3312          "format": "int32",
3313          "type": "integer"
3314        },
3315        "lastScaleTime": {
3316          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3317          "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."
3318        },
3319        "observedGeneration": {
3320          "description": "observedGeneration is the most recent generation observed by this autoscaler.",
3321          "format": "int64",
3322          "type": "integer"
3323        }
3324      },
3325      "required": [
3326        "currentReplicas",
3327        "desiredReplicas",
3328        "conditions"
3329      ],
3330      "type": "object"
3331    },
3332    "io.k8s.api.autoscaling.v2beta1.MetricSpec": {
3333      "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
3334      "properties": {
3335        "containerResource": {
3336          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource",
3337          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag."
3338        },
3339        "external": {
3340          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricSource",
3341          "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)."
3342        },
3343        "object": {
3344          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricSource",
3345          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
3346        },
3347        "pods": {
3348          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricSource",
3349          "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."
3350        },
3351        "resource": {
3352          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricSource",
3353          "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."
3354        },
3355        "type": {
3356          "description": "type is the type of metric source.  It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
3357          "type": "string"
3358        }
3359      },
3360      "required": [
3361        "type"
3362      ],
3363      "type": "object"
3364    },
3365    "io.k8s.api.autoscaling.v2beta1.MetricStatus": {
3366      "description": "MetricStatus describes the last-read state of a single metric.",
3367      "properties": {
3368        "containerResource": {
3369          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus",
3370          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
3371        },
3372        "external": {
3373          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus",
3374          "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)."
3375        },
3376        "object": {
3377          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus",
3378          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
3379        },
3380        "pods": {
3381          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricStatus",
3382          "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."
3383        },
3384        "resource": {
3385          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus",
3386          "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."
3387        },
3388        "type": {
3389          "description": "type is the type of metric source.  It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
3390          "type": "string"
3391        }
3392      },
3393      "required": [
3394        "type"
3395      ],
3396      "type": "object"
3397    },
3398    "io.k8s.api.autoscaling.v2beta1.ObjectMetricSource": {
3399      "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
3400      "properties": {
3401        "averageValue": {
3402          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3403          "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
3404        },
3405        "metricName": {
3406          "description": "metricName is the name of the metric in question.",
3407          "type": "string"
3408        },
3409        "selector": {
3410          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3411          "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."
3412        },
3413        "target": {
3414          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
3415          "description": "target is the described Kubernetes object."
3416        },
3417        "targetValue": {
3418          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3419          "description": "targetValue is the target value of the metric (as a quantity)."
3420        }
3421      },
3422      "required": [
3423        "target",
3424        "metricName",
3425        "targetValue"
3426      ],
3427      "type": "object"
3428    },
3429    "io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus": {
3430      "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
3431      "properties": {
3432        "averageValue": {
3433          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3434          "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
3435        },
3436        "currentValue": {
3437          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3438          "description": "currentValue is the current value of the metric (as a quantity)."
3439        },
3440        "metricName": {
3441          "description": "metricName is the name of the metric in question.",
3442          "type": "string"
3443        },
3444        "selector": {
3445          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3446          "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."
3447        },
3448        "target": {
3449          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
3450          "description": "target is the described Kubernetes object."
3451        }
3452      },
3453      "required": [
3454        "target",
3455        "metricName",
3456        "currentValue"
3457      ],
3458      "type": "object"
3459    },
3460    "io.k8s.api.autoscaling.v2beta1.PodsMetricSource": {
3461      "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.",
3462      "properties": {
3463        "metricName": {
3464          "description": "metricName is the name of the metric in question",
3465          "type": "string"
3466        },
3467        "selector": {
3468          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3469          "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."
3470        },
3471        "targetAverageValue": {
3472          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3473          "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
3474        }
3475      },
3476      "required": [
3477        "metricName",
3478        "targetAverageValue"
3479      ],
3480      "type": "object"
3481    },
3482    "io.k8s.api.autoscaling.v2beta1.PodsMetricStatus": {
3483      "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
3484      "properties": {
3485        "currentAverageValue": {
3486          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3487          "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
3488        },
3489        "metricName": {
3490          "description": "metricName is the name of the metric in question",
3491          "type": "string"
3492        },
3493        "selector": {
3494          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3495          "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."
3496        }
3497      },
3498      "required": [
3499        "metricName",
3500        "currentAverageValue"
3501      ],
3502      "type": "object"
3503    },
3504    "io.k8s.api.autoscaling.v2beta1.ResourceMetricSource": {
3505      "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.",
3506      "properties": {
3507        "name": {
3508          "description": "name is the name of the resource in question.",
3509          "type": "string"
3510        },
3511        "targetAverageUtilization": {
3512          "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.",
3513          "format": "int32",
3514          "type": "integer"
3515        },
3516        "targetAverageValue": {
3517          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3518          "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."
3519        }
3520      },
3521      "required": [
3522        "name"
3523      ],
3524      "type": "object"
3525    },
3526    "io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus": {
3527      "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.",
3528      "properties": {
3529        "currentAverageUtilization": {
3530          "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.",
3531          "format": "int32",
3532          "type": "integer"
3533        },
3534        "currentAverageValue": {
3535          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3536          "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."
3537        },
3538        "name": {
3539          "description": "name is the name of the resource in question.",
3540          "type": "string"
3541        }
3542      },
3543      "required": [
3544        "name",
3545        "currentAverageValue"
3546      ],
3547      "type": "object"
3548    },
3549    "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource": {
3550      "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  The values will be averaged together before being compared to the target.  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.  Only one \"target\" type should be set.",
3551      "properties": {
3552        "container": {
3553          "description": "container is the name of the container in the pods of the scaling target",
3554          "type": "string"
3555        },
3556        "name": {
3557          "description": "name is the name of the resource in question.",
3558          "type": "string"
3559        },
3560        "target": {
3561          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
3562          "description": "target specifies the target value for the given metric"
3563        }
3564      },
3565      "required": [
3566        "name",
3567        "target",
3568        "container"
3569      ],
3570      "type": "object"
3571    },
3572    "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus": {
3573      "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory).  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
3574      "properties": {
3575        "container": {
3576          "description": "Container is the name of the container in the pods of the scaling target",
3577          "type": "string"
3578        },
3579        "current": {
3580          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
3581          "description": "current contains the current value for the given metric"
3582        },
3583        "name": {
3584          "description": "Name is the name of the resource in question.",
3585          "type": "string"
3586        }
3587      },
3588      "required": [
3589        "name",
3590        "current",
3591        "container"
3592      ],
3593      "type": "object"
3594    },
3595    "io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference": {
3596      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
3597      "properties": {
3598        "apiVersion": {
3599          "description": "API version of the referent",
3600          "type": "string"
3601        },
3602        "kind": {
3603          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
3604          "type": "string"
3605        },
3606        "name": {
3607          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
3608          "type": "string"
3609        }
3610      },
3611      "required": [
3612        "kind",
3613        "name"
3614      ],
3615      "type": "object"
3616    },
3617    "io.k8s.api.autoscaling.v2beta2.ExternalMetricSource": {
3618      "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).",
3619      "properties": {
3620        "metric": {
3621          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
3622          "description": "metric identifies the target metric by name and selector"
3623        },
3624        "target": {
3625          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
3626          "description": "target specifies the target value for the given metric"
3627        }
3628      },
3629      "required": [
3630        "metric",
3631        "target"
3632      ],
3633      "type": "object"
3634    },
3635    "io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus": {
3636      "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
3637      "properties": {
3638        "current": {
3639          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
3640          "description": "current contains the current value for the given metric"
3641        },
3642        "metric": {
3643          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
3644          "description": "metric identifies the target metric by name and selector"
3645        }
3646      },
3647      "required": [
3648        "metric",
3649        "current"
3650      ],
3651      "type": "object"
3652    },
3653    "io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy": {
3654      "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.",
3655      "properties": {
3656        "periodSeconds": {
3657          "description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
3658          "format": "int32",
3659          "type": "integer"
3660        },
3661        "type": {
3662          "description": "Type is used to specify the scaling policy.",
3663          "type": "string"
3664        },
3665        "value": {
3666          "description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero",
3667          "format": "int32",
3668          "type": "integer"
3669        }
3670      },
3671      "required": [
3672        "type",
3673        "value",
3674        "periodSeconds"
3675      ],
3676      "type": "object"
3677    },
3678    "io.k8s.api.autoscaling.v2beta2.HPAScalingRules": {
3679      "description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.",
3680      "properties": {
3681        "policies": {
3682          "description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
3683          "items": {
3684            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy"
3685          },
3686          "type": "array"
3687        },
3688        "selectPolicy": {
3689          "description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.",
3690          "type": "string"
3691        },
3692        "stabilizationWindowSeconds": {
3693          "description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).",
3694          "format": "int32",
3695          "type": "integer"
3696        }
3697      },
3698      "type": "object"
3699    },
3700    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler": {
3701      "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.",
3702      "properties": {
3703        "apiVersion": {
3704          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3705          "type": "string"
3706        },
3707        "kind": {
3708          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3709          "type": "string"
3710        },
3711        "metadata": {
3712          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
3713          "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3714        },
3715        "spec": {
3716          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec",
3717          "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
3718        },
3719        "status": {
3720          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus",
3721          "description": "status is the current information about the autoscaler."
3722        }
3723      },
3724      "type": "object",
3725      "x-kubernetes-group-version-kind": [
3726        {
3727          "group": "autoscaling",
3728          "kind": "HorizontalPodAutoscaler",
3729          "version": "v2beta2"
3730        }
3731      ]
3732    },
3733    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior": {
3734      "description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).",
3735      "properties": {
3736        "scaleDown": {
3737          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules",
3738          "description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)."
3739        },
3740        "scaleUp": {
3741          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules",
3742          "description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n  * increase no more than 4 pods per 60 seconds\n  * double the number of pods per 60 seconds\nNo stabilization is used."
3743        }
3744      },
3745      "type": "object"
3746    },
3747    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition": {
3748      "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
3749      "properties": {
3750        "lastTransitionTime": {
3751          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3752          "description": "lastTransitionTime is the last time the condition transitioned from one status to another"
3753        },
3754        "message": {
3755          "description": "message is a human-readable explanation containing details about the transition",
3756          "type": "string"
3757        },
3758        "reason": {
3759          "description": "reason is the reason for the condition's last transition.",
3760          "type": "string"
3761        },
3762        "status": {
3763          "description": "status is the status of the condition (True, False, Unknown)",
3764          "type": "string"
3765        },
3766        "type": {
3767          "description": "type describes the current condition",
3768          "type": "string"
3769        }
3770      },
3771      "required": [
3772        "type",
3773        "status"
3774      ],
3775      "type": "object"
3776    },
3777    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList": {
3778      "description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.",
3779      "properties": {
3780        "apiVersion": {
3781          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3782          "type": "string"
3783        },
3784        "items": {
3785          "description": "items is the list of horizontal pod autoscaler objects.",
3786          "items": {
3787            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
3788          },
3789          "type": "array"
3790        },
3791        "kind": {
3792          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3793          "type": "string"
3794        },
3795        "metadata": {
3796          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
3797          "description": "metadata is the standard list metadata."
3798        }
3799      },
3800      "required": [
3801        "items"
3802      ],
3803      "type": "object",
3804      "x-kubernetes-group-version-kind": [
3805        {
3806          "group": "autoscaling",
3807          "kind": "HorizontalPodAutoscalerList",
3808          "version": "v2beta2"
3809        }
3810      ]
3811    },
3812    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec": {
3813      "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
3814      "properties": {
3815        "behavior": {
3816          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior",
3817          "description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used."
3818        },
3819        "maxReplicas": {
3820          "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
3821          "format": "int32",
3822          "type": "integer"
3823        },
3824        "metrics": {
3825          "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.",
3826          "items": {
3827            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricSpec"
3828          },
3829          "type": "array"
3830        },
3831        "minReplicas": {
3832          "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.",
3833          "format": "int32",
3834          "type": "integer"
3835        },
3836        "scaleTargetRef": {
3837          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference",
3838          "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."
3839        }
3840      },
3841      "required": [
3842        "scaleTargetRef",
3843        "maxReplicas"
3844      ],
3845      "type": "object"
3846    },
3847    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus": {
3848      "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
3849      "properties": {
3850        "conditions": {
3851          "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
3852          "items": {
3853            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition"
3854          },
3855          "type": "array"
3856        },
3857        "currentMetrics": {
3858          "description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
3859          "items": {
3860            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricStatus"
3861          },
3862          "type": "array"
3863        },
3864        "currentReplicas": {
3865          "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
3866          "format": "int32",
3867          "type": "integer"
3868        },
3869        "desiredReplicas": {
3870          "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
3871          "format": "int32",
3872          "type": "integer"
3873        },
3874        "lastScaleTime": {
3875          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3876          "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."
3877        },
3878        "observedGeneration": {
3879          "description": "observedGeneration is the most recent generation observed by this autoscaler.",
3880          "format": "int64",
3881          "type": "integer"
3882        }
3883      },
3884      "required": [
3885        "currentReplicas",
3886        "desiredReplicas",
3887        "conditions"
3888      ],
3889      "type": "object"
3890    },
3891    "io.k8s.api.autoscaling.v2beta2.MetricIdentifier": {
3892      "description": "MetricIdentifier defines the name and optionally selector for a metric",
3893      "properties": {
3894        "name": {
3895          "description": "name is the name of the given metric",
3896          "type": "string"
3897        },
3898        "selector": {
3899          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3900          "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."
3901        }
3902      },
3903      "required": [
3904        "name"
3905      ],
3906      "type": "object"
3907    },
3908    "io.k8s.api.autoscaling.v2beta2.MetricSpec": {
3909      "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
3910      "properties": {
3911        "containerResource": {
3912          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource",
3913          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag."
3914        },
3915        "external": {
3916          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricSource",
3917          "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)."
3918        },
3919        "object": {
3920          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricSource",
3921          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
3922        },
3923        "pods": {
3924          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricSource",
3925          "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."
3926        },
3927        "resource": {
3928          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricSource",
3929          "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."
3930        },
3931        "type": {
3932          "description": "type is the type of metric source.  It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
3933          "type": "string"
3934        }
3935      },
3936      "required": [
3937        "type"
3938      ],
3939      "type": "object"
3940    },
3941    "io.k8s.api.autoscaling.v2beta2.MetricStatus": {
3942      "description": "MetricStatus describes the last-read state of a single metric.",
3943      "properties": {
3944        "containerResource": {
3945          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus",
3946          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
3947        },
3948        "external": {
3949          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus",
3950          "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)."
3951        },
3952        "object": {
3953          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus",
3954          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
3955        },
3956        "pods": {
3957          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricStatus",
3958          "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."
3959        },
3960        "resource": {
3961          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus",
3962          "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."
3963        },
3964        "type": {
3965          "description": "type is the type of metric source.  It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
3966          "type": "string"
3967        }
3968      },
3969      "required": [
3970        "type"
3971      ],
3972      "type": "object"
3973    },
3974    "io.k8s.api.autoscaling.v2beta2.MetricTarget": {
3975      "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
3976      "properties": {
3977        "averageUtilization": {
3978          "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",
3979          "format": "int32",
3980          "type": "integer"
3981        },
3982        "averageValue": {
3983          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3984          "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
3985        },
3986        "type": {
3987          "description": "type represents whether the metric type is Utilization, Value, or AverageValue",
3988          "type": "string"
3989        },
3990        "value": {
3991          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3992          "description": "value is the target value of the metric (as a quantity)."
3993        }
3994      },
3995      "required": [
3996        "type"
3997      ],
3998      "type": "object"
3999    },
4000    "io.k8s.api.autoscaling.v2beta2.MetricValueStatus": {
4001      "description": "MetricValueStatus holds the current value for a metric",
4002      "properties": {
4003        "averageUtilization": {
4004          "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.",
4005          "format": "int32",
4006          "type": "integer"
4007        },
4008        "averageValue": {
4009          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4010          "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
4011        },
4012        "value": {
4013          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4014          "description": "value is the current value of the metric (as a quantity)."
4015        }
4016      },
4017      "type": "object"
4018    },
4019    "io.k8s.api.autoscaling.v2beta2.ObjectMetricSource": {
4020      "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
4021      "properties": {
4022        "describedObject": {
4023          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference"
4024        },
4025        "metric": {
4026          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
4027          "description": "metric identifies the target metric by name and selector"
4028        },
4029        "target": {
4030          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
4031          "description": "target specifies the target value for the given metric"
4032        }
4033      },
4034      "required": [
4035        "describedObject",
4036        "target",
4037        "metric"
4038      ],
4039      "type": "object"
4040    },
4041    "io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus": {
4042      "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
4043      "properties": {
4044        "current": {
4045          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
4046          "description": "current contains the current value for the given metric"
4047        },
4048        "describedObject": {
4049          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference"
4050        },
4051        "metric": {
4052          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
4053          "description": "metric identifies the target metric by name and selector"
4054        }
4055      },
4056      "required": [
4057        "metric",
4058        "current",
4059        "describedObject"
4060      ],
4061      "type": "object"
4062    },
4063    "io.k8s.api.autoscaling.v2beta2.PodsMetricSource": {
4064      "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.",
4065      "properties": {
4066        "metric": {
4067          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
4068          "description": "metric identifies the target metric by name and selector"
4069        },
4070        "target": {
4071          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
4072          "description": "target specifies the target value for the given metric"
4073        }
4074      },
4075      "required": [
4076        "metric",
4077        "target"
4078      ],
4079      "type": "object"
4080    },
4081    "io.k8s.api.autoscaling.v2beta2.PodsMetricStatus": {
4082      "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
4083      "properties": {
4084        "current": {
4085          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
4086          "description": "current contains the current value for the given metric"
4087        },
4088        "metric": {
4089          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
4090          "description": "metric identifies the target metric by name and selector"
4091        }
4092      },
4093      "required": [
4094        "metric",
4095        "current"
4096      ],
4097      "type": "object"
4098    },
4099    "io.k8s.api.autoscaling.v2beta2.ResourceMetricSource": {
4100      "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.",
4101      "properties": {
4102        "name": {
4103          "description": "name is the name of the resource in question.",
4104          "type": "string"
4105        },
4106        "target": {
4107          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
4108          "description": "target specifies the target value for the given metric"
4109        }
4110      },
4111      "required": [
4112        "name",
4113        "target"
4114      ],
4115      "type": "object"
4116    },
4117    "io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus": {
4118      "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.",
4119      "properties": {
4120        "current": {
4121          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
4122          "description": "current contains the current value for the given metric"
4123        },
4124        "name": {
4125          "description": "Name is the name of the resource in question.",
4126          "type": "string"
4127        }
4128      },
4129      "required": [
4130        "name",
4131        "current"
4132      ],
4133      "type": "object"
4134    },
4135    "io.k8s.api.batch.v1.Job": {
4136      "description": "Job represents the configuration of a single job.",
4137      "properties": {
4138        "apiVersion": {
4139          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4140          "type": "string"
4141        },
4142        "kind": {
4143          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4144          "type": "string"
4145        },
4146        "metadata": {
4147          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4148          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4149        },
4150        "spec": {
4151          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
4152          "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4153        },
4154        "status": {
4155          "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus",
4156          "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4157        }
4158      },
4159      "type": "object",
4160      "x-kubernetes-group-version-kind": [
4161        {
4162          "group": "batch",
4163          "kind": "Job",
4164          "version": "v1"
4165        }
4166      ]
4167    },
4168    "io.k8s.api.batch.v1.JobCondition": {
4169      "description": "JobCondition describes current state of a job.",
4170      "properties": {
4171        "lastProbeTime": {
4172          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4173          "description": "Last time the condition was checked."
4174        },
4175        "lastTransitionTime": {
4176          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4177          "description": "Last time the condition transit from one status to another."
4178        },
4179        "message": {
4180          "description": "Human readable message indicating details about last transition.",
4181          "type": "string"
4182        },
4183        "reason": {
4184          "description": "(brief) reason for the condition's last transition.",
4185          "type": "string"
4186        },
4187        "status": {
4188          "description": "Status of the condition, one of True, False, Unknown.",
4189          "type": "string"
4190        },
4191        "type": {
4192          "description": "Type of job condition, Complete or Failed.",
4193          "type": "string"
4194        }
4195      },
4196      "required": [
4197        "type",
4198        "status"
4199      ],
4200      "type": "object"
4201    },
4202    "io.k8s.api.batch.v1.JobList": {
4203      "description": "JobList is a collection of jobs.",
4204      "properties": {
4205        "apiVersion": {
4206          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4207          "type": "string"
4208        },
4209        "items": {
4210          "description": "items is the list of Jobs.",
4211          "items": {
4212            "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
4213          },
4214          "type": "array"
4215        },
4216        "kind": {
4217          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4218          "type": "string"
4219        },
4220        "metadata": {
4221          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4222          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4223        }
4224      },
4225      "required": [
4226        "items"
4227      ],
4228      "type": "object",
4229      "x-kubernetes-group-version-kind": [
4230        {
4231          "group": "batch",
4232          "kind": "JobList",
4233          "version": "v1"
4234        }
4235      ]
4236    },
4237    "io.k8s.api.batch.v1.JobSpec": {
4238      "description": "JobSpec describes how the job execution will look like.",
4239      "properties": {
4240        "activeDeadlineSeconds": {
4241          "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",
4242          "format": "int64",
4243          "type": "integer"
4244        },
4245        "backoffLimit": {
4246          "description": "Specifies the number of retries before marking this job failed. Defaults to 6",
4247          "format": "int32",
4248          "type": "integer"
4249        },
4250        "completions": {
4251          "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/",
4252          "format": "int32",
4253          "type": "integer"
4254        },
4255        "manualSelector": {
4256          "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",
4257          "type": "boolean"
4258        },
4259        "parallelism": {
4260          "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/",
4261          "format": "int32",
4262          "type": "integer"
4263        },
4264        "selector": {
4265          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
4266          "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"
4267        },
4268        "template": {
4269          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
4270          "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/"
4271        },
4272        "ttlSecondsAfterFinished": {
4273          "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.",
4274          "format": "int32",
4275          "type": "integer"
4276        }
4277      },
4278      "required": [
4279        "template"
4280      ],
4281      "type": "object"
4282    },
4283    "io.k8s.api.batch.v1.JobStatus": {
4284      "description": "JobStatus represents the current state of a Job.",
4285      "properties": {
4286        "active": {
4287          "description": "The number of actively running pods.",
4288          "format": "int32",
4289          "type": "integer"
4290        },
4291        "completionTime": {
4292          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4293          "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is only set when the job finishes successfully."
4294        },
4295        "conditions": {
4296          "description": "The latest available observations of an object's current state. When a job fails, one of the conditions will have type == \"Failed\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
4297          "items": {
4298            "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition"
4299          },
4300          "type": "array",
4301          "x-kubernetes-patch-merge-key": "type",
4302          "x-kubernetes-patch-strategy": "merge"
4303        },
4304        "failed": {
4305          "description": "The number of pods which reached phase Failed.",
4306          "format": "int32",
4307          "type": "integer"
4308        },
4309        "startTime": {
4310          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4311          "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."
4312        },
4313        "succeeded": {
4314          "description": "The number of pods which reached phase Succeeded.",
4315          "format": "int32",
4316          "type": "integer"
4317        }
4318      },
4319      "type": "object"
4320    },
4321    "io.k8s.api.batch.v1beta1.CronJob": {
4322      "description": "CronJob represents the configuration of a single cron job.",
4323      "properties": {
4324        "apiVersion": {
4325          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4326          "type": "string"
4327        },
4328        "kind": {
4329          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4330          "type": "string"
4331        },
4332        "metadata": {
4333          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4334          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4335        },
4336        "spec": {
4337          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobSpec",
4338          "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4339        },
4340        "status": {
4341          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobStatus",
4342          "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4343        }
4344      },
4345      "type": "object",
4346      "x-kubernetes-group-version-kind": [
4347        {
4348          "group": "batch",
4349          "kind": "CronJob",
4350          "version": "v1beta1"
4351        }
4352      ]
4353    },
4354    "io.k8s.api.batch.v1beta1.CronJobList": {
4355      "description": "CronJobList is a collection of cron jobs.",
4356      "properties": {
4357        "apiVersion": {
4358          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4359          "type": "string"
4360        },
4361        "items": {
4362          "description": "items is the list of CronJobs.",
4363          "items": {
4364            "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
4365          },
4366          "type": "array"
4367        },
4368        "kind": {
4369          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4370          "type": "string"
4371        },
4372        "metadata": {
4373          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4374          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4375        }
4376      },
4377      "required": [
4378        "items"
4379      ],
4380      "type": "object",
4381      "x-kubernetes-group-version-kind": [
4382        {
4383          "group": "batch",
4384          "kind": "CronJobList",
4385          "version": "v1beta1"
4386        }
4387      ]
4388    },
4389    "io.k8s.api.batch.v1beta1.CronJobSpec": {
4390      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
4391      "properties": {
4392        "concurrencyPolicy": {
4393          "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",
4394          "type": "string"
4395        },
4396        "failedJobsHistoryLimit": {
4397          "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
4398          "format": "int32",
4399          "type": "integer"
4400        },
4401        "jobTemplate": {
4402          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.JobTemplateSpec",
4403          "description": "Specifies the job that will be created when executing a CronJob."
4404        },
4405        "schedule": {
4406          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
4407          "type": "string"
4408        },
4409        "startingDeadlineSeconds": {
4410          "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.",
4411          "format": "int64",
4412          "type": "integer"
4413        },
4414        "successfulJobsHistoryLimit": {
4415          "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.",
4416          "format": "int32",
4417          "type": "integer"
4418        },
4419        "suspend": {
4420          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
4421          "type": "boolean"
4422        }
4423      },
4424      "required": [
4425        "schedule",
4426        "jobTemplate"
4427      ],
4428      "type": "object"
4429    },
4430    "io.k8s.api.batch.v1beta1.CronJobStatus": {
4431      "description": "CronJobStatus represents the current state of a cron job.",
4432      "properties": {
4433        "active": {
4434          "description": "A list of pointers to currently running jobs.",
4435          "items": {
4436            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
4437          },
4438          "type": "array"
4439        },
4440        "lastScheduleTime": {
4441          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4442          "description": "Information when was the last time the job was successfully scheduled."
4443        }
4444      },
4445      "type": "object"
4446    },
4447    "io.k8s.api.batch.v1beta1.JobTemplateSpec": {
4448      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
4449      "properties": {
4450        "metadata": {
4451          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4452          "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4453        },
4454        "spec": {
4455          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
4456          "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4457        }
4458      },
4459      "type": "object"
4460    },
4461    "io.k8s.api.batch.v2alpha1.CronJob": {
4462      "description": "CronJob represents the configuration of a single cron job.",
4463      "properties": {
4464        "apiVersion": {
4465          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4466          "type": "string"
4467        },
4468        "kind": {
4469          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4470          "type": "string"
4471        },
4472        "metadata": {
4473          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4474          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4475        },
4476        "spec": {
4477          "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobSpec",
4478          "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4479        },
4480        "status": {
4481          "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobStatus",
4482          "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4483        }
4484      },
4485      "type": "object",
4486      "x-kubernetes-group-version-kind": [
4487        {
4488          "group": "batch",
4489          "kind": "CronJob",
4490          "version": "v2alpha1"
4491        }
4492      ]
4493    },
4494    "io.k8s.api.batch.v2alpha1.CronJobList": {
4495      "description": "CronJobList is a collection of cron jobs.",
4496      "properties": {
4497        "apiVersion": {
4498          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4499          "type": "string"
4500        },
4501        "items": {
4502          "description": "items is the list of CronJobs.",
4503          "items": {
4504            "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
4505          },
4506          "type": "array"
4507        },
4508        "kind": {
4509          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4510          "type": "string"
4511        },
4512        "metadata": {
4513          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4514          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4515        }
4516      },
4517      "required": [
4518        "items"
4519      ],
4520      "type": "object",
4521      "x-kubernetes-group-version-kind": [
4522        {
4523          "group": "batch",
4524          "kind": "CronJobList",
4525          "version": "v2alpha1"
4526        }
4527      ]
4528    },
4529    "io.k8s.api.batch.v2alpha1.CronJobSpec": {
4530      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
4531      "properties": {
4532        "concurrencyPolicy": {
4533          "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",
4534          "type": "string"
4535        },
4536        "failedJobsHistoryLimit": {
4537          "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.",
4538          "format": "int32",
4539          "type": "integer"
4540        },
4541        "jobTemplate": {
4542          "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.JobTemplateSpec",
4543          "description": "Specifies the job that will be created when executing a CronJob."
4544        },
4545        "schedule": {
4546          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
4547          "type": "string"
4548        },
4549        "startingDeadlineSeconds": {
4550          "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.",
4551          "format": "int64",
4552          "type": "integer"
4553        },
4554        "successfulJobsHistoryLimit": {
4555          "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.",
4556          "format": "int32",
4557          "type": "integer"
4558        },
4559        "suspend": {
4560          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
4561          "type": "boolean"
4562        }
4563      },
4564      "required": [
4565        "schedule",
4566        "jobTemplate"
4567      ],
4568      "type": "object"
4569    },
4570    "io.k8s.api.batch.v2alpha1.CronJobStatus": {
4571      "description": "CronJobStatus represents the current state of a cron job.",
4572      "properties": {
4573        "active": {
4574          "description": "A list of pointers to currently running jobs.",
4575          "items": {
4576            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
4577          },
4578          "type": "array"
4579        },
4580        "lastScheduleTime": {
4581          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4582          "description": "Information when was the last time the job was successfully scheduled."
4583        }
4584      },
4585      "type": "object"
4586    },
4587    "io.k8s.api.batch.v2alpha1.JobTemplateSpec": {
4588      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
4589      "properties": {
4590        "metadata": {
4591          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4592          "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4593        },
4594        "spec": {
4595          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
4596          "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4597        }
4598      },
4599      "type": "object"
4600    },
4601    "io.k8s.api.certificates.v1.CertificateSigningRequest": {
4602      "description": "CertificateSigningRequest objects provide a mechanism to obtain x509 certificates by submitting a certificate signing request, and having it asynchronously approved and issued.\n\nKubelets use this API to obtain:\n 1. client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client-kubelet\" signerName).\n 2. serving certificates for TLS endpoints kube-apiserver can connect to securely (with the \"kubernetes.io/kubelet-serving\" signerName).\n\nThis API can be used to request client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client\" signerName), or to obtain certificates from custom non-Kubernetes signers.",
4603      "properties": {
4604        "apiVersion": {
4605          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4606          "type": "string"
4607        },
4608        "kind": {
4609          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4610          "type": "string"
4611        },
4612        "metadata": {
4613          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4614        },
4615        "spec": {
4616          "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestSpec",
4617          "description": "spec contains the certificate request, and is immutable after creation. Only the request, signerName, and usages fields can be set on creation. Other fields are derived by Kubernetes and cannot be modified by users."
4618        },
4619        "status": {
4620          "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestStatus",
4621          "description": "status contains information about whether the request is approved or denied, and the certificate issued by the signer, or the failure condition indicating signer failure."
4622        }
4623      },
4624      "required": [
4625        "spec"
4626      ],
4627      "type": "object",
4628      "x-kubernetes-group-version-kind": [
4629        {
4630          "group": "certificates.k8s.io",
4631          "kind": "CertificateSigningRequest",
4632          "version": "v1"
4633        }
4634      ]
4635    },
4636    "io.k8s.api.certificates.v1.CertificateSigningRequestCondition": {
4637      "description": "CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object",
4638      "properties": {
4639        "lastTransitionTime": {
4640          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4641          "description": "lastTransitionTime is the time the condition last transitioned from one status to another. If unset, when a new condition type is added or an existing condition's status is changed, the server defaults this to the current time."
4642        },
4643        "lastUpdateTime": {
4644          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4645          "description": "lastUpdateTime is the time of the last update to this condition"
4646        },
4647        "message": {
4648          "description": "message contains a human readable message with details about the request state",
4649          "type": "string"
4650        },
4651        "reason": {
4652          "description": "reason indicates a brief reason for the request state",
4653          "type": "string"
4654        },
4655        "status": {
4656          "description": "status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\".",
4657          "type": "string"
4658        },
4659        "type": {
4660          "description": "type of the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status subresource, indicating the signer failed to issue the certificate.\n\nApproved and Denied conditions are mutually exclusive. Approved, Denied, and Failed conditions cannot be removed once added.\n\nOnly one condition of a given type is allowed.",
4661          "type": "string"
4662        }
4663      },
4664      "required": [
4665        "type",
4666        "status"
4667      ],
4668      "type": "object"
4669    },
4670    "io.k8s.api.certificates.v1.CertificateSigningRequestList": {
4671      "description": "CertificateSigningRequestList is a collection of CertificateSigningRequest objects",
4672      "properties": {
4673        "apiVersion": {
4674          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4675          "type": "string"
4676        },
4677        "items": {
4678          "description": "items is a collection of CertificateSigningRequest objects",
4679          "items": {
4680            "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
4681          },
4682          "type": "array"
4683        },
4684        "kind": {
4685          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4686          "type": "string"
4687        },
4688        "metadata": {
4689          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
4690        }
4691      },
4692      "required": [
4693        "items"
4694      ],
4695      "type": "object",
4696      "x-kubernetes-group-version-kind": [
4697        {
4698          "group": "certificates.k8s.io",
4699          "kind": "CertificateSigningRequestList",
4700          "version": "v1"
4701        }
4702      ]
4703    },
4704    "io.k8s.api.certificates.v1.CertificateSigningRequestSpec": {
4705      "description": "CertificateSigningRequestSpec contains the certificate request.",
4706      "properties": {
4707        "extra": {
4708          "additionalProperties": {
4709            "items": {
4710              "type": "string"
4711            },
4712            "type": "array"
4713          },
4714          "description": "extra contains extra attributes of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4715          "type": "object"
4716        },
4717        "groups": {
4718          "description": "groups contains group membership of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4719          "items": {
4720            "type": "string"
4721          },
4722          "type": "array",
4723          "x-kubernetes-list-type": "atomic"
4724        },
4725        "request": {
4726          "description": "request contains an x509 certificate signing request encoded in a \"CERTIFICATE REQUEST\" PEM block. When serialized as JSON or YAML, the data is additionally base64-encoded.",
4727          "format": "byte",
4728          "type": "string",
4729          "x-kubernetes-list-type": "atomic"
4730        },
4731        "signerName": {
4732          "description": "signerName indicates the requested signer, and is a qualified name.\n\nList/watch requests for CertificateSigningRequests can filter on this field using a \"spec.signerName=NAME\" fieldSelector.\n\nWell-known Kubernetes signers are:\n 1. \"kubernetes.io/kube-apiserver-client\": issues client certificates that can be used to authenticate to kube-apiserver.\n  Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the \"csrsigning\" controller in kube-controller-manager.\n 2. \"kubernetes.io/kube-apiserver-client-kubelet\": issues client certificates that kubelets use to authenticate to kube-apiserver.\n  Requests for this signer can be auto-approved by the \"csrapproving\" controller in kube-controller-manager, and can be issued by the \"csrsigning\" controller in kube-controller-manager.\n 3. \"kubernetes.io/kubelet-serving\" issues serving certificates that kubelets use to serve TLS endpoints, which kube-apiserver can connect to securely.\n  Requests for this signer are never auto-approved by kube-controller-manager, and can be issued by the \"csrsigning\" controller in kube-controller-manager.\n\nMore details are available at https://k8s.io/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signers\n\nCustom signerNames can also be specified. The signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.\n 6. Whether or not requests for CA certificates are allowed.",
4733          "type": "string"
4734        },
4735        "uid": {
4736          "description": "uid contains the uid of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4737          "type": "string"
4738        },
4739        "usages": {
4740          "description": "usages specifies a set of key usages requested in the issued certificate.\n\nRequests for TLS client certificates typically request: \"digital signature\", \"key encipherment\", \"client auth\".\n\nRequests for TLS serving certificates typically request: \"key encipherment\", \"digital signature\", \"server auth\".\n\nValid values are:\n \"signing\", \"digital signature\", \"content commitment\",\n \"key encipherment\", \"key agreement\", \"data encipherment\",\n \"cert sign\", \"crl sign\", \"encipher only\", \"decipher only\", \"any\",\n \"server auth\", \"client auth\",\n \"code signing\", \"email protection\", \"s/mime\",\n \"ipsec end system\", \"ipsec tunnel\", \"ipsec user\",\n \"timestamping\", \"ocsp signing\", \"microsoft sgc\", \"netscape sgc\"",
4741          "items": {
4742            "type": "string"
4743          },
4744          "type": "array",
4745          "x-kubernetes-list-type": "atomic"
4746        },
4747        "username": {
4748          "description": "username contains the name of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4749          "type": "string"
4750        }
4751      },
4752      "required": [
4753        "request",
4754        "signerName"
4755      ],
4756      "type": "object"
4757    },
4758    "io.k8s.api.certificates.v1.CertificateSigningRequestStatus": {
4759      "description": "CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate.",
4760      "properties": {
4761        "certificate": {
4762          "description": "certificate is populated with an issued certificate by the signer after an Approved condition is present. This field is set via the /status subresource. Once populated, this field is immutable.\n\nIf the certificate signing request is denied, a condition of type \"Denied\" is added and this field remains empty. If the signer cannot issue the certificate, a condition of type \"Failed\" is added and this field remains empty.\n\nValidation requirements:\n 1. certificate must contain one or more PEM blocks.\n 2. All PEM blocks must have the \"CERTIFICATE\" label, contain no headers, and the encoded data\n  must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.\n 3. Non-PEM content may appear before or after the \"CERTIFICATE\" PEM blocks and is unvalidated,\n  to allow for explanatory text as described in section 5.2 of RFC7468.\n\nIf more than one PEM block is present, and the definition of the requested spec.signerName does not indicate otherwise, the first block is the issued certificate, and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakes.\n\nThe certificate is encoded in PEM format.\n\nWhen serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of:\n\n    base64(\n    -----BEGIN CERTIFICATE-----\n    ...\n    -----END CERTIFICATE-----\n    )",
4763          "format": "byte",
4764          "type": "string",
4765          "x-kubernetes-list-type": "atomic"
4766        },
4767        "conditions": {
4768          "description": "conditions applied to the request. Known conditions are \"Approved\", \"Denied\", and \"Failed\".",
4769          "items": {
4770            "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestCondition"
4771          },
4772          "type": "array",
4773          "x-kubernetes-list-map-keys": [
4774            "type"
4775          ],
4776          "x-kubernetes-list-type": "map"
4777        }
4778      },
4779      "type": "object"
4780    },
4781    "io.k8s.api.certificates.v1beta1.CertificateSigningRequest": {
4782      "description": "Describes a certificate signing request",
4783      "properties": {
4784        "apiVersion": {
4785          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4786          "type": "string"
4787        },
4788        "kind": {
4789          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4790          "type": "string"
4791        },
4792        "metadata": {
4793          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4794        },
4795        "spec": {
4796          "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec",
4797          "description": "The certificate request itself and any additional information."
4798        },
4799        "status": {
4800          "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus",
4801          "description": "Derived information about the request."
4802        }
4803      },
4804      "type": "object",
4805      "x-kubernetes-group-version-kind": [
4806        {
4807          "group": "certificates.k8s.io",
4808          "kind": "CertificateSigningRequest",
4809          "version": "v1beta1"
4810        }
4811      ]
4812    },
4813    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition": {
4814      "properties": {
4815        "lastTransitionTime": {
4816          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4817          "description": "lastTransitionTime is the time the condition last transitioned from one status to another. If unset, when a new condition type is added or an existing condition's status is changed, the server defaults this to the current time."
4818        },
4819        "lastUpdateTime": {
4820          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4821          "description": "timestamp for the last update to this condition"
4822        },
4823        "message": {
4824          "description": "human readable message with details about the request state",
4825          "type": "string"
4826        },
4827        "reason": {
4828          "description": "brief reason for the request state",
4829          "type": "string"
4830        },
4831        "status": {
4832          "description": "Status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\". Defaults to \"True\". If unset, should be treated as \"True\".",
4833          "type": "string"
4834        },
4835        "type": {
4836          "description": "type of the condition. Known conditions include \"Approved\", \"Denied\", and \"Failed\".",
4837          "type": "string"
4838        }
4839      },
4840      "required": [
4841        "type"
4842      ],
4843      "type": "object"
4844    },
4845    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList": {
4846      "properties": {
4847        "apiVersion": {
4848          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4849          "type": "string"
4850        },
4851        "items": {
4852          "items": {
4853            "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
4854          },
4855          "type": "array"
4856        },
4857        "kind": {
4858          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4859          "type": "string"
4860        },
4861        "metadata": {
4862          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
4863        }
4864      },
4865      "required": [
4866        "items"
4867      ],
4868      "type": "object",
4869      "x-kubernetes-group-version-kind": [
4870        {
4871          "group": "certificates.k8s.io",
4872          "kind": "CertificateSigningRequestList",
4873          "version": "v1beta1"
4874        }
4875      ]
4876    },
4877    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec": {
4878      "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.",
4879      "properties": {
4880        "extra": {
4881          "additionalProperties": {
4882            "items": {
4883              "type": "string"
4884            },
4885            "type": "array"
4886          },
4887          "description": "Extra information about the requesting user. See user.Info interface for details.",
4888          "type": "object"
4889        },
4890        "groups": {
4891          "description": "Group information about the requesting user. See user.Info interface for details.",
4892          "items": {
4893            "type": "string"
4894          },
4895          "type": "array",
4896          "x-kubernetes-list-type": "atomic"
4897        },
4898        "request": {
4899          "description": "Base64-encoded PKCS#10 CSR data",
4900          "format": "byte",
4901          "type": "string",
4902          "x-kubernetes-list-type": "atomic"
4903        },
4904        "signerName": {
4905          "description": "Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted:\n 1. If it's a kubelet client certificate, it is assigned\n    \"kubernetes.io/kube-apiserver-client-kubelet\".\n 2. If it's a kubelet serving certificate, it is assigned\n    \"kubernetes.io/kubelet-serving\".\n 3. Otherwise, it is assigned \"kubernetes.io/legacy-unknown\".\nDistribution of trust for signers happens out of band. You can select on this field using `spec.signerName`.",
4906          "type": "string"
4907        },
4908        "uid": {
4909          "description": "UID information about the requesting user. See user.Info interface for details.",
4910          "type": "string"
4911        },
4912        "usages": {
4913          "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\nValid values are:\n \"signing\",\n \"digital signature\",\n \"content commitment\",\n \"key encipherment\",\n \"key agreement\",\n \"data encipherment\",\n \"cert sign\",\n \"crl sign\",\n \"encipher only\",\n \"decipher only\",\n \"any\",\n \"server auth\",\n \"client auth\",\n \"code signing\",\n \"email protection\",\n \"s/mime\",\n \"ipsec end system\",\n \"ipsec tunnel\",\n \"ipsec user\",\n \"timestamping\",\n \"ocsp signing\",\n \"microsoft sgc\",\n \"netscape sgc\"",
4914          "items": {
4915            "type": "string"
4916          },
4917          "type": "array",
4918          "x-kubernetes-list-type": "atomic"
4919        },
4920        "username": {
4921          "description": "Information about the requesting user. See user.Info interface for details.",
4922          "type": "string"
4923        }
4924      },
4925      "required": [
4926        "request"
4927      ],
4928      "type": "object"
4929    },
4930    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus": {
4931      "properties": {
4932        "certificate": {
4933          "description": "If request was approved, the controller will place the issued certificate here.",
4934          "format": "byte",
4935          "type": "string",
4936          "x-kubernetes-list-type": "atomic"
4937        },
4938        "conditions": {
4939          "description": "Conditions applied to the request, such as approval or denial.",
4940          "items": {
4941            "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition"
4942          },
4943          "type": "array",
4944          "x-kubernetes-list-map-keys": [
4945            "type"
4946          ],
4947          "x-kubernetes-list-type": "map"
4948        }
4949      },
4950      "type": "object"
4951    },
4952    "io.k8s.api.coordination.v1.Lease": {
4953      "description": "Lease defines a lease concept.",
4954      "properties": {
4955        "apiVersion": {
4956          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4957          "type": "string"
4958        },
4959        "kind": {
4960          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4961          "type": "string"
4962        },
4963        "metadata": {
4964          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4965          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4966        },
4967        "spec": {
4968          "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseSpec",
4969          "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4970        }
4971      },
4972      "type": "object",
4973      "x-kubernetes-group-version-kind": [
4974        {
4975          "group": "coordination.k8s.io",
4976          "kind": "Lease",
4977          "version": "v1"
4978        }
4979      ]
4980    },
4981    "io.k8s.api.coordination.v1.LeaseList": {
4982      "description": "LeaseList is a list of Lease objects.",
4983      "properties": {
4984        "apiVersion": {
4985          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4986          "type": "string"
4987        },
4988        "items": {
4989          "description": "Items is a list of schema objects.",
4990          "items": {
4991            "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
4992          },
4993          "type": "array"
4994        },
4995        "kind": {
4996          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4997          "type": "string"
4998        },
4999        "metadata": {
5000          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5001          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5002        }
5003      },
5004      "required": [
5005        "items"
5006      ],
5007      "type": "object",
5008      "x-kubernetes-group-version-kind": [
5009        {
5010          "group": "coordination.k8s.io",
5011          "kind": "LeaseList",
5012          "version": "v1"
5013        }
5014      ]
5015    },
5016    "io.k8s.api.coordination.v1.LeaseSpec": {
5017      "description": "LeaseSpec is a specification of a Lease.",
5018      "properties": {
5019        "acquireTime": {
5020          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5021          "description": "acquireTime is a time when the current lease was acquired."
5022        },
5023        "holderIdentity": {
5024          "description": "holderIdentity contains the identity of the holder of a current lease.",
5025          "type": "string"
5026        },
5027        "leaseDurationSeconds": {
5028          "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.",
5029          "format": "int32",
5030          "type": "integer"
5031        },
5032        "leaseTransitions": {
5033          "description": "leaseTransitions is the number of transitions of a lease between holders.",
5034          "format": "int32",
5035          "type": "integer"
5036        },
5037        "renewTime": {
5038          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5039          "description": "renewTime is a time when the current holder of a lease has last updated the lease."
5040        }
5041      },
5042      "type": "object"
5043    },
5044    "io.k8s.api.coordination.v1beta1.Lease": {
5045      "description": "Lease defines a lease concept.",
5046      "properties": {
5047        "apiVersion": {
5048          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5049          "type": "string"
5050        },
5051        "kind": {
5052          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5053          "type": "string"
5054        },
5055        "metadata": {
5056          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5057          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5058        },
5059        "spec": {
5060          "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseSpec",
5061          "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
5062        }
5063      },
5064      "type": "object",
5065      "x-kubernetes-group-version-kind": [
5066        {
5067          "group": "coordination.k8s.io",
5068          "kind": "Lease",
5069          "version": "v1beta1"
5070        }
5071      ]
5072    },
5073    "io.k8s.api.coordination.v1beta1.LeaseList": {
5074      "description": "LeaseList is a list of Lease objects.",
5075      "properties": {
5076        "apiVersion": {
5077          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5078          "type": "string"
5079        },
5080        "items": {
5081          "description": "Items is a list of schema objects.",
5082          "items": {
5083            "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
5084          },
5085          "type": "array"
5086        },
5087        "kind": {
5088          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5089          "type": "string"
5090        },
5091        "metadata": {
5092          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5093          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5094        }
5095      },
5096      "required": [
5097        "items"
5098      ],
5099      "type": "object",
5100      "x-kubernetes-group-version-kind": [
5101        {
5102          "group": "coordination.k8s.io",
5103          "kind": "LeaseList",
5104          "version": "v1beta1"
5105        }
5106      ]
5107    },
5108    "io.k8s.api.coordination.v1beta1.LeaseSpec": {
5109      "description": "LeaseSpec is a specification of a Lease.",
5110      "properties": {
5111        "acquireTime": {
5112          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5113          "description": "acquireTime is a time when the current lease was acquired."
5114        },
5115        "holderIdentity": {
5116          "description": "holderIdentity contains the identity of the holder of a current lease.",
5117          "type": "string"
5118        },
5119        "leaseDurationSeconds": {
5120          "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.",
5121          "format": "int32",
5122          "type": "integer"
5123        },
5124        "leaseTransitions": {
5125          "description": "leaseTransitions is the number of transitions of a lease between holders.",
5126          "format": "int32",
5127          "type": "integer"
5128        },
5129        "renewTime": {
5130          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5131          "description": "renewTime is a time when the current holder of a lease has last updated the lease."
5132        }
5133      },
5134      "type": "object"
5135    },
5136    "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
5137      "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.",
5138      "properties": {
5139        "fsType": {
5140          "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",
5141          "type": "string"
5142        },
5143        "partition": {
5144          "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).",
5145          "format": "int32",
5146          "type": "integer"
5147        },
5148        "readOnly": {
5149          "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",
5150          "type": "boolean"
5151        },
5152        "volumeID": {
5153          "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
5154          "type": "string"
5155        }
5156      },
5157      "required": [
5158        "volumeID"
5159      ],
5160      "type": "object"
5161    },
5162    "io.k8s.api.core.v1.Affinity": {
5163      "description": "Affinity is a group of affinity scheduling rules.",
5164      "properties": {
5165        "nodeAffinity": {
5166          "$ref": "#/definitions/io.k8s.api.core.v1.NodeAffinity",
5167          "description": "Describes node affinity scheduling rules for the pod."
5168        },
5169        "podAffinity": {
5170          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinity",
5171          "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
5172        },
5173        "podAntiAffinity": {
5174          "$ref": "#/definitions/io.k8s.api.core.v1.PodAntiAffinity",
5175          "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
5176        }
5177      },
5178      "type": "object"
5179    },
5180    "io.k8s.api.core.v1.AttachedVolume": {
5181      "description": "AttachedVolume describes a volume attached to a node",
5182      "properties": {
5183        "devicePath": {
5184          "description": "DevicePath represents the device path where the volume should be available",
5185          "type": "string"
5186        },
5187        "name": {
5188          "description": "Name of the attached volume",
5189          "type": "string"
5190        }
5191      },
5192      "required": [
5193        "name",
5194        "devicePath"
5195      ],
5196      "type": "object"
5197    },
5198    "io.k8s.api.core.v1.AzureDiskVolumeSource": {
5199      "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
5200      "properties": {
5201        "cachingMode": {
5202          "description": "Host Caching mode: None, Read Only, Read Write.",
5203          "type": "string"
5204        },
5205        "diskName": {
5206          "description": "The Name of the data disk in the blob storage",
5207          "type": "string"
5208        },
5209        "diskURI": {
5210          "description": "The URI the data disk in the blob storage",
5211          "type": "string"
5212        },
5213        "fsType": {
5214          "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.",
5215          "type": "string"
5216        },
5217        "kind": {
5218          "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",
5219          "type": "string"
5220        },
5221        "readOnly": {
5222          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5223          "type": "boolean"
5224        }
5225      },
5226      "required": [
5227        "diskName",
5228        "diskURI"
5229      ],
5230      "type": "object"
5231    },
5232    "io.k8s.api.core.v1.AzureFilePersistentVolumeSource": {
5233      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
5234      "properties": {
5235        "readOnly": {
5236          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5237          "type": "boolean"
5238        },
5239        "secretName": {
5240          "description": "the name of secret that contains Azure Storage Account Name and Key",
5241          "type": "string"
5242        },
5243        "secretNamespace": {
5244          "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
5245          "type": "string"
5246        },
5247        "shareName": {
5248          "description": "Share Name",
5249          "type": "string"
5250        }
5251      },
5252      "required": [
5253        "secretName",
5254        "shareName"
5255      ],
5256      "type": "object"
5257    },
5258    "io.k8s.api.core.v1.AzureFileVolumeSource": {
5259      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
5260      "properties": {
5261        "readOnly": {
5262          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5263          "type": "boolean"
5264        },
5265        "secretName": {
5266          "description": "the name of secret that contains Azure Storage Account Name and Key",
5267          "type": "string"
5268        },
5269        "shareName": {
5270          "description": "Share Name",
5271          "type": "string"
5272        }
5273      },
5274      "required": [
5275        "secretName",
5276        "shareName"
5277      ],
5278      "type": "object"
5279    },
5280    "io.k8s.api.core.v1.Binding": {
5281      "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.",
5282      "properties": {
5283        "apiVersion": {
5284          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5285          "type": "string"
5286        },
5287        "kind": {
5288          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5289          "type": "string"
5290        },
5291        "metadata": {
5292          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5293          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5294        },
5295        "target": {
5296          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
5297          "description": "The target object that you want to bind to the standard object."
5298        }
5299      },
5300      "required": [
5301        "target"
5302      ],
5303      "type": "object",
5304      "x-kubernetes-group-version-kind": [
5305        {
5306          "group": "",
5307          "kind": "Binding",
5308          "version": "v1"
5309        }
5310      ]
5311    },
5312    "io.k8s.api.core.v1.CSIPersistentVolumeSource": {
5313      "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)",
5314      "properties": {
5315        "controllerExpandSecretRef": {
5316          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5317          "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."
5318        },
5319        "controllerPublishSecretRef": {
5320          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5321          "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."
5322        },
5323        "driver": {
5324          "description": "Driver is the name of the driver to use for this volume. Required.",
5325          "type": "string"
5326        },
5327        "fsType": {
5328          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".",
5329          "type": "string"
5330        },
5331        "nodePublishSecretRef": {
5332          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5333          "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."
5334        },
5335        "nodeStageSecretRef": {
5336          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5337          "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."
5338        },
5339        "readOnly": {
5340          "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
5341          "type": "boolean"
5342        },
5343        "volumeAttributes": {
5344          "additionalProperties": {
5345            "type": "string"
5346          },
5347          "description": "Attributes of the volume to publish.",
5348          "type": "object"
5349        },
5350        "volumeHandle": {
5351          "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.",
5352          "type": "string"
5353        }
5354      },
5355      "required": [
5356        "driver",
5357        "volumeHandle"
5358      ],
5359      "type": "object"
5360    },
5361    "io.k8s.api.core.v1.CSIVolumeSource": {
5362      "description": "Represents a source location of a volume to mount, managed by an external CSI driver",
5363      "properties": {
5364        "driver": {
5365          "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.",
5366          "type": "string"
5367        },
5368        "fsType": {
5369          "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.",
5370          "type": "string"
5371        },
5372        "nodePublishSecretRef": {
5373          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
5374          "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."
5375        },
5376        "readOnly": {
5377          "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
5378          "type": "boolean"
5379        },
5380        "volumeAttributes": {
5381          "additionalProperties": {
5382            "type": "string"
5383          },
5384          "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
5385          "type": "object"
5386        }
5387      },
5388      "required": [
5389        "driver"
5390      ],
5391      "type": "object"
5392    },
5393    "io.k8s.api.core.v1.Capabilities": {
5394      "description": "Adds and removes POSIX capabilities from running containers.",
5395      "properties": {
5396        "add": {
5397          "description": "Added capabilities",
5398          "items": {
5399            "type": "string"
5400          },
5401          "type": "array"
5402        },
5403        "drop": {
5404          "description": "Removed capabilities",
5405          "items": {
5406            "type": "string"
5407          },
5408          "type": "array"
5409        }
5410      },
5411      "type": "object"
5412    },
5413    "io.k8s.api.core.v1.CephFSPersistentVolumeSource": {
5414      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
5415      "properties": {
5416        "monitors": {
5417          "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5418          "items": {
5419            "type": "string"
5420          },
5421          "type": "array"
5422        },
5423        "path": {
5424          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
5425          "type": "string"
5426        },
5427        "readOnly": {
5428          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5429          "type": "boolean"
5430        },
5431        "secretFile": {
5432          "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5433          "type": "string"
5434        },
5435        "secretRef": {
5436          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5437          "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
5438        },
5439        "user": {
5440          "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5441          "type": "string"
5442        }
5443      },
5444      "required": [
5445        "monitors"
5446      ],
5447      "type": "object"
5448    },
5449    "io.k8s.api.core.v1.CephFSVolumeSource": {
5450      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
5451      "properties": {
5452        "monitors": {
5453          "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5454          "items": {
5455            "type": "string"
5456          },
5457          "type": "array"
5458        },
5459        "path": {
5460          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
5461          "type": "string"
5462        },
5463        "readOnly": {
5464          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5465          "type": "boolean"
5466        },
5467        "secretFile": {
5468          "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5469          "type": "string"
5470        },
5471        "secretRef": {
5472          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
5473          "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
5474        },
5475        "user": {
5476          "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5477          "type": "string"
5478        }
5479      },
5480      "required": [
5481        "monitors"
5482      ],
5483      "type": "object"
5484    },
5485    "io.k8s.api.core.v1.CinderPersistentVolumeSource": {
5486      "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.",
5487      "properties": {
5488        "fsType": {
5489          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5490          "type": "string"
5491        },
5492        "readOnly": {
5493          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5494          "type": "boolean"
5495        },
5496        "secretRef": {
5497          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5498          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
5499        },
5500        "volumeID": {
5501          "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5502          "type": "string"
5503        }
5504      },
5505      "required": [
5506        "volumeID"
5507      ],
5508      "type": "object"
5509    },
5510    "io.k8s.api.core.v1.CinderVolumeSource": {
5511      "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.",
5512      "properties": {
5513        "fsType": {
5514          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5515          "type": "string"
5516        },
5517        "readOnly": {
5518          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5519          "type": "boolean"
5520        },
5521        "secretRef": {
5522          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
5523          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
5524        },
5525        "volumeID": {
5526          "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5527          "type": "string"
5528        }
5529      },
5530      "required": [
5531        "volumeID"
5532      ],
5533      "type": "object"
5534    },
5535    "io.k8s.api.core.v1.ClientIPConfig": {
5536      "description": "ClientIPConfig represents the configurations of Client IP based session affinity.",
5537      "properties": {
5538        "timeoutSeconds": {
5539          "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).",
5540          "format": "int32",
5541          "type": "integer"
5542        }
5543      },
5544      "type": "object"
5545    },
5546    "io.k8s.api.core.v1.ComponentCondition": {
5547      "description": "Information about the condition of a component.",
5548      "properties": {
5549        "error": {
5550          "description": "Condition error code for a component. For example, a health check error code.",
5551          "type": "string"
5552        },
5553        "message": {
5554          "description": "Message about the condition for a component. For example, information about a health check.",
5555          "type": "string"
5556        },
5557        "status": {
5558          "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
5559          "type": "string"
5560        },
5561        "type": {
5562          "description": "Type of condition for a component. Valid value: \"Healthy\"",
5563          "type": "string"
5564        }
5565      },
5566      "required": [
5567        "type",
5568        "status"
5569      ],
5570      "type": "object"
5571    },
5572    "io.k8s.api.core.v1.ComponentStatus": {
5573      "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+",
5574      "properties": {
5575        "apiVersion": {
5576          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5577          "type": "string"
5578        },
5579        "conditions": {
5580          "description": "List of component conditions observed",
5581          "items": {
5582            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentCondition"
5583          },
5584          "type": "array",
5585          "x-kubernetes-patch-merge-key": "type",
5586          "x-kubernetes-patch-strategy": "merge"
5587        },
5588        "kind": {
5589          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5590          "type": "string"
5591        },
5592        "metadata": {
5593          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5594          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5595        }
5596      },
5597      "type": "object",
5598      "x-kubernetes-group-version-kind": [
5599        {
5600          "group": "",
5601          "kind": "ComponentStatus",
5602          "version": "v1"
5603        }
5604      ]
5605    },
5606    "io.k8s.api.core.v1.ComponentStatusList": {
5607      "description": "Status of all the conditions for the component as a list of ComponentStatus objects. Deprecated: This API is deprecated in v1.19+",
5608      "properties": {
5609        "apiVersion": {
5610          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5611          "type": "string"
5612        },
5613        "items": {
5614          "description": "List of ComponentStatus objects.",
5615          "items": {
5616            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
5617          },
5618          "type": "array"
5619        },
5620        "kind": {
5621          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5622          "type": "string"
5623        },
5624        "metadata": {
5625          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5626          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
5627        }
5628      },
5629      "required": [
5630        "items"
5631      ],
5632      "type": "object",
5633      "x-kubernetes-group-version-kind": [
5634        {
5635          "group": "",
5636          "kind": "ComponentStatusList",
5637          "version": "v1"
5638        }
5639      ]
5640    },
5641    "io.k8s.api.core.v1.ConfigMap": {
5642      "description": "ConfigMap holds configuration data for pods to consume.",
5643      "properties": {
5644        "apiVersion": {
5645          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5646          "type": "string"
5647        },
5648        "binaryData": {
5649          "additionalProperties": {
5650            "format": "byte",
5651            "type": "string"
5652          },
5653          "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.",
5654          "type": "object"
5655        },
5656        "data": {
5657          "additionalProperties": {
5658            "type": "string"
5659          },
5660          "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.",
5661          "type": "object"
5662        },
5663        "immutable": {
5664          "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.",
5665          "type": "boolean"
5666        },
5667        "kind": {
5668          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5669          "type": "string"
5670        },
5671        "metadata": {
5672          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5673          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5674        }
5675      },
5676      "type": "object",
5677      "x-kubernetes-group-version-kind": [
5678        {
5679          "group": "",
5680          "kind": "ConfigMap",
5681          "version": "v1"
5682        }
5683      ]
5684    },
5685    "io.k8s.api.core.v1.ConfigMapEnvSource": {
5686      "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.",
5687      "properties": {
5688        "name": {
5689          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5690          "type": "string"
5691        },
5692        "optional": {
5693          "description": "Specify whether the ConfigMap must be defined",
5694          "type": "boolean"
5695        }
5696      },
5697      "type": "object"
5698    },
5699    "io.k8s.api.core.v1.ConfigMapKeySelector": {
5700      "description": "Selects a key from a ConfigMap.",
5701      "properties": {
5702        "key": {
5703          "description": "The key to select.",
5704          "type": "string"
5705        },
5706        "name": {
5707          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5708          "type": "string"
5709        },
5710        "optional": {
5711          "description": "Specify whether the ConfigMap or its key must be defined",
5712          "type": "boolean"
5713        }
5714      },
5715      "required": [
5716        "key"
5717      ],
5718      "type": "object"
5719    },
5720    "io.k8s.api.core.v1.ConfigMapList": {
5721      "description": "ConfigMapList is a resource containing a list of ConfigMap objects.",
5722      "properties": {
5723        "apiVersion": {
5724          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5725          "type": "string"
5726        },
5727        "items": {
5728          "description": "Items is the list of ConfigMaps.",
5729          "items": {
5730            "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
5731          },
5732          "type": "array"
5733        },
5734        "kind": {
5735          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5736          "type": "string"
5737        },
5738        "metadata": {
5739          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5740          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5741        }
5742      },
5743      "required": [
5744        "items"
5745      ],
5746      "type": "object",
5747      "x-kubernetes-group-version-kind": [
5748        {
5749          "group": "",
5750          "kind": "ConfigMapList",
5751          "version": "v1"
5752        }
5753      ]
5754    },
5755    "io.k8s.api.core.v1.ConfigMapNodeConfigSource": {
5756      "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.",
5757      "properties": {
5758        "kubeletConfigKey": {
5759          "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.",
5760          "type": "string"
5761        },
5762        "name": {
5763          "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.",
5764          "type": "string"
5765        },
5766        "namespace": {
5767          "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.",
5768          "type": "string"
5769        },
5770        "resourceVersion": {
5771          "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
5772          "type": "string"
5773        },
5774        "uid": {
5775          "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
5776          "type": "string"
5777        }
5778      },
5779      "required": [
5780        "namespace",
5781        "name",
5782        "kubeletConfigKey"
5783      ],
5784      "type": "object"
5785    },
5786    "io.k8s.api.core.v1.ConfigMapProjection": {
5787      "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.",
5788      "properties": {
5789        "items": {
5790          "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 '..'.",
5791          "items": {
5792            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
5793          },
5794          "type": "array"
5795        },
5796        "name": {
5797          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5798          "type": "string"
5799        },
5800        "optional": {
5801          "description": "Specify whether the ConfigMap or its keys must be defined",
5802          "type": "boolean"
5803        }
5804      },
5805      "type": "object"
5806    },
5807    "io.k8s.api.core.v1.ConfigMapVolumeSource": {
5808      "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.",
5809      "properties": {
5810        "defaultMode": {
5811          "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
5812          "format": "int32",
5813          "type": "integer"
5814        },
5815        "items": {
5816          "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 '..'.",
5817          "items": {
5818            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
5819          },
5820          "type": "array"
5821        },
5822        "name": {
5823          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5824          "type": "string"
5825        },
5826        "optional": {
5827          "description": "Specify whether the ConfigMap or its keys must be defined",
5828          "type": "boolean"
5829        }
5830      },
5831      "type": "object"
5832    },
5833    "io.k8s.api.core.v1.Container": {
5834      "description": "A single application container that you want to run within a pod.",
5835      "properties": {
5836        "args": {
5837          "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",
5838          "items": {
5839            "type": "string"
5840          },
5841          "type": "array"
5842        },
5843        "command": {
5844          "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",
5845          "items": {
5846            "type": "string"
5847          },
5848          "type": "array"
5849        },
5850        "env": {
5851          "description": "List of environment variables to set in the container. Cannot be updated.",
5852          "items": {
5853            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
5854          },
5855          "type": "array",
5856          "x-kubernetes-patch-merge-key": "name",
5857          "x-kubernetes-patch-strategy": "merge"
5858        },
5859        "envFrom": {
5860          "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.",
5861          "items": {
5862            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
5863          },
5864          "type": "array"
5865        },
5866        "image": {
5867          "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.",
5868          "type": "string"
5869        },
5870        "imagePullPolicy": {
5871          "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",
5872          "type": "string"
5873        },
5874        "lifecycle": {
5875          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
5876          "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
5877        },
5878        "livenessProbe": {
5879          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5880          "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"
5881        },
5882        "name": {
5883          "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.",
5884          "type": "string"
5885        },
5886        "ports": {
5887          "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.",
5888          "items": {
5889            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
5890          },
5891          "type": "array",
5892          "x-kubernetes-list-map-keys": [
5893            "containerPort",
5894            "protocol"
5895          ],
5896          "x-kubernetes-list-type": "map",
5897          "x-kubernetes-patch-merge-key": "containerPort",
5898          "x-kubernetes-patch-strategy": "merge"
5899        },
5900        "readinessProbe": {
5901          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5902          "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"
5903        },
5904        "resources": {
5905          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
5906          "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/"
5907        },
5908        "securityContext": {
5909          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
5910          "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/"
5911        },
5912        "startupProbe": {
5913          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5914          "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
5915        },
5916        "stdin": {
5917          "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.",
5918          "type": "boolean"
5919        },
5920        "stdinOnce": {
5921          "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",
5922          "type": "boolean"
5923        },
5924        "terminationMessagePath": {
5925          "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.",
5926          "type": "string"
5927        },
5928        "terminationMessagePolicy": {
5929          "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.",
5930          "type": "string"
5931        },
5932        "tty": {
5933          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
5934          "type": "boolean"
5935        },
5936        "volumeDevices": {
5937          "description": "volumeDevices is the list of block devices to be used by the container.",
5938          "items": {
5939            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
5940          },
5941          "type": "array",
5942          "x-kubernetes-patch-merge-key": "devicePath",
5943          "x-kubernetes-patch-strategy": "merge"
5944        },
5945        "volumeMounts": {
5946          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
5947          "items": {
5948            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
5949          },
5950          "type": "array",
5951          "x-kubernetes-patch-merge-key": "mountPath",
5952          "x-kubernetes-patch-strategy": "merge"
5953        },
5954        "workingDir": {
5955          "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.",
5956          "type": "string"
5957        }
5958      },
5959      "required": [
5960        "name"
5961      ],
5962      "type": "object"
5963    },
5964    "io.k8s.api.core.v1.ContainerImage": {
5965      "description": "Describe a container image",
5966      "properties": {
5967        "names": {
5968          "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\"]",
5969          "items": {
5970            "type": "string"
5971          },
5972          "type": "array"
5973        },
5974        "sizeBytes": {
5975          "description": "The size of the image in bytes.",
5976          "format": "int64",
5977          "type": "integer"
5978        }
5979      },
5980      "required": [
5981        "names"
5982      ],
5983      "type": "object"
5984    },
5985    "io.k8s.api.core.v1.ContainerPort": {
5986      "description": "ContainerPort represents a network port in a single container.",
5987      "properties": {
5988        "containerPort": {
5989          "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
5990          "format": "int32",
5991          "type": "integer"
5992        },
5993        "hostIP": {
5994          "description": "What host IP to bind the external port to.",
5995          "type": "string"
5996        },
5997        "hostPort": {
5998          "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.",
5999          "format": "int32",
6000          "type": "integer"
6001        },
6002        "name": {
6003          "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.",
6004          "type": "string"
6005        },
6006        "protocol": {
6007          "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
6008          "type": "string"
6009        }
6010      },
6011      "required": [
6012        "containerPort"
6013      ],
6014      "type": "object"
6015    },
6016    "io.k8s.api.core.v1.ContainerState": {
6017      "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.",
6018      "properties": {
6019        "running": {
6020          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateRunning",
6021          "description": "Details about a running container"
6022        },
6023        "terminated": {
6024          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateTerminated",
6025          "description": "Details about a terminated container"
6026        },
6027        "waiting": {
6028          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateWaiting",
6029          "description": "Details about a waiting container"
6030        }
6031      },
6032      "type": "object"
6033    },
6034    "io.k8s.api.core.v1.ContainerStateRunning": {
6035      "description": "ContainerStateRunning is a running state of a container.",
6036      "properties": {
6037        "startedAt": {
6038          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6039          "description": "Time at which the container was last (re-)started"
6040        }
6041      },
6042      "type": "object"
6043    },
6044    "io.k8s.api.core.v1.ContainerStateTerminated": {
6045      "description": "ContainerStateTerminated is a terminated state of a container.",
6046      "properties": {
6047        "containerID": {
6048          "description": "Container's ID in the format 'docker://<container_id>'",
6049          "type": "string"
6050        },
6051        "exitCode": {
6052          "description": "Exit status from the last termination of the container",
6053          "format": "int32",
6054          "type": "integer"
6055        },
6056        "finishedAt": {
6057          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6058          "description": "Time at which the container last terminated"
6059        },
6060        "message": {
6061          "description": "Message regarding the last termination of the container",
6062          "type": "string"
6063        },
6064        "reason": {
6065          "description": "(brief) reason from the last termination of the container",
6066          "type": "string"
6067        },
6068        "signal": {
6069          "description": "Signal from the last termination of the container",
6070          "format": "int32",
6071          "type": "integer"
6072        },
6073        "startedAt": {
6074          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6075          "description": "Time at which previous execution of the container started"
6076        }
6077      },
6078      "required": [
6079        "exitCode"
6080      ],
6081      "type": "object"
6082    },
6083    "io.k8s.api.core.v1.ContainerStateWaiting": {
6084      "description": "ContainerStateWaiting is a waiting state of a container.",
6085      "properties": {
6086        "message": {
6087          "description": "Message regarding why the container is not yet running.",
6088          "type": "string"
6089        },
6090        "reason": {
6091          "description": "(brief) reason the container is not yet running.",
6092          "type": "string"
6093        }
6094      },
6095      "type": "object"
6096    },
6097    "io.k8s.api.core.v1.ContainerStatus": {
6098      "description": "ContainerStatus contains details for the current status of this container.",
6099      "properties": {
6100        "containerID": {
6101          "description": "Container's ID in the format 'docker://<container_id>'.",
6102          "type": "string"
6103        },
6104        "image": {
6105          "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images",
6106          "type": "string"
6107        },
6108        "imageID": {
6109          "description": "ImageID of the container's image.",
6110          "type": "string"
6111        },
6112        "lastState": {
6113          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
6114          "description": "Details about the container's last termination condition."
6115        },
6116        "name": {
6117          "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.",
6118          "type": "string"
6119        },
6120        "ready": {
6121          "description": "Specifies whether the container has passed its readiness probe.",
6122          "type": "boolean"
6123        },
6124        "restartCount": {
6125          "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.",
6126          "format": "int32",
6127          "type": "integer"
6128        },
6129        "started": {
6130          "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.",
6131          "type": "boolean"
6132        },
6133        "state": {
6134          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
6135          "description": "Details about the container's current condition."
6136        }
6137      },
6138      "required": [
6139        "name",
6140        "ready",
6141        "restartCount",
6142        "image",
6143        "imageID"
6144      ],
6145      "type": "object"
6146    },
6147    "io.k8s.api.core.v1.DaemonEndpoint": {
6148      "description": "DaemonEndpoint contains information about a single Daemon endpoint.",
6149      "properties": {
6150        "Port": {
6151          "description": "Port number of the given endpoint.",
6152          "format": "int32",
6153          "type": "integer"
6154        }
6155      },
6156      "required": [
6157        "Port"
6158      ],
6159      "type": "object"
6160    },
6161    "io.k8s.api.core.v1.DownwardAPIProjection": {
6162      "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.",
6163      "properties": {
6164        "items": {
6165          "description": "Items is a list of DownwardAPIVolume file",
6166          "items": {
6167            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
6168          },
6169          "type": "array"
6170        }
6171      },
6172      "type": "object"
6173    },
6174    "io.k8s.api.core.v1.DownwardAPIVolumeFile": {
6175      "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
6176      "properties": {
6177        "fieldRef": {
6178          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
6179          "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
6180        },
6181        "mode": {
6182          "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
6183          "format": "int32",
6184          "type": "integer"
6185        },
6186        "path": {
6187          "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 '..'",
6188          "type": "string"
6189        },
6190        "resourceFieldRef": {
6191          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
6192          "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
6193        }
6194      },
6195      "required": [
6196        "path"
6197      ],
6198      "type": "object"
6199    },
6200    "io.k8s.api.core.v1.DownwardAPIVolumeSource": {
6201      "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
6202      "properties": {
6203        "defaultMode": {
6204          "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
6205          "format": "int32",
6206          "type": "integer"
6207        },
6208        "items": {
6209          "description": "Items is a list of downward API volume file",
6210          "items": {
6211            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
6212          },
6213          "type": "array"
6214        }
6215      },
6216      "type": "object"
6217    },
6218    "io.k8s.api.core.v1.EmptyDirVolumeSource": {
6219      "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
6220      "properties": {
6221        "medium": {
6222          "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",
6223          "type": "string"
6224        },
6225        "sizeLimit": {
6226          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
6227          "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"
6228        }
6229      },
6230      "type": "object"
6231    },
6232    "io.k8s.api.core.v1.EndpointAddress": {
6233      "description": "EndpointAddress is a tuple that describes single IP address.",
6234      "properties": {
6235        "hostname": {
6236          "description": "The Hostname of this endpoint",
6237          "type": "string"
6238        },
6239        "ip": {
6240          "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.",
6241          "type": "string"
6242        },
6243        "nodeName": {
6244          "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
6245          "type": "string"
6246        },
6247        "targetRef": {
6248          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
6249          "description": "Reference to object providing the endpoint."
6250        }
6251      },
6252      "required": [
6253        "ip"
6254      ],
6255      "type": "object"
6256    },
6257    "io.k8s.api.core.v1.EndpointPort": {
6258      "description": "EndpointPort is a tuple that describes a single port.",
6259      "properties": {
6260        "appProtocol": {
6261          "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. This is a beta field that is guarded by the ServiceAppProtocol feature gate and enabled by default.",
6262          "type": "string"
6263        },
6264        "name": {
6265          "description": "The name of this port.  This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.",
6266          "type": "string"
6267        },
6268        "port": {
6269          "description": "The port number of the endpoint.",
6270          "format": "int32",
6271          "type": "integer"
6272        },
6273        "protocol": {
6274          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
6275          "type": "string"
6276        }
6277      },
6278      "required": [
6279        "port"
6280      ],
6281      "type": "object"
6282    },
6283    "io.k8s.api.core.v1.EndpointSubset": {
6284      "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 ]",
6285      "properties": {
6286        "addresses": {
6287          "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.",
6288          "items": {
6289            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
6290          },
6291          "type": "array"
6292        },
6293        "notReadyAddresses": {
6294          "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.",
6295          "items": {
6296            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
6297          },
6298          "type": "array"
6299        },
6300        "ports": {
6301          "description": "Port numbers available on the related IP addresses.",
6302          "items": {
6303            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointPort"
6304          },
6305          "type": "array"
6306        }
6307      },
6308      "type": "object"
6309    },
6310    "io.k8s.api.core.v1.Endpoints": {
6311      "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 ]",
6312      "properties": {
6313        "apiVersion": {
6314          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6315          "type": "string"
6316        },
6317        "kind": {
6318          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6319          "type": "string"
6320        },
6321        "metadata": {
6322          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6323          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6324        },
6325        "subsets": {
6326          "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.",
6327          "items": {
6328            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointSubset"
6329          },
6330          "type": "array"
6331        }
6332      },
6333      "type": "object",
6334      "x-kubernetes-group-version-kind": [
6335        {
6336          "group": "",
6337          "kind": "Endpoints",
6338          "version": "v1"
6339        }
6340      ]
6341    },
6342    "io.k8s.api.core.v1.EndpointsList": {
6343      "description": "EndpointsList is a list of endpoints.",
6344      "properties": {
6345        "apiVersion": {
6346          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6347          "type": "string"
6348        },
6349        "items": {
6350          "description": "List of endpoints.",
6351          "items": {
6352            "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
6353          },
6354          "type": "array"
6355        },
6356        "kind": {
6357          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6358          "type": "string"
6359        },
6360        "metadata": {
6361          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6362          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6363        }
6364      },
6365      "required": [
6366        "items"
6367      ],
6368      "type": "object",
6369      "x-kubernetes-group-version-kind": [
6370        {
6371          "group": "",
6372          "kind": "EndpointsList",
6373          "version": "v1"
6374        }
6375      ]
6376    },
6377    "io.k8s.api.core.v1.EnvFromSource": {
6378      "description": "EnvFromSource represents the source of a set of ConfigMaps",
6379      "properties": {
6380        "configMapRef": {
6381          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource",
6382          "description": "The ConfigMap to select from"
6383        },
6384        "prefix": {
6385          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
6386          "type": "string"
6387        },
6388        "secretRef": {
6389          "$ref": "#/definitions/io.k8s.api.core.v1.SecretEnvSource",
6390          "description": "The Secret to select from"
6391        }
6392      },
6393      "type": "object"
6394    },
6395    "io.k8s.api.core.v1.EnvVar": {
6396      "description": "EnvVar represents an environment variable present in a Container.",
6397      "properties": {
6398        "name": {
6399          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
6400          "type": "string"
6401        },
6402        "value": {
6403          "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 \"\".",
6404          "type": "string"
6405        },
6406        "valueFrom": {
6407          "$ref": "#/definitions/io.k8s.api.core.v1.EnvVarSource",
6408          "description": "Source for the environment variable's value. Cannot be used if value is not empty."
6409        }
6410      },
6411      "required": [
6412        "name"
6413      ],
6414      "type": "object"
6415    },
6416    "io.k8s.api.core.v1.EnvVarSource": {
6417      "description": "EnvVarSource represents a source for the value of an EnvVar.",
6418      "properties": {
6419        "configMapKeyRef": {
6420          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector",
6421          "description": "Selects a key of a ConfigMap."
6422        },
6423        "fieldRef": {
6424          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
6425          "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['<KEY>']`, `metadata.annotations['<KEY>']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
6426        },
6427        "resourceFieldRef": {
6428          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
6429          "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."
6430        },
6431        "secretKeyRef": {
6432          "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector",
6433          "description": "Selects a key of a secret in the pod's namespace"
6434        }
6435      },
6436      "type": "object"
6437    },
6438    "io.k8s.api.core.v1.EphemeralContainer": {
6439      "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
6440      "properties": {
6441        "args": {
6442          "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",
6443          "items": {
6444            "type": "string"
6445          },
6446          "type": "array"
6447        },
6448        "command": {
6449          "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",
6450          "items": {
6451            "type": "string"
6452          },
6453          "type": "array"
6454        },
6455        "env": {
6456          "description": "List of environment variables to set in the container. Cannot be updated.",
6457          "items": {
6458            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
6459          },
6460          "type": "array",
6461          "x-kubernetes-patch-merge-key": "name",
6462          "x-kubernetes-patch-strategy": "merge"
6463        },
6464        "envFrom": {
6465          "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.",
6466          "items": {
6467            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
6468          },
6469          "type": "array"
6470        },
6471        "image": {
6472          "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
6473          "type": "string"
6474        },
6475        "imagePullPolicy": {
6476          "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",
6477          "type": "string"
6478        },
6479        "lifecycle": {
6480          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
6481          "description": "Lifecycle is not allowed for ephemeral containers."
6482        },
6483        "livenessProbe": {
6484          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
6485          "description": "Probes are not allowed for ephemeral containers."
6486        },
6487        "name": {
6488          "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
6489          "type": "string"
6490        },
6491        "ports": {
6492          "description": "Ports are not allowed for ephemeral containers.",
6493          "items": {
6494            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
6495          },
6496          "type": "array"
6497        },
6498        "readinessProbe": {
6499          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
6500          "description": "Probes are not allowed for ephemeral containers."
6501        },
6502        "resources": {
6503          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
6504          "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
6505        },
6506        "securityContext": {
6507          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
6508          "description": "SecurityContext is not allowed for ephemeral containers."
6509        },
6510        "startupProbe": {
6511          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
6512          "description": "Probes are not allowed for ephemeral containers."
6513        },
6514        "stdin": {
6515          "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.",
6516          "type": "boolean"
6517        },
6518        "stdinOnce": {
6519          "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",
6520          "type": "boolean"
6521        },
6522        "targetContainerName": {
6523          "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.",
6524          "type": "string"
6525        },
6526        "terminationMessagePath": {
6527          "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.",
6528          "type": "string"
6529        },
6530        "terminationMessagePolicy": {
6531          "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.",
6532          "type": "string"
6533        },
6534        "tty": {
6535          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
6536          "type": "boolean"
6537        },
6538        "volumeDevices": {
6539          "description": "volumeDevices is the list of block devices to be used by the container.",
6540          "items": {
6541            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
6542          },
6543          "type": "array",
6544          "x-kubernetes-patch-merge-key": "devicePath",
6545          "x-kubernetes-patch-strategy": "merge"
6546        },
6547        "volumeMounts": {
6548          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
6549          "items": {
6550            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
6551          },
6552          "type": "array",
6553          "x-kubernetes-patch-merge-key": "mountPath",
6554          "x-kubernetes-patch-strategy": "merge"
6555        },
6556        "workingDir": {
6557          "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.",
6558          "type": "string"
6559        }
6560      },
6561      "required": [
6562        "name"
6563      ],
6564      "type": "object"
6565    },
6566    "io.k8s.api.core.v1.EphemeralContainers": {
6567      "description": "A list of ephemeral containers used with the Pod ephemeralcontainers subresource.",
6568      "properties": {
6569        "apiVersion": {
6570          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6571          "type": "string"
6572        },
6573        "ephemeralContainers": {
6574          "description": "A list of ephemeral containers associated with this pod. New ephemeral containers may be appended to this list, but existing ephemeral containers may not be removed or modified.",
6575          "items": {
6576            "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer"
6577          },
6578          "type": "array",
6579          "x-kubernetes-patch-merge-key": "name",
6580          "x-kubernetes-patch-strategy": "merge"
6581        },
6582        "kind": {
6583          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6584          "type": "string"
6585        },
6586        "metadata": {
6587          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
6588        }
6589      },
6590      "required": [
6591        "ephemeralContainers"
6592      ],
6593      "type": "object",
6594      "x-kubernetes-group-version-kind": [
6595        {
6596          "group": "",
6597          "kind": "EphemeralContainers",
6598          "version": "v1"
6599        }
6600      ]
6601    },
6602    "io.k8s.api.core.v1.EphemeralVolumeSource": {
6603      "description": "Represents an ephemeral volume that is handled by a normal storage driver.",
6604      "properties": {
6605        "readOnly": {
6606          "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
6607          "type": "boolean"
6608        },
6609        "volumeClaimTemplate": {
6610          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimTemplate",
6611          "description": "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster.\n\nThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been created.\n\nRequired, must not be nil."
6612        }
6613      },
6614      "type": "object"
6615    },
6616    "io.k8s.api.core.v1.Event": {
6617      "description": "Event is a report of an event somewhere in the cluster.  Events have a limited retention time and triggers and messages may evolve with time.  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason.  Events should be treated as informative, best-effort, supplemental data.",
6618      "properties": {
6619        "action": {
6620          "description": "What action was taken/failed regarding to the Regarding object.",
6621          "type": "string"
6622        },
6623        "apiVersion": {
6624          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6625          "type": "string"
6626        },
6627        "count": {
6628          "description": "The number of times this event has occurred.",
6629          "format": "int32",
6630          "type": "integer"
6631        },
6632        "eventTime": {
6633          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6634          "description": "Time when this Event was first observed."
6635        },
6636        "firstTimestamp": {
6637          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6638          "description": "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)"
6639        },
6640        "involvedObject": {
6641          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
6642          "description": "The object that this event is about."
6643        },
6644        "kind": {
6645          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6646          "type": "string"
6647        },
6648        "lastTimestamp": {
6649          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6650          "description": "The time at which the most recent occurrence of this event was recorded."
6651        },
6652        "message": {
6653          "description": "A human-readable description of the status of this operation.",
6654          "type": "string"
6655        },
6656        "metadata": {
6657          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6658          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6659        },
6660        "reason": {
6661          "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.",
6662          "type": "string"
6663        },
6664        "related": {
6665          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
6666          "description": "Optional secondary object for more complex actions."
6667        },
6668        "reportingComponent": {
6669          "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.",
6670          "type": "string"
6671        },
6672        "reportingInstance": {
6673          "description": "ID of the controller instance, e.g. `kubelet-xyzf`.",
6674          "type": "string"
6675        },
6676        "series": {
6677          "$ref": "#/definitions/io.k8s.api.core.v1.EventSeries",
6678          "description": "Data about the Event series this event represents or nil if it's a singleton Event."
6679        },
6680        "source": {
6681          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
6682          "description": "The component reporting this event. Should be a short machine understandable string."
6683        },
6684        "type": {
6685          "description": "Type of this event (Normal, Warning), new types could be added in the future",
6686          "type": "string"
6687        }
6688      },
6689      "required": [
6690        "metadata",
6691        "involvedObject"
6692      ],
6693      "type": "object",
6694      "x-kubernetes-group-version-kind": [
6695        {
6696          "group": "",
6697          "kind": "Event",
6698          "version": "v1"
6699        }
6700      ]
6701    },
6702    "io.k8s.api.core.v1.EventList": {
6703      "description": "EventList is a list of events.",
6704      "properties": {
6705        "apiVersion": {
6706          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6707          "type": "string"
6708        },
6709        "items": {
6710          "description": "List of events",
6711          "items": {
6712            "$ref": "#/definitions/io.k8s.api.core.v1.Event"
6713          },
6714          "type": "array"
6715        },
6716        "kind": {
6717          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6718          "type": "string"
6719        },
6720        "metadata": {
6721          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6722          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6723        }
6724      },
6725      "required": [
6726        "items"
6727      ],
6728      "type": "object",
6729      "x-kubernetes-group-version-kind": [
6730        {
6731          "group": "",
6732          "kind": "EventList",
6733          "version": "v1"
6734        }
6735      ]
6736    },
6737    "io.k8s.api.core.v1.EventSeries": {
6738      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
6739      "properties": {
6740        "count": {
6741          "description": "Number of occurrences in this series up to the last heartbeat time",
6742          "format": "int32",
6743          "type": "integer"
6744        },
6745        "lastObservedTime": {
6746          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6747          "description": "Time of the last occurrence observed"
6748        }
6749      },
6750      "type": "object"
6751    },
6752    "io.k8s.api.core.v1.EventSource": {
6753      "description": "EventSource contains information for an event.",
6754      "properties": {
6755        "component": {
6756          "description": "Component from which the event is generated.",
6757          "type": "string"
6758        },
6759        "host": {
6760          "description": "Node name on which the event is generated.",
6761          "type": "string"
6762        }
6763      },
6764      "type": "object"
6765    },
6766    "io.k8s.api.core.v1.ExecAction": {
6767      "description": "ExecAction describes a \"run in container\" action.",
6768      "properties": {
6769        "command": {
6770          "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.",
6771          "items": {
6772            "type": "string"
6773          },
6774          "type": "array"
6775        }
6776      },
6777      "type": "object"
6778    },
6779    "io.k8s.api.core.v1.FCVolumeSource": {
6780      "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.",
6781      "properties": {
6782        "fsType": {
6783          "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.",
6784          "type": "string"
6785        },
6786        "lun": {
6787          "description": "Optional: FC target lun number",
6788          "format": "int32",
6789          "type": "integer"
6790        },
6791        "readOnly": {
6792          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6793          "type": "boolean"
6794        },
6795        "targetWWNs": {
6796          "description": "Optional: FC target worldwide names (WWNs)",
6797          "items": {
6798            "type": "string"
6799          },
6800          "type": "array"
6801        },
6802        "wwids": {
6803          "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
6804          "items": {
6805            "type": "string"
6806          },
6807          "type": "array"
6808        }
6809      },
6810      "type": "object"
6811    },
6812    "io.k8s.api.core.v1.FlexPersistentVolumeSource": {
6813      "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.",
6814      "properties": {
6815        "driver": {
6816          "description": "Driver is the name of the driver to use for this volume.",
6817          "type": "string"
6818        },
6819        "fsType": {
6820          "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.",
6821          "type": "string"
6822        },
6823        "options": {
6824          "additionalProperties": {
6825            "type": "string"
6826          },
6827          "description": "Optional: Extra command options if any.",
6828          "type": "object"
6829        },
6830        "readOnly": {
6831          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6832          "type": "boolean"
6833        },
6834        "secretRef": {
6835          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6836          "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."
6837        }
6838      },
6839      "required": [
6840        "driver"
6841      ],
6842      "type": "object"
6843    },
6844    "io.k8s.api.core.v1.FlexVolumeSource": {
6845      "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
6846      "properties": {
6847        "driver": {
6848          "description": "Driver is the name of the driver to use for this volume.",
6849          "type": "string"
6850        },
6851        "fsType": {
6852          "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.",
6853          "type": "string"
6854        },
6855        "options": {
6856          "additionalProperties": {
6857            "type": "string"
6858          },
6859          "description": "Optional: Extra command options if any.",
6860          "type": "object"
6861        },
6862        "readOnly": {
6863          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6864          "type": "boolean"
6865        },
6866        "secretRef": {
6867          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
6868          "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."
6869        }
6870      },
6871      "required": [
6872        "driver"
6873      ],
6874      "type": "object"
6875    },
6876    "io.k8s.api.core.v1.FlockerVolumeSource": {
6877      "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.",
6878      "properties": {
6879        "datasetName": {
6880          "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
6881          "type": "string"
6882        },
6883        "datasetUUID": {
6884          "description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
6885          "type": "string"
6886        }
6887      },
6888      "type": "object"
6889    },
6890    "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource": {
6891      "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.",
6892      "properties": {
6893        "fsType": {
6894          "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",
6895          "type": "string"
6896        },
6897        "partition": {
6898          "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",
6899          "format": "int32",
6900          "type": "integer"
6901        },
6902        "pdName": {
6903          "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",
6904          "type": "string"
6905        },
6906        "readOnly": {
6907          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
6908          "type": "boolean"
6909        }
6910      },
6911      "required": [
6912        "pdName"
6913      ],
6914      "type": "object"
6915    },
6916    "io.k8s.api.core.v1.GitRepoVolumeSource": {
6917      "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.",
6918      "properties": {
6919        "directory": {
6920          "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.",
6921          "type": "string"
6922        },
6923        "repository": {
6924          "description": "Repository URL",
6925          "type": "string"
6926        },
6927        "revision": {
6928          "description": "Commit hash for the specified revision.",
6929          "type": "string"
6930        }
6931      },
6932      "required": [
6933        "repository"
6934      ],
6935      "type": "object"
6936    },
6937    "io.k8s.api.core.v1.GlusterfsPersistentVolumeSource": {
6938      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
6939      "properties": {
6940        "endpoints": {
6941          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6942          "type": "string"
6943        },
6944        "endpointsNamespace": {
6945          "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6946          "type": "string"
6947        },
6948        "path": {
6949          "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6950          "type": "string"
6951        },
6952        "readOnly": {
6953          "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6954          "type": "boolean"
6955        }
6956      },
6957      "required": [
6958        "endpoints",
6959        "path"
6960      ],
6961      "type": "object"
6962    },
6963    "io.k8s.api.core.v1.GlusterfsVolumeSource": {
6964      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
6965      "properties": {
6966        "endpoints": {
6967          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6968          "type": "string"
6969        },
6970        "path": {
6971          "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6972          "type": "string"
6973        },
6974        "readOnly": {
6975          "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6976          "type": "boolean"
6977        }
6978      },
6979      "required": [
6980        "endpoints",
6981        "path"
6982      ],
6983      "type": "object"
6984    },
6985    "io.k8s.api.core.v1.HTTPGetAction": {
6986      "description": "HTTPGetAction describes an action based on HTTP Get requests.",
6987      "properties": {
6988        "host": {
6989          "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
6990          "type": "string"
6991        },
6992        "httpHeaders": {
6993          "description": "Custom headers to set in the request. HTTP allows repeated headers.",
6994          "items": {
6995            "$ref": "#/definitions/io.k8s.api.core.v1.HTTPHeader"
6996          },
6997          "type": "array"
6998        },
6999        "path": {
7000          "description": "Path to access on the HTTP server.",
7001          "type": "string"
7002        },
7003        "port": {
7004          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
7005          "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."
7006        },
7007        "scheme": {
7008          "description": "Scheme to use for connecting to the host. Defaults to HTTP.",
7009          "type": "string"
7010        }
7011      },
7012      "required": [
7013        "port"
7014      ],
7015      "type": "object"
7016    },
7017    "io.k8s.api.core.v1.HTTPHeader": {
7018      "description": "HTTPHeader describes a custom header to be used in HTTP probes",
7019      "properties": {
7020        "name": {
7021          "description": "The header field name",
7022          "type": "string"
7023        },
7024        "value": {
7025          "description": "The header field value",
7026          "type": "string"
7027        }
7028      },
7029      "required": [
7030        "name",
7031        "value"
7032      ],
7033      "type": "object"
7034    },
7035    "io.k8s.api.core.v1.Handler": {
7036      "description": "Handler defines a specific action that should be taken",
7037      "properties": {
7038        "exec": {
7039          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
7040          "description": "One and only one of the following should be specified. Exec specifies the action to take."
7041        },
7042        "httpGet": {
7043          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
7044          "description": "HTTPGet specifies the http request to perform."
7045        },
7046        "tcpSocket": {
7047          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
7048          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
7049        }
7050      },
7051      "type": "object"
7052    },
7053    "io.k8s.api.core.v1.HostAlias": {
7054      "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
7055      "properties": {
7056        "hostnames": {
7057          "description": "Hostnames for the above IP address.",
7058          "items": {
7059            "type": "string"
7060          },
7061          "type": "array"
7062        },
7063        "ip": {
7064          "description": "IP address of the host file entry.",
7065          "type": "string"
7066        }
7067      },
7068      "type": "object"
7069    },
7070    "io.k8s.api.core.v1.HostPathVolumeSource": {
7071      "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
7072      "properties": {
7073        "path": {
7074          "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",
7075          "type": "string"
7076        },
7077        "type": {
7078          "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
7079          "type": "string"
7080        }
7081      },
7082      "required": [
7083        "path"
7084      ],
7085      "type": "object"
7086    },
7087    "io.k8s.api.core.v1.ISCSIPersistentVolumeSource": {
7088      "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
7089      "properties": {
7090        "chapAuthDiscovery": {
7091          "description": "whether support iSCSI Discovery CHAP authentication",
7092          "type": "boolean"
7093        },
7094        "chapAuthSession": {
7095          "description": "whether support iSCSI Session CHAP authentication",
7096          "type": "boolean"
7097        },
7098        "fsType": {
7099          "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",
7100          "type": "string"
7101        },
7102        "initiatorName": {
7103          "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.",
7104          "type": "string"
7105        },
7106        "iqn": {
7107          "description": "Target iSCSI Qualified Name.",
7108          "type": "string"
7109        },
7110        "iscsiInterface": {
7111          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
7112          "type": "string"
7113        },
7114        "lun": {
7115          "description": "iSCSI Target Lun number.",
7116          "format": "int32",
7117          "type": "integer"
7118        },
7119        "portals": {
7120          "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).",
7121          "items": {
7122            "type": "string"
7123          },
7124          "type": "array"
7125        },
7126        "readOnly": {
7127          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
7128          "type": "boolean"
7129        },
7130        "secretRef": {
7131          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
7132          "description": "CHAP Secret for iSCSI target and initiator authentication"
7133        },
7134        "targetPortal": {
7135          "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).",
7136          "type": "string"
7137        }
7138      },
7139      "required": [
7140        "targetPortal",
7141        "iqn",
7142        "lun"
7143      ],
7144      "type": "object"
7145    },
7146    "io.k8s.api.core.v1.ISCSIVolumeSource": {
7147      "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
7148      "properties": {
7149        "chapAuthDiscovery": {
7150          "description": "whether support iSCSI Discovery CHAP authentication",
7151          "type": "boolean"
7152        },
7153        "chapAuthSession": {
7154          "description": "whether support iSCSI Session CHAP authentication",
7155          "type": "boolean"
7156        },
7157        "fsType": {
7158          "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",
7159          "type": "string"
7160        },
7161        "initiatorName": {
7162          "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.",
7163          "type": "string"
7164        },
7165        "iqn": {
7166          "description": "Target iSCSI Qualified Name.",
7167          "type": "string"
7168        },
7169        "iscsiInterface": {
7170          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
7171          "type": "string"
7172        },
7173        "lun": {
7174          "description": "iSCSI Target Lun number.",
7175          "format": "int32",
7176          "type": "integer"
7177        },
7178        "portals": {
7179          "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).",
7180          "items": {
7181            "type": "string"
7182          },
7183          "type": "array"
7184        },
7185        "readOnly": {
7186          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
7187          "type": "boolean"
7188        },
7189        "secretRef": {
7190          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
7191          "description": "CHAP Secret for iSCSI target and initiator authentication"
7192        },
7193        "targetPortal": {
7194          "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).",
7195          "type": "string"
7196        }
7197      },
7198      "required": [
7199        "targetPortal",
7200        "iqn",
7201        "lun"
7202      ],
7203      "type": "object"
7204    },
7205    "io.k8s.api.core.v1.KeyToPath": {
7206      "description": "Maps a string key to a path within a volume.",
7207      "properties": {
7208        "key": {
7209          "description": "The key to project.",
7210          "type": "string"
7211        },
7212        "mode": {
7213          "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
7214          "format": "int32",
7215          "type": "integer"
7216        },
7217        "path": {
7218          "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 '..'.",
7219          "type": "string"
7220        }
7221      },
7222      "required": [
7223        "key",
7224        "path"
7225      ],
7226      "type": "object"
7227    },
7228    "io.k8s.api.core.v1.Lifecycle": {
7229      "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.",
7230      "properties": {
7231        "postStart": {
7232          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
7233          "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"
7234        },
7235        "preStop": {
7236          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
7237          "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
7238        }
7239      },
7240      "type": "object"
7241    },
7242    "io.k8s.api.core.v1.LimitRange": {
7243      "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.",
7244      "properties": {
7245        "apiVersion": {
7246          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7247          "type": "string"
7248        },
7249        "kind": {
7250          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7251          "type": "string"
7252        },
7253        "metadata": {
7254          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7255          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7256        },
7257        "spec": {
7258          "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeSpec",
7259          "description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7260        }
7261      },
7262      "type": "object",
7263      "x-kubernetes-group-version-kind": [
7264        {
7265          "group": "",
7266          "kind": "LimitRange",
7267          "version": "v1"
7268        }
7269      ]
7270    },
7271    "io.k8s.api.core.v1.LimitRangeItem": {
7272      "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
7273      "properties": {
7274        "default": {
7275          "additionalProperties": {
7276            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7277          },
7278          "description": "Default resource requirement limit value by resource name if resource limit is omitted.",
7279          "type": "object"
7280        },
7281        "defaultRequest": {
7282          "additionalProperties": {
7283            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7284          },
7285          "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
7286          "type": "object"
7287        },
7288        "max": {
7289          "additionalProperties": {
7290            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7291          },
7292          "description": "Max usage constraints on this kind by resource name.",
7293          "type": "object"
7294        },
7295        "maxLimitRequestRatio": {
7296          "additionalProperties": {
7297            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7298          },
7299          "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.",
7300          "type": "object"
7301        },
7302        "min": {
7303          "additionalProperties": {
7304            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7305          },
7306          "description": "Min usage constraints on this kind by resource name.",
7307          "type": "object"
7308        },
7309        "type": {
7310          "description": "Type of resource that this limit applies to.",
7311          "type": "string"
7312        }
7313      },
7314      "required": [
7315        "type"
7316      ],
7317      "type": "object"
7318    },
7319    "io.k8s.api.core.v1.LimitRangeList": {
7320      "description": "LimitRangeList is a list of LimitRange items.",
7321      "properties": {
7322        "apiVersion": {
7323          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7324          "type": "string"
7325        },
7326        "items": {
7327          "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
7328          "items": {
7329            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
7330          },
7331          "type": "array"
7332        },
7333        "kind": {
7334          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7335          "type": "string"
7336        },
7337        "metadata": {
7338          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7339          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7340        }
7341      },
7342      "required": [
7343        "items"
7344      ],
7345      "type": "object",
7346      "x-kubernetes-group-version-kind": [
7347        {
7348          "group": "",
7349          "kind": "LimitRangeList",
7350          "version": "v1"
7351        }
7352      ]
7353    },
7354    "io.k8s.api.core.v1.LimitRangeSpec": {
7355      "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
7356      "properties": {
7357        "limits": {
7358          "description": "Limits is the list of LimitRangeItem objects that are enforced.",
7359          "items": {
7360            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeItem"
7361          },
7362          "type": "array"
7363        }
7364      },
7365      "required": [
7366        "limits"
7367      ],
7368      "type": "object"
7369    },
7370    "io.k8s.api.core.v1.LoadBalancerIngress": {
7371      "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
7372      "properties": {
7373        "hostname": {
7374          "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
7375          "type": "string"
7376        },
7377        "ip": {
7378          "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
7379          "type": "string"
7380        },
7381        "ports": {
7382          "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it",
7383          "items": {
7384            "$ref": "#/definitions/io.k8s.api.core.v1.PortStatus"
7385          },
7386          "type": "array",
7387          "x-kubernetes-list-type": "atomic"
7388        }
7389      },
7390      "type": "object"
7391    },
7392    "io.k8s.api.core.v1.LoadBalancerStatus": {
7393      "description": "LoadBalancerStatus represents the status of a load-balancer.",
7394      "properties": {
7395        "ingress": {
7396          "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
7397          "items": {
7398            "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerIngress"
7399          },
7400          "type": "array"
7401        }
7402      },
7403      "type": "object"
7404    },
7405    "io.k8s.api.core.v1.LocalObjectReference": {
7406      "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
7407      "properties": {
7408        "name": {
7409          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
7410          "type": "string"
7411        }
7412      },
7413      "type": "object"
7414    },
7415    "io.k8s.api.core.v1.LocalVolumeSource": {
7416      "description": "Local represents directly-attached storage with node affinity (Beta feature)",
7417      "properties": {
7418        "fsType": {
7419          "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.",
7420          "type": "string"
7421        },
7422        "path": {
7423          "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).",
7424          "type": "string"
7425        }
7426      },
7427      "required": [
7428        "path"
7429      ],
7430      "type": "object"
7431    },
7432    "io.k8s.api.core.v1.NFSVolumeSource": {
7433      "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
7434      "properties": {
7435        "path": {
7436          "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
7437          "type": "string"
7438        },
7439        "readOnly": {
7440          "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",
7441          "type": "boolean"
7442        },
7443        "server": {
7444          "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
7445          "type": "string"
7446        }
7447      },
7448      "required": [
7449        "server",
7450        "path"
7451      ],
7452      "type": "object"
7453    },
7454    "io.k8s.api.core.v1.Namespace": {
7455      "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.",
7456      "properties": {
7457        "apiVersion": {
7458          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7459          "type": "string"
7460        },
7461        "kind": {
7462          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7463          "type": "string"
7464        },
7465        "metadata": {
7466          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7467          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7468        },
7469        "spec": {
7470          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceSpec",
7471          "description": "Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7472        },
7473        "status": {
7474          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceStatus",
7475          "description": "Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7476        }
7477      },
7478      "type": "object",
7479      "x-kubernetes-group-version-kind": [
7480        {
7481          "group": "",
7482          "kind": "Namespace",
7483          "version": "v1"
7484        }
7485      ]
7486    },
7487    "io.k8s.api.core.v1.NamespaceCondition": {
7488      "description": "NamespaceCondition contains details about state of namespace.",
7489      "properties": {
7490        "lastTransitionTime": {
7491          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
7492        },
7493        "message": {
7494          "type": "string"
7495        },
7496        "reason": {
7497          "type": "string"
7498        },
7499        "status": {
7500          "description": "Status of the condition, one of True, False, Unknown.",
7501          "type": "string"
7502        },
7503        "type": {
7504          "description": "Type of namespace controller condition.",
7505          "type": "string"
7506        }
7507      },
7508      "required": [
7509        "type",
7510        "status"
7511      ],
7512      "type": "object"
7513    },
7514    "io.k8s.api.core.v1.NamespaceList": {
7515      "description": "NamespaceList is a list of Namespaces.",
7516      "properties": {
7517        "apiVersion": {
7518          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7519          "type": "string"
7520        },
7521        "items": {
7522          "description": "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
7523          "items": {
7524            "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
7525          },
7526          "type": "array"
7527        },
7528        "kind": {
7529          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7530          "type": "string"
7531        },
7532        "metadata": {
7533          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7534          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7535        }
7536      },
7537      "required": [
7538        "items"
7539      ],
7540      "type": "object",
7541      "x-kubernetes-group-version-kind": [
7542        {
7543          "group": "",
7544          "kind": "NamespaceList",
7545          "version": "v1"
7546        }
7547      ]
7548    },
7549    "io.k8s.api.core.v1.NamespaceSpec": {
7550      "description": "NamespaceSpec describes the attributes on a Namespace.",
7551      "properties": {
7552        "finalizers": {
7553          "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/",
7554          "items": {
7555            "type": "string"
7556          },
7557          "type": "array"
7558        }
7559      },
7560      "type": "object"
7561    },
7562    "io.k8s.api.core.v1.NamespaceStatus": {
7563      "description": "NamespaceStatus is information about the current status of a Namespace.",
7564      "properties": {
7565        "conditions": {
7566          "description": "Represents the latest available observations of a namespace's current state.",
7567          "items": {
7568            "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceCondition"
7569          },
7570          "type": "array",
7571          "x-kubernetes-patch-merge-key": "type",
7572          "x-kubernetes-patch-strategy": "merge"
7573        },
7574        "phase": {
7575          "description": "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
7576          "type": "string"
7577        }
7578      },
7579      "type": "object"
7580    },
7581    "io.k8s.api.core.v1.Node": {
7582      "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).",
7583      "properties": {
7584        "apiVersion": {
7585          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7586          "type": "string"
7587        },
7588        "kind": {
7589          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7590          "type": "string"
7591        },
7592        "metadata": {
7593          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7594          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7595        },
7596        "spec": {
7597          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSpec",
7598          "description": "Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7599        },
7600        "status": {
7601          "$ref": "#/definitions/io.k8s.api.core.v1.NodeStatus",
7602          "description": "Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7603        }
7604      },
7605      "type": "object",
7606      "x-kubernetes-group-version-kind": [
7607        {
7608          "group": "",
7609          "kind": "Node",
7610          "version": "v1"
7611        }
7612      ]
7613    },
7614    "io.k8s.api.core.v1.NodeAddress": {
7615      "description": "NodeAddress contains information for the node's address.",
7616      "properties": {
7617        "address": {
7618          "description": "The node address.",
7619          "type": "string"
7620        },
7621        "type": {
7622          "description": "Node address type, one of Hostname, ExternalIP or InternalIP.",
7623          "type": "string"
7624        }
7625      },
7626      "required": [
7627        "type",
7628        "address"
7629      ],
7630      "type": "object"
7631    },
7632    "io.k8s.api.core.v1.NodeAffinity": {
7633      "description": "Node affinity is a group of node affinity scheduling rules.",
7634      "properties": {
7635        "preferredDuringSchedulingIgnoredDuringExecution": {
7636          "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.",
7637          "items": {
7638            "$ref": "#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm"
7639          },
7640          "type": "array"
7641        },
7642        "requiredDuringSchedulingIgnoredDuringExecution": {
7643          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
7644          "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."
7645        }
7646      },
7647      "type": "object"
7648    },
7649    "io.k8s.api.core.v1.NodeCondition": {
7650      "description": "NodeCondition contains condition information for a node.",
7651      "properties": {
7652        "lastHeartbeatTime": {
7653          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7654          "description": "Last time we got an update on a given condition."
7655        },
7656        "lastTransitionTime": {
7657          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7658          "description": "Last time the condition transit from one status to another."
7659        },
7660        "message": {
7661          "description": "Human readable message indicating details about last transition.",
7662          "type": "string"
7663        },
7664        "reason": {
7665          "description": "(brief) reason for the condition's last transition.",
7666          "type": "string"
7667        },
7668        "status": {
7669          "description": "Status of the condition, one of True, False, Unknown.",
7670          "type": "string"
7671        },
7672        "type": {
7673          "description": "Type of node condition.",
7674          "type": "string"
7675        }
7676      },
7677      "required": [
7678        "type",
7679        "status"
7680      ],
7681      "type": "object"
7682    },
7683    "io.k8s.api.core.v1.NodeConfigSource": {
7684      "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.",
7685      "properties": {
7686        "configMap": {
7687          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapNodeConfigSource",
7688          "description": "ConfigMap is a reference to a Node's ConfigMap"
7689        }
7690      },
7691      "type": "object"
7692    },
7693    "io.k8s.api.core.v1.NodeConfigStatus": {
7694      "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.",
7695      "properties": {
7696        "active": {
7697          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7698          "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."
7699        },
7700        "assigned": {
7701          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7702          "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."
7703        },
7704        "error": {
7705          "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.",
7706          "type": "string"
7707        },
7708        "lastKnownGood": {
7709          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7710          "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."
7711        }
7712      },
7713      "type": "object"
7714    },
7715    "io.k8s.api.core.v1.NodeDaemonEndpoints": {
7716      "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
7717      "properties": {
7718        "kubeletEndpoint": {
7719          "$ref": "#/definitions/io.k8s.api.core.v1.DaemonEndpoint",
7720          "description": "Endpoint on which Kubelet is listening."
7721        }
7722      },
7723      "type": "object"
7724    },
7725    "io.k8s.api.core.v1.NodeList": {
7726      "description": "NodeList is the whole list of all Nodes which have been registered with master.",
7727      "properties": {
7728        "apiVersion": {
7729          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7730          "type": "string"
7731        },
7732        "items": {
7733          "description": "List of nodes",
7734          "items": {
7735            "$ref": "#/definitions/io.k8s.api.core.v1.Node"
7736          },
7737          "type": "array"
7738        },
7739        "kind": {
7740          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7741          "type": "string"
7742        },
7743        "metadata": {
7744          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7745          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7746        }
7747      },
7748      "required": [
7749        "items"
7750      ],
7751      "type": "object",
7752      "x-kubernetes-group-version-kind": [
7753        {
7754          "group": "",
7755          "kind": "NodeList",
7756          "version": "v1"
7757        }
7758      ]
7759    },
7760    "io.k8s.api.core.v1.NodeSelector": {
7761      "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.",
7762      "properties": {
7763        "nodeSelectorTerms": {
7764          "description": "Required. A list of node selector terms. The terms are ORed.",
7765          "items": {
7766            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm"
7767          },
7768          "type": "array"
7769        }
7770      },
7771      "required": [
7772        "nodeSelectorTerms"
7773      ],
7774      "type": "object"
7775    },
7776    "io.k8s.api.core.v1.NodeSelectorRequirement": {
7777      "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
7778      "properties": {
7779        "key": {
7780          "description": "The label key that the selector applies to.",
7781          "type": "string"
7782        },
7783        "operator": {
7784          "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
7785          "type": "string"
7786        },
7787        "values": {
7788          "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.",
7789          "items": {
7790            "type": "string"
7791          },
7792          "type": "array"
7793        }
7794      },
7795      "required": [
7796        "key",
7797        "operator"
7798      ],
7799      "type": "object"
7800    },
7801    "io.k8s.api.core.v1.NodeSelectorTerm": {
7802      "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.",
7803      "properties": {
7804        "matchExpressions": {
7805          "description": "A list of node selector requirements by node's labels.",
7806          "items": {
7807            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
7808          },
7809          "type": "array"
7810        },
7811        "matchFields": {
7812          "description": "A list of node selector requirements by node's fields.",
7813          "items": {
7814            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
7815          },
7816          "type": "array"
7817        }
7818      },
7819      "type": "object"
7820    },
7821    "io.k8s.api.core.v1.NodeSpec": {
7822      "description": "NodeSpec describes the attributes that a node is created with.",
7823      "properties": {
7824        "configSource": {
7825          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7826          "description": "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field"
7827        },
7828        "externalID": {
7829          "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966",
7830          "type": "string"
7831        },
7832        "podCIDR": {
7833          "description": "PodCIDR represents the pod IP range assigned to the node.",
7834          "type": "string"
7835        },
7836        "podCIDRs": {
7837          "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.",
7838          "items": {
7839            "type": "string"
7840          },
7841          "type": "array",
7842          "x-kubernetes-patch-strategy": "merge"
7843        },
7844        "providerID": {
7845          "description": "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>",
7846          "type": "string"
7847        },
7848        "taints": {
7849          "description": "If specified, the node's taints.",
7850          "items": {
7851            "$ref": "#/definitions/io.k8s.api.core.v1.Taint"
7852          },
7853          "type": "array"
7854        },
7855        "unschedulable": {
7856          "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",
7857          "type": "boolean"
7858        }
7859      },
7860      "type": "object"
7861    },
7862    "io.k8s.api.core.v1.NodeStatus": {
7863      "description": "NodeStatus is information about the current status of a node.",
7864      "properties": {
7865        "addresses": {
7866          "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.",
7867          "items": {
7868            "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
7869          },
7870          "type": "array",
7871          "x-kubernetes-patch-merge-key": "type",
7872          "x-kubernetes-patch-strategy": "merge"
7873        },
7874        "allocatable": {
7875          "additionalProperties": {
7876            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7877          },
7878          "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
7879          "type": "object"
7880        },
7881        "capacity": {
7882          "additionalProperties": {
7883            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7884          },
7885          "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
7886          "type": "object"
7887        },
7888        "conditions": {
7889          "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition",
7890          "items": {
7891            "$ref": "#/definitions/io.k8s.api.core.v1.NodeCondition"
7892          },
7893          "type": "array",
7894          "x-kubernetes-patch-merge-key": "type",
7895          "x-kubernetes-patch-strategy": "merge"
7896        },
7897        "config": {
7898          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigStatus",
7899          "description": "Status of the config assigned to the node via the dynamic Kubelet config feature."
7900        },
7901        "daemonEndpoints": {
7902          "$ref": "#/definitions/io.k8s.api.core.v1.NodeDaemonEndpoints",
7903          "description": "Endpoints of daemons running on the Node."
7904        },
7905        "images": {
7906          "description": "List of container images on this node",
7907          "items": {
7908            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerImage"
7909          },
7910          "type": "array"
7911        },
7912        "nodeInfo": {
7913          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSystemInfo",
7914          "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info"
7915        },
7916        "phase": {
7917          "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.",
7918          "type": "string"
7919        },
7920        "volumesAttached": {
7921          "description": "List of volumes that are attached to the node.",
7922          "items": {
7923            "$ref": "#/definitions/io.k8s.api.core.v1.AttachedVolume"
7924          },
7925          "type": "array"
7926        },
7927        "volumesInUse": {
7928          "description": "List of attachable volumes in use (mounted) by the node.",
7929          "items": {
7930            "type": "string"
7931          },
7932          "type": "array"
7933        }
7934      },
7935      "type": "object"
7936    },
7937    "io.k8s.api.core.v1.NodeSystemInfo": {
7938      "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
7939      "properties": {
7940        "architecture": {
7941          "description": "The Architecture reported by the node",
7942          "type": "string"
7943        },
7944        "bootID": {
7945          "description": "Boot ID reported by the node.",
7946          "type": "string"
7947        },
7948        "containerRuntimeVersion": {
7949          "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).",
7950          "type": "string"
7951        },
7952        "kernelVersion": {
7953          "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
7954          "type": "string"
7955        },
7956        "kubeProxyVersion": {
7957          "description": "KubeProxy Version reported by the node.",
7958          "type": "string"
7959        },
7960        "kubeletVersion": {
7961          "description": "Kubelet Version reported by the node.",
7962          "type": "string"
7963        },
7964        "machineID": {
7965          "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",
7966          "type": "string"
7967        },
7968        "operatingSystem": {
7969          "description": "The Operating System reported by the node",
7970          "type": "string"
7971        },
7972        "osImage": {
7973          "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
7974          "type": "string"
7975        },
7976        "systemUUID": {
7977          "description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid",
7978          "type": "string"
7979        }
7980      },
7981      "required": [
7982        "machineID",
7983        "systemUUID",
7984        "bootID",
7985        "kernelVersion",
7986        "osImage",
7987        "containerRuntimeVersion",
7988        "kubeletVersion",
7989        "kubeProxyVersion",
7990        "operatingSystem",
7991        "architecture"
7992      ],
7993      "type": "object"
7994    },
7995    "io.k8s.api.core.v1.ObjectFieldSelector": {
7996      "description": "ObjectFieldSelector selects an APIVersioned field of an object.",
7997      "properties": {
7998        "apiVersion": {
7999          "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
8000          "type": "string"
8001        },
8002        "fieldPath": {
8003          "description": "Path of the field to select in the specified API version.",
8004          "type": "string"
8005        }
8006      },
8007      "required": [
8008        "fieldPath"
8009      ],
8010      "type": "object"
8011    },
8012    "io.k8s.api.core.v1.ObjectReference": {
8013      "description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
8014      "properties": {
8015        "apiVersion": {
8016          "description": "API version of the referent.",
8017          "type": "string"
8018        },
8019        "fieldPath": {
8020          "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.",
8021          "type": "string"
8022        },
8023        "kind": {
8024          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8025          "type": "string"
8026        },
8027        "name": {
8028          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
8029          "type": "string"
8030        },
8031        "namespace": {
8032          "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
8033          "type": "string"
8034        },
8035        "resourceVersion": {
8036          "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
8037          "type": "string"
8038        },
8039        "uid": {
8040          "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
8041          "type": "string"
8042        }
8043      },
8044      "type": "object"
8045    },
8046    "io.k8s.api.core.v1.PersistentVolume": {
8047      "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",
8048      "properties": {
8049        "apiVersion": {
8050          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8051          "type": "string"
8052        },
8053        "kind": {
8054          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8055          "type": "string"
8056        },
8057        "metadata": {
8058          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8059          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8060        },
8061        "spec": {
8062          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
8063          "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"
8064        },
8065        "status": {
8066          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus",
8067          "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"
8068        }
8069      },
8070      "type": "object",
8071      "x-kubernetes-group-version-kind": [
8072        {
8073          "group": "",
8074          "kind": "PersistentVolume",
8075          "version": "v1"
8076        }
8077      ]
8078    },
8079    "io.k8s.api.core.v1.PersistentVolumeClaim": {
8080      "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume",
8081      "properties": {
8082        "apiVersion": {
8083          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8084          "type": "string"
8085        },
8086        "kind": {
8087          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8088          "type": "string"
8089        },
8090        "metadata": {
8091          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8092          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8093        },
8094        "spec": {
8095          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec",
8096          "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"
8097        },
8098        "status": {
8099          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus",
8100          "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"
8101        }
8102      },
8103      "type": "object",
8104      "x-kubernetes-group-version-kind": [
8105        {
8106          "group": "",
8107          "kind": "PersistentVolumeClaim",
8108          "version": "v1"
8109        }
8110      ]
8111    },
8112    "io.k8s.api.core.v1.PersistentVolumeClaimCondition": {
8113      "description": "PersistentVolumeClaimCondition contails details about state of pvc",
8114      "properties": {
8115        "lastProbeTime": {
8116          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8117          "description": "Last time we probed the condition."
8118        },
8119        "lastTransitionTime": {
8120          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8121          "description": "Last time the condition transitioned from one status to another."
8122        },
8123        "message": {
8124          "description": "Human-readable message indicating details about last transition.",
8125          "type": "string"
8126        },
8127        "reason": {
8128          "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.",
8129          "type": "string"
8130        },
8131        "status": {
8132          "type": "string"
8133        },
8134        "type": {
8135          "type": "string"
8136        }
8137      },
8138      "required": [
8139        "type",
8140        "status"
8141      ],
8142      "type": "object"
8143    },
8144    "io.k8s.api.core.v1.PersistentVolumeClaimList": {
8145      "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.",
8146      "properties": {
8147        "apiVersion": {
8148          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8149          "type": "string"
8150        },
8151        "items": {
8152          "description": "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
8153          "items": {
8154            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
8155          },
8156          "type": "array"
8157        },
8158        "kind": {
8159          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8160          "type": "string"
8161        },
8162        "metadata": {
8163          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8164          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8165        }
8166      },
8167      "required": [
8168        "items"
8169      ],
8170      "type": "object",
8171      "x-kubernetes-group-version-kind": [
8172        {
8173          "group": "",
8174          "kind": "PersistentVolumeClaimList",
8175          "version": "v1"
8176        }
8177      ]
8178    },
8179    "io.k8s.api.core.v1.PersistentVolumeClaimSpec": {
8180      "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
8181      "properties": {
8182        "accessModes": {
8183          "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
8184          "items": {
8185            "type": "string"
8186          },
8187          "type": "array"
8188        },
8189        "dataSource": {
8190          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
8191          "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source."
8192        },
8193        "resources": {
8194          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
8195          "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources"
8196        },
8197        "selector": {
8198          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
8199          "description": "A label query over volumes to consider for binding."
8200        },
8201        "storageClassName": {
8202          "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
8203          "type": "string"
8204        },
8205        "volumeMode": {
8206          "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.",
8207          "type": "string"
8208        },
8209        "volumeName": {
8210          "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.",
8211          "type": "string"
8212        }
8213      },
8214      "type": "object"
8215    },
8216    "io.k8s.api.core.v1.PersistentVolumeClaimStatus": {
8217      "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.",
8218      "properties": {
8219        "accessModes": {
8220          "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",
8221          "items": {
8222            "type": "string"
8223          },
8224          "type": "array"
8225        },
8226        "capacity": {
8227          "additionalProperties": {
8228            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8229          },
8230          "description": "Represents the actual resources of the underlying volume.",
8231          "type": "object"
8232        },
8233        "conditions": {
8234          "description": "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.",
8235          "items": {
8236            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition"
8237          },
8238          "type": "array",
8239          "x-kubernetes-patch-merge-key": "type",
8240          "x-kubernetes-patch-strategy": "merge"
8241        },
8242        "phase": {
8243          "description": "Phase represents the current phase of PersistentVolumeClaim.",
8244          "type": "string"
8245        }
8246      },
8247      "type": "object"
8248    },
8249    "io.k8s.api.core.v1.PersistentVolumeClaimTemplate": {
8250      "description": "PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.",
8251      "properties": {
8252        "metadata": {
8253          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8254          "description": "May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation."
8255        },
8256        "spec": {
8257          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec",
8258          "description": "The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here."
8259        }
8260      },
8261      "required": [
8262        "spec"
8263      ],
8264      "type": "object"
8265    },
8266    "io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource": {
8267      "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).",
8268      "properties": {
8269        "claimName": {
8270          "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",
8271          "type": "string"
8272        },
8273        "readOnly": {
8274          "description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
8275          "type": "boolean"
8276        }
8277      },
8278      "required": [
8279        "claimName"
8280      ],
8281      "type": "object"
8282    },
8283    "io.k8s.api.core.v1.PersistentVolumeList": {
8284      "description": "PersistentVolumeList is a list of PersistentVolume items.",
8285      "properties": {
8286        "apiVersion": {
8287          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8288          "type": "string"
8289        },
8290        "items": {
8291          "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes",
8292          "items": {
8293            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
8294          },
8295          "type": "array"
8296        },
8297        "kind": {
8298          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8299          "type": "string"
8300        },
8301        "metadata": {
8302          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8303          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8304        }
8305      },
8306      "required": [
8307        "items"
8308      ],
8309      "type": "object",
8310      "x-kubernetes-group-version-kind": [
8311        {
8312          "group": "",
8313          "kind": "PersistentVolumeList",
8314          "version": "v1"
8315        }
8316      ]
8317    },
8318    "io.k8s.api.core.v1.PersistentVolumeSpec": {
8319      "description": "PersistentVolumeSpec is the specification of a persistent volume.",
8320      "properties": {
8321        "accessModes": {
8322          "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
8323          "items": {
8324            "type": "string"
8325          },
8326          "type": "array"
8327        },
8328        "awsElasticBlockStore": {
8329          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
8330          "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"
8331        },
8332        "azureDisk": {
8333          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
8334          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
8335        },
8336        "azureFile": {
8337          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource",
8338          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
8339        },
8340        "capacity": {
8341          "additionalProperties": {
8342            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8343          },
8344          "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
8345          "type": "object"
8346        },
8347        "cephfs": {
8348          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource",
8349          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
8350        },
8351        "cinder": {
8352          "$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource",
8353          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
8354        },
8355        "claimRef": {
8356          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
8357          "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"
8358        },
8359        "csi": {
8360          "$ref": "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource",
8361          "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
8362        },
8363        "fc": {
8364          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
8365          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
8366        },
8367        "flexVolume": {
8368          "$ref": "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource",
8369          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
8370        },
8371        "flocker": {
8372          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
8373          "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"
8374        },
8375        "gcePersistentDisk": {
8376          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
8377          "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"
8378        },
8379        "glusterfs": {
8380          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource",
8381          "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
8382        },
8383        "hostPath": {
8384          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
8385          "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"
8386        },
8387        "iscsi": {
8388          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource",
8389          "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."
8390        },
8391        "local": {
8392          "$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource",
8393          "description": "Local represents directly-attached storage with node affinity"
8394        },
8395        "mountOptions": {
8396          "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",
8397          "items": {
8398            "type": "string"
8399          },
8400          "type": "array"
8401        },
8402        "nfs": {
8403          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
8404          "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
8405        },
8406        "nodeAffinity": {
8407          "$ref": "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity",
8408          "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."
8409        },
8410        "persistentVolumeReclaimPolicy": {
8411          "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",
8412          "type": "string"
8413        },
8414        "photonPersistentDisk": {
8415          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
8416          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
8417        },
8418        "portworxVolume": {
8419          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
8420          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
8421        },
8422        "quobyte": {
8423          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
8424          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
8425        },
8426        "rbd": {
8427          "$ref": "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource",
8428          "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
8429        },
8430        "scaleIO": {
8431          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource",
8432          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
8433        },
8434        "storageClassName": {
8435          "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
8436          "type": "string"
8437        },
8438        "storageos": {
8439          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource",
8440          "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
8441        },
8442        "volumeMode": {
8443          "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.",
8444          "type": "string"
8445        },
8446        "vsphereVolume": {
8447          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
8448          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
8449        }
8450      },
8451      "type": "object"
8452    },
8453    "io.k8s.api.core.v1.PersistentVolumeStatus": {
8454      "description": "PersistentVolumeStatus is the current status of a persistent volume.",
8455      "properties": {
8456        "message": {
8457          "description": "A human-readable message indicating details about why the volume is in this state.",
8458          "type": "string"
8459        },
8460        "phase": {
8461          "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",
8462          "type": "string"
8463        },
8464        "reason": {
8465          "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.",
8466          "type": "string"
8467        }
8468      },
8469      "type": "object"
8470    },
8471    "io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource": {
8472      "description": "Represents a Photon Controller persistent disk resource.",
8473      "properties": {
8474        "fsType": {
8475          "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.",
8476          "type": "string"
8477        },
8478        "pdID": {
8479          "description": "ID that identifies Photon Controller persistent disk",
8480          "type": "string"
8481        }
8482      },
8483      "required": [
8484        "pdID"
8485      ],
8486      "type": "object"
8487    },
8488    "io.k8s.api.core.v1.Pod": {
8489      "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.",
8490      "properties": {
8491        "apiVersion": {
8492          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8493          "type": "string"
8494        },
8495        "kind": {
8496          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8497          "type": "string"
8498        },
8499        "metadata": {
8500          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8501          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8502        },
8503        "spec": {
8504          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
8505          "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8506        },
8507        "status": {
8508          "$ref": "#/definitions/io.k8s.api.core.v1.PodStatus",
8509          "description": "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8510        }
8511      },
8512      "type": "object",
8513      "x-kubernetes-group-version-kind": [
8514        {
8515          "group": "",
8516          "kind": "Pod",
8517          "version": "v1"
8518        }
8519      ]
8520    },
8521    "io.k8s.api.core.v1.PodAffinity": {
8522      "description": "Pod affinity is a group of inter pod affinity scheduling rules.",
8523      "properties": {
8524        "preferredDuringSchedulingIgnoredDuringExecution": {
8525          "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.",
8526          "items": {
8527            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
8528          },
8529          "type": "array"
8530        },
8531        "requiredDuringSchedulingIgnoredDuringExecution": {
8532          "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.",
8533          "items": {
8534            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
8535          },
8536          "type": "array"
8537        }
8538      },
8539      "type": "object"
8540    },
8541    "io.k8s.api.core.v1.PodAffinityTerm": {
8542      "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",
8543      "properties": {
8544        "labelSelector": {
8545          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
8546          "description": "A label query over a set of resources, in this case pods."
8547        },
8548        "namespaces": {
8549          "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
8550          "items": {
8551            "type": "string"
8552          },
8553          "type": "array"
8554        },
8555        "topologyKey": {
8556          "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.",
8557          "type": "string"
8558        }
8559      },
8560      "required": [
8561        "topologyKey"
8562      ],
8563      "type": "object"
8564    },
8565    "io.k8s.api.core.v1.PodAntiAffinity": {
8566      "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
8567      "properties": {
8568        "preferredDuringSchedulingIgnoredDuringExecution": {
8569          "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.",
8570          "items": {
8571            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
8572          },
8573          "type": "array"
8574        },
8575        "requiredDuringSchedulingIgnoredDuringExecution": {
8576          "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.",
8577          "items": {
8578            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
8579          },
8580          "type": "array"
8581        }
8582      },
8583      "type": "object"
8584    },
8585    "io.k8s.api.core.v1.PodCondition": {
8586      "description": "PodCondition contains details for the current condition of this pod.",
8587      "properties": {
8588        "lastProbeTime": {
8589          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8590          "description": "Last time we probed the condition."
8591        },
8592        "lastTransitionTime": {
8593          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8594          "description": "Last time the condition transitioned from one status to another."
8595        },
8596        "message": {
8597          "description": "Human-readable message indicating details about last transition.",
8598          "type": "string"
8599        },
8600        "reason": {
8601          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
8602          "type": "string"
8603        },
8604        "status": {
8605          "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",
8606          "type": "string"
8607        },
8608        "type": {
8609          "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
8610          "type": "string"
8611        }
8612      },
8613      "required": [
8614        "type",
8615        "status"
8616      ],
8617      "type": "object"
8618    },
8619    "io.k8s.api.core.v1.PodDNSConfig": {
8620      "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
8621      "properties": {
8622        "nameservers": {
8623          "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.",
8624          "items": {
8625            "type": "string"
8626          },
8627          "type": "array"
8628        },
8629        "options": {
8630          "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.",
8631          "items": {
8632            "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfigOption"
8633          },
8634          "type": "array"
8635        },
8636        "searches": {
8637          "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.",
8638          "items": {
8639            "type": "string"
8640          },
8641          "type": "array"
8642        }
8643      },
8644      "type": "object"
8645    },
8646    "io.k8s.api.core.v1.PodDNSConfigOption": {
8647      "description": "PodDNSConfigOption defines DNS resolver options of a pod.",
8648      "properties": {
8649        "name": {
8650          "description": "Required.",
8651          "type": "string"
8652        },
8653        "value": {
8654          "type": "string"
8655        }
8656      },
8657      "type": "object"
8658    },
8659    "io.k8s.api.core.v1.PodIP": {
8660      "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.",
8661      "properties": {
8662        "ip": {
8663          "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod",
8664          "type": "string"
8665        }
8666      },
8667      "type": "object"
8668    },
8669    "io.k8s.api.core.v1.PodList": {
8670      "description": "PodList is a list of Pods.",
8671      "properties": {
8672        "apiVersion": {
8673          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8674          "type": "string"
8675        },
8676        "items": {
8677          "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md",
8678          "items": {
8679            "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
8680          },
8681          "type": "array"
8682        },
8683        "kind": {
8684          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8685          "type": "string"
8686        },
8687        "metadata": {
8688          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8689          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8690        }
8691      },
8692      "required": [
8693        "items"
8694      ],
8695      "type": "object",
8696      "x-kubernetes-group-version-kind": [
8697        {
8698          "group": "",
8699          "kind": "PodList",
8700          "version": "v1"
8701        }
8702      ]
8703    },
8704    "io.k8s.api.core.v1.PodReadinessGate": {
8705      "description": "PodReadinessGate contains the reference to a pod condition",
8706      "properties": {
8707        "conditionType": {
8708          "description": "ConditionType refers to a condition in the pod's condition list with matching type.",
8709          "type": "string"
8710        }
8711      },
8712      "required": [
8713        "conditionType"
8714      ],
8715      "type": "object"
8716    },
8717    "io.k8s.api.core.v1.PodSecurityContext": {
8718      "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.",
8719      "properties": {
8720        "fsGroup": {
8721          "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.",
8722          "format": "int64",
8723          "type": "integer"
8724        },
8725        "fsGroupChangePolicy": {
8726          "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used.",
8727          "type": "string"
8728        },
8729        "runAsGroup": {
8730          "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.",
8731          "format": "int64",
8732          "type": "integer"
8733        },
8734        "runAsNonRoot": {
8735          "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.",
8736          "type": "boolean"
8737        },
8738        "runAsUser": {
8739          "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.",
8740          "format": "int64",
8741          "type": "integer"
8742        },
8743        "seLinuxOptions": {
8744          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
8745          "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."
8746        },
8747        "seccompProfile": {
8748          "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile",
8749          "description": "The seccomp options to use by the containers in this pod."
8750        },
8751        "supplementalGroups": {
8752          "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.",
8753          "items": {
8754            "format": "int64",
8755            "type": "integer"
8756          },
8757          "type": "array"
8758        },
8759        "sysctls": {
8760          "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
8761          "items": {
8762            "$ref": "#/definitions/io.k8s.api.core.v1.Sysctl"
8763          },
8764          "type": "array"
8765        },
8766        "windowsOptions": {
8767          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
8768          "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."
8769        }
8770      },
8771      "type": "object"
8772    },
8773    "io.k8s.api.core.v1.PodSpec": {
8774      "description": "PodSpec is a description of a pod.",
8775      "properties": {
8776        "activeDeadlineSeconds": {
8777          "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.",
8778          "format": "int64",
8779          "type": "integer"
8780        },
8781        "affinity": {
8782          "$ref": "#/definitions/io.k8s.api.core.v1.Affinity",
8783          "description": "If specified, the pod's scheduling constraints"
8784        },
8785        "automountServiceAccountToken": {
8786          "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
8787          "type": "boolean"
8788        },
8789        "containers": {
8790          "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.",
8791          "items": {
8792            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
8793          },
8794          "type": "array",
8795          "x-kubernetes-patch-merge-key": "name",
8796          "x-kubernetes-patch-strategy": "merge"
8797        },
8798        "dnsConfig": {
8799          "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfig",
8800          "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
8801        },
8802        "dnsPolicy": {
8803          "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'.",
8804          "type": "string"
8805        },
8806        "enableServiceLinks": {
8807          "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.",
8808          "type": "boolean"
8809        },
8810        "ephemeralContainers": {
8811          "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
8812          "items": {
8813            "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer"
8814          },
8815          "type": "array",
8816          "x-kubernetes-patch-merge-key": "name",
8817          "x-kubernetes-patch-strategy": "merge"
8818        },
8819        "hostAliases": {
8820          "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.",
8821          "items": {
8822            "$ref": "#/definitions/io.k8s.api.core.v1.HostAlias"
8823          },
8824          "type": "array",
8825          "x-kubernetes-patch-merge-key": "ip",
8826          "x-kubernetes-patch-strategy": "merge"
8827        },
8828        "hostIPC": {
8829          "description": "Use the host's ipc namespace. Optional: Default to false.",
8830          "type": "boolean"
8831        },
8832        "hostNetwork": {
8833          "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.",
8834          "type": "boolean"
8835        },
8836        "hostPID": {
8837          "description": "Use the host's pid namespace. Optional: Default to false.",
8838          "type": "boolean"
8839        },
8840        "hostname": {
8841          "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
8842          "type": "string"
8843        },
8844        "imagePullSecrets": {
8845          "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",
8846          "items": {
8847            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
8848          },
8849          "type": "array",
8850          "x-kubernetes-patch-merge-key": "name",
8851          "x-kubernetes-patch-strategy": "merge"
8852        },
8853        "initContainers": {
8854          "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
8855          "items": {
8856            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
8857          },
8858          "type": "array",
8859          "x-kubernetes-patch-merge-key": "name",
8860          "x-kubernetes-patch-strategy": "merge"
8861        },
8862        "nodeName": {
8863          "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.",
8864          "type": "string"
8865        },
8866        "nodeSelector": {
8867          "additionalProperties": {
8868            "type": "string"
8869          },
8870          "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/",
8871          "type": "object"
8872        },
8873        "overhead": {
8874          "additionalProperties": {
8875            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8876          },
8877          "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.",
8878          "type": "object"
8879        },
8880        "preemptionPolicy": {
8881          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.",
8882          "type": "string"
8883        },
8884        "priority": {
8885          "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.",
8886          "format": "int32",
8887          "type": "integer"
8888        },
8889        "priorityClassName": {
8890          "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.",
8891          "type": "string"
8892        },
8893        "readinessGates": {
8894          "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",
8895          "items": {
8896            "$ref": "#/definitions/io.k8s.api.core.v1.PodReadinessGate"
8897          },
8898          "type": "array"
8899        },
8900        "restartPolicy": {
8901          "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",
8902          "type": "string"
8903        },
8904        "runtimeClassName": {
8905          "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.",
8906          "type": "string"
8907        },
8908        "schedulerName": {
8909          "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
8910          "type": "string"
8911        },
8912        "securityContext": {
8913          "$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext",
8914          "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty.  See type description for default values of each field."
8915        },
8916        "serviceAccount": {
8917          "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
8918          "type": "string"
8919        },
8920        "serviceAccountName": {
8921          "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/",
8922          "type": "string"
8923        },
8924        "setHostnameAsFQDN": {
8925          "description": "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.",
8926          "type": "boolean"
8927        },
8928        "shareProcessNamespace": {
8929          "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.",
8930          "type": "boolean"
8931        },
8932        "subdomain": {
8933          "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.",
8934          "type": "string"
8935        },
8936        "terminationGracePeriodSeconds": {
8937          "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.",
8938          "format": "int64",
8939          "type": "integer"
8940        },
8941        "tolerations": {
8942          "description": "If specified, the pod's tolerations.",
8943          "items": {
8944            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
8945          },
8946          "type": "array"
8947        },
8948        "topologySpreadConstraints": {
8949          "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.",
8950          "items": {
8951            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint"
8952          },
8953          "type": "array",
8954          "x-kubernetes-list-map-keys": [
8955            "topologyKey",
8956            "whenUnsatisfiable"
8957          ],
8958          "x-kubernetes-list-type": "map",
8959          "x-kubernetes-patch-merge-key": "topologyKey",
8960          "x-kubernetes-patch-strategy": "merge"
8961        },
8962        "volumes": {
8963          "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
8964          "items": {
8965            "$ref": "#/definitions/io.k8s.api.core.v1.Volume"
8966          },
8967          "type": "array",
8968          "x-kubernetes-patch-merge-key": "name",
8969          "x-kubernetes-patch-strategy": "merge,retainKeys"
8970        }
8971      },
8972      "required": [
8973        "containers"
8974      ],
8975      "type": "object"
8976    },
8977    "io.k8s.api.core.v1.PodStatus": {
8978      "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.",
8979      "properties": {
8980        "conditions": {
8981          "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
8982          "items": {
8983            "$ref": "#/definitions/io.k8s.api.core.v1.PodCondition"
8984          },
8985          "type": "array",
8986          "x-kubernetes-patch-merge-key": "type",
8987          "x-kubernetes-patch-strategy": "merge"
8988        },
8989        "containerStatuses": {
8990          "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",
8991          "items": {
8992            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
8993          },
8994          "type": "array"
8995        },
8996        "ephemeralContainerStatuses": {
8997          "description": "Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature.",
8998          "items": {
8999            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
9000          },
9001          "type": "array"
9002        },
9003        "hostIP": {
9004          "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.",
9005          "type": "string"
9006        },
9007        "initContainerStatuses": {
9008          "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",
9009          "items": {
9010            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
9011          },
9012          "type": "array"
9013        },
9014        "message": {
9015          "description": "A human readable message indicating details about why the pod is in this condition.",
9016          "type": "string"
9017        },
9018        "nominatedNodeName": {
9019          "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.",
9020          "type": "string"
9021        },
9022        "phase": {
9023          "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",
9024          "type": "string"
9025        },
9026        "podIP": {
9027          "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
9028          "type": "string"
9029        },
9030        "podIPs": {
9031          "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.",
9032          "items": {
9033            "$ref": "#/definitions/io.k8s.api.core.v1.PodIP"
9034          },
9035          "type": "array",
9036          "x-kubernetes-patch-merge-key": "ip",
9037          "x-kubernetes-patch-strategy": "merge"
9038        },
9039        "qosClass": {
9040          "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",
9041          "type": "string"
9042        },
9043        "reason": {
9044          "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'",
9045          "type": "string"
9046        },
9047        "startTime": {
9048          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9049          "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."
9050        }
9051      },
9052      "type": "object"
9053    },
9054    "io.k8s.api.core.v1.PodTemplate": {
9055      "description": "PodTemplate describes a template for creating copies of a predefined pod.",
9056      "properties": {
9057        "apiVersion": {
9058          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9059          "type": "string"
9060        },
9061        "kind": {
9062          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9063          "type": "string"
9064        },
9065        "metadata": {
9066          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9067          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9068        },
9069        "template": {
9070          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
9071          "description": "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9072        }
9073      },
9074      "type": "object",
9075      "x-kubernetes-group-version-kind": [
9076        {
9077          "group": "",
9078          "kind": "PodTemplate",
9079          "version": "v1"
9080        }
9081      ]
9082    },
9083    "io.k8s.api.core.v1.PodTemplateList": {
9084      "description": "PodTemplateList is a list of PodTemplates.",
9085      "properties": {
9086        "apiVersion": {
9087          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9088          "type": "string"
9089        },
9090        "items": {
9091          "description": "List of pod templates",
9092          "items": {
9093            "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
9094          },
9095          "type": "array"
9096        },
9097        "kind": {
9098          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9099          "type": "string"
9100        },
9101        "metadata": {
9102          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9103          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9104        }
9105      },
9106      "required": [
9107        "items"
9108      ],
9109      "type": "object",
9110      "x-kubernetes-group-version-kind": [
9111        {
9112          "group": "",
9113          "kind": "PodTemplateList",
9114          "version": "v1"
9115        }
9116      ]
9117    },
9118    "io.k8s.api.core.v1.PodTemplateSpec": {
9119      "description": "PodTemplateSpec describes the data a pod should have when created from a template",
9120      "properties": {
9121        "metadata": {
9122          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9123          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9124        },
9125        "spec": {
9126          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
9127          "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9128        }
9129      },
9130      "type": "object"
9131    },
9132    "io.k8s.api.core.v1.PortStatus": {
9133      "properties": {
9134        "error": {
9135          "description": "Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n  CamelCase names\n- cloud provider specific error values must have names that comply with the\n  format foo.example.com/CamelCase.",
9136          "type": "string"
9137        },
9138        "port": {
9139          "description": "Port is the port number of the service port of which status is recorded here",
9140          "format": "int32",
9141          "type": "integer"
9142        },
9143        "protocol": {
9144          "description": "Protocol is the protocol of the service port of which status is recorded here The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
9145          "type": "string"
9146        }
9147      },
9148      "required": [
9149        "port",
9150        "protocol"
9151      ],
9152      "type": "object"
9153    },
9154    "io.k8s.api.core.v1.PortworxVolumeSource": {
9155      "description": "PortworxVolumeSource represents a Portworx volume resource.",
9156      "properties": {
9157        "fsType": {
9158          "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.",
9159          "type": "string"
9160        },
9161        "readOnly": {
9162          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9163          "type": "boolean"
9164        },
9165        "volumeID": {
9166          "description": "VolumeID uniquely identifies a Portworx volume",
9167          "type": "string"
9168        }
9169      },
9170      "required": [
9171        "volumeID"
9172      ],
9173      "type": "object"
9174    },
9175    "io.k8s.api.core.v1.PreferredSchedulingTerm": {
9176      "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).",
9177      "properties": {
9178        "preference": {
9179          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm",
9180          "description": "A node selector term, associated with the corresponding weight."
9181        },
9182        "weight": {
9183          "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
9184          "format": "int32",
9185          "type": "integer"
9186        }
9187      },
9188      "required": [
9189        "weight",
9190        "preference"
9191      ],
9192      "type": "object"
9193    },
9194    "io.k8s.api.core.v1.Probe": {
9195      "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
9196      "properties": {
9197        "exec": {
9198          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
9199          "description": "One and only one of the following should be specified. Exec specifies the action to take."
9200        },
9201        "failureThreshold": {
9202          "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
9203          "format": "int32",
9204          "type": "integer"
9205        },
9206        "httpGet": {
9207          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
9208          "description": "HTTPGet specifies the http request to perform."
9209        },
9210        "initialDelaySeconds": {
9211          "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",
9212          "format": "int32",
9213          "type": "integer"
9214        },
9215        "periodSeconds": {
9216          "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
9217          "format": "int32",
9218          "type": "integer"
9219        },
9220        "successThreshold": {
9221          "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
9222          "format": "int32",
9223          "type": "integer"
9224        },
9225        "tcpSocket": {
9226          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
9227          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
9228        },
9229        "timeoutSeconds": {
9230          "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",
9231          "format": "int32",
9232          "type": "integer"
9233        }
9234      },
9235      "type": "object"
9236    },
9237    "io.k8s.api.core.v1.ProjectedVolumeSource": {
9238      "description": "Represents a projected volume source",
9239      "properties": {
9240        "defaultMode": {
9241          "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
9242          "format": "int32",
9243          "type": "integer"
9244        },
9245        "sources": {
9246          "description": "list of volume projections",
9247          "items": {
9248            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeProjection"
9249          },
9250          "type": "array"
9251        }
9252      },
9253      "type": "object"
9254    },
9255    "io.k8s.api.core.v1.QuobyteVolumeSource": {
9256      "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
9257      "properties": {
9258        "group": {
9259          "description": "Group to map volume access to Default is no group",
9260          "type": "string"
9261        },
9262        "readOnly": {
9263          "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
9264          "type": "boolean"
9265        },
9266        "registry": {
9267          "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",
9268          "type": "string"
9269        },
9270        "tenant": {
9271          "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
9272          "type": "string"
9273        },
9274        "user": {
9275          "description": "User to map volume access to Defaults to serivceaccount user",
9276          "type": "string"
9277        },
9278        "volume": {
9279          "description": "Volume is a string that references an already created Quobyte volume by name.",
9280          "type": "string"
9281        }
9282      },
9283      "required": [
9284        "registry",
9285        "volume"
9286      ],
9287      "type": "object"
9288    },
9289    "io.k8s.api.core.v1.RBDPersistentVolumeSource": {
9290      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
9291      "properties": {
9292        "fsType": {
9293          "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",
9294          "type": "string"
9295        },
9296        "image": {
9297          "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9298          "type": "string"
9299        },
9300        "keyring": {
9301          "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9302          "type": "string"
9303        },
9304        "monitors": {
9305          "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9306          "items": {
9307            "type": "string"
9308          },
9309          "type": "array"
9310        },
9311        "pool": {
9312          "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9313          "type": "string"
9314        },
9315        "readOnly": {
9316          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9317          "type": "boolean"
9318        },
9319        "secretRef": {
9320          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
9321          "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
9322        },
9323        "user": {
9324          "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9325          "type": "string"
9326        }
9327      },
9328      "required": [
9329        "monitors",
9330        "image"
9331      ],
9332      "type": "object"
9333    },
9334    "io.k8s.api.core.v1.RBDVolumeSource": {
9335      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
9336      "properties": {
9337        "fsType": {
9338          "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",
9339          "type": "string"
9340        },
9341        "image": {
9342          "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9343          "type": "string"
9344        },
9345        "keyring": {
9346          "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9347          "type": "string"
9348        },
9349        "monitors": {
9350          "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9351          "items": {
9352            "type": "string"
9353          },
9354          "type": "array"
9355        },
9356        "pool": {
9357          "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9358          "type": "string"
9359        },
9360        "readOnly": {
9361          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9362          "type": "boolean"
9363        },
9364        "secretRef": {
9365          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
9366          "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
9367        },
9368        "user": {
9369          "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9370          "type": "string"
9371        }
9372      },
9373      "required": [
9374        "monitors",
9375        "image"
9376      ],
9377      "type": "object"
9378    },
9379    "io.k8s.api.core.v1.ReplicationController": {
9380      "description": "ReplicationController represents the configuration of a replication controller.",
9381      "properties": {
9382        "apiVersion": {
9383          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9384          "type": "string"
9385        },
9386        "kind": {
9387          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9388          "type": "string"
9389        },
9390        "metadata": {
9391          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9392          "description": "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9393        },
9394        "spec": {
9395          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerSpec",
9396          "description": "Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9397        },
9398        "status": {
9399          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerStatus",
9400          "description": "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9401        }
9402      },
9403      "type": "object",
9404      "x-kubernetes-group-version-kind": [
9405        {
9406          "group": "",
9407          "kind": "ReplicationController",
9408          "version": "v1"
9409        }
9410      ]
9411    },
9412    "io.k8s.api.core.v1.ReplicationControllerCondition": {
9413      "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
9414      "properties": {
9415        "lastTransitionTime": {
9416          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9417          "description": "The last time the condition transitioned from one status to another."
9418        },
9419        "message": {
9420          "description": "A human readable message indicating details about the transition.",
9421          "type": "string"
9422        },
9423        "reason": {
9424          "description": "The reason for the condition's last transition.",
9425          "type": "string"
9426        },
9427        "status": {
9428          "description": "Status of the condition, one of True, False, Unknown.",
9429          "type": "string"
9430        },
9431        "type": {
9432          "description": "Type of replication controller condition.",
9433          "type": "string"
9434        }
9435      },
9436      "required": [
9437        "type",
9438        "status"
9439      ],
9440      "type": "object"
9441    },
9442    "io.k8s.api.core.v1.ReplicationControllerList": {
9443      "description": "ReplicationControllerList is a collection of replication controllers.",
9444      "properties": {
9445        "apiVersion": {
9446          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9447          "type": "string"
9448        },
9449        "items": {
9450          "description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
9451          "items": {
9452            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
9453          },
9454          "type": "array"
9455        },
9456        "kind": {
9457          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9458          "type": "string"
9459        },
9460        "metadata": {
9461          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9462          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9463        }
9464      },
9465      "required": [
9466        "items"
9467      ],
9468      "type": "object",
9469      "x-kubernetes-group-version-kind": [
9470        {
9471          "group": "",
9472          "kind": "ReplicationControllerList",
9473          "version": "v1"
9474        }
9475      ]
9476    },
9477    "io.k8s.api.core.v1.ReplicationControllerSpec": {
9478      "description": "ReplicationControllerSpec is the specification of a replication controller.",
9479      "properties": {
9480        "minReadySeconds": {
9481          "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)",
9482          "format": "int32",
9483          "type": "integer"
9484        },
9485        "replicas": {
9486          "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",
9487          "format": "int32",
9488          "type": "integer"
9489        },
9490        "selector": {
9491          "additionalProperties": {
9492            "type": "string"
9493          },
9494          "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",
9495          "type": "object"
9496        },
9497        "template": {
9498          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
9499          "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"
9500        }
9501      },
9502      "type": "object"
9503    },
9504    "io.k8s.api.core.v1.ReplicationControllerStatus": {
9505      "description": "ReplicationControllerStatus represents the current status of a replication controller.",
9506      "properties": {
9507        "availableReplicas": {
9508          "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
9509          "format": "int32",
9510          "type": "integer"
9511        },
9512        "conditions": {
9513          "description": "Represents the latest available observations of a replication controller's current state.",
9514          "items": {
9515            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerCondition"
9516          },
9517          "type": "array",
9518          "x-kubernetes-patch-merge-key": "type",
9519          "x-kubernetes-patch-strategy": "merge"
9520        },
9521        "fullyLabeledReplicas": {
9522          "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
9523          "format": "int32",
9524          "type": "integer"
9525        },
9526        "observedGeneration": {
9527          "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
9528          "format": "int64",
9529          "type": "integer"
9530        },
9531        "readyReplicas": {
9532          "description": "The number of ready replicas for this replication controller.",
9533          "format": "int32",
9534          "type": "integer"
9535        },
9536        "replicas": {
9537          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
9538          "format": "int32",
9539          "type": "integer"
9540        }
9541      },
9542      "required": [
9543        "replicas"
9544      ],
9545      "type": "object"
9546    },
9547    "io.k8s.api.core.v1.ResourceFieldSelector": {
9548      "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
9549      "properties": {
9550        "containerName": {
9551          "description": "Container name: required for volumes, optional for env vars",
9552          "type": "string"
9553        },
9554        "divisor": {
9555          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
9556          "description": "Specifies the output format of the exposed resources, defaults to \"1\""
9557        },
9558        "resource": {
9559          "description": "Required: resource to select",
9560          "type": "string"
9561        }
9562      },
9563      "required": [
9564        "resource"
9565      ],
9566      "type": "object"
9567    },
9568    "io.k8s.api.core.v1.ResourceQuota": {
9569      "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace",
9570      "properties": {
9571        "apiVersion": {
9572          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9573          "type": "string"
9574        },
9575        "kind": {
9576          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9577          "type": "string"
9578        },
9579        "metadata": {
9580          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9581          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9582        },
9583        "spec": {
9584          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaSpec",
9585          "description": "Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9586        },
9587        "status": {
9588          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaStatus",
9589          "description": "Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9590        }
9591      },
9592      "type": "object",
9593      "x-kubernetes-group-version-kind": [
9594        {
9595          "group": "",
9596          "kind": "ResourceQuota",
9597          "version": "v1"
9598        }
9599      ]
9600    },
9601    "io.k8s.api.core.v1.ResourceQuotaList": {
9602      "description": "ResourceQuotaList is a list of ResourceQuota items.",
9603      "properties": {
9604        "apiVersion": {
9605          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9606          "type": "string"
9607        },
9608        "items": {
9609          "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
9610          "items": {
9611            "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
9612          },
9613          "type": "array"
9614        },
9615        "kind": {
9616          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9617          "type": "string"
9618        },
9619        "metadata": {
9620          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9621          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9622        }
9623      },
9624      "required": [
9625        "items"
9626      ],
9627      "type": "object",
9628      "x-kubernetes-group-version-kind": [
9629        {
9630          "group": "",
9631          "kind": "ResourceQuotaList",
9632          "version": "v1"
9633        }
9634      ]
9635    },
9636    "io.k8s.api.core.v1.ResourceQuotaSpec": {
9637      "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
9638      "properties": {
9639        "hard": {
9640          "additionalProperties": {
9641            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9642          },
9643          "description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
9644          "type": "object"
9645        },
9646        "scopeSelector": {
9647          "$ref": "#/definitions/io.k8s.api.core.v1.ScopeSelector",
9648          "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."
9649        },
9650        "scopes": {
9651          "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
9652          "items": {
9653            "type": "string"
9654          },
9655          "type": "array"
9656        }
9657      },
9658      "type": "object"
9659    },
9660    "io.k8s.api.core.v1.ResourceQuotaStatus": {
9661      "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
9662      "properties": {
9663        "hard": {
9664          "additionalProperties": {
9665            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9666          },
9667          "description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
9668          "type": "object"
9669        },
9670        "used": {
9671          "additionalProperties": {
9672            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9673          },
9674          "description": "Used is the current observed total usage of the resource in the namespace.",
9675          "type": "object"
9676        }
9677      },
9678      "type": "object"
9679    },
9680    "io.k8s.api.core.v1.ResourceRequirements": {
9681      "description": "ResourceRequirements describes the compute resource requirements.",
9682      "properties": {
9683        "limits": {
9684          "additionalProperties": {
9685            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9686          },
9687          "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
9688          "type": "object"
9689        },
9690        "requests": {
9691          "additionalProperties": {
9692            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9693          },
9694          "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
9695          "type": "object"
9696        }
9697      },
9698      "type": "object"
9699    },
9700    "io.k8s.api.core.v1.SELinuxOptions": {
9701      "description": "SELinuxOptions are the labels to be applied to the container",
9702      "properties": {
9703        "level": {
9704          "description": "Level is SELinux level label that applies to the container.",
9705          "type": "string"
9706        },
9707        "role": {
9708          "description": "Role is a SELinux role label that applies to the container.",
9709          "type": "string"
9710        },
9711        "type": {
9712          "description": "Type is a SELinux type label that applies to the container.",
9713          "type": "string"
9714        },
9715        "user": {
9716          "description": "User is a SELinux user label that applies to the container.",
9717          "type": "string"
9718        }
9719      },
9720      "type": "object"
9721    },
9722    "io.k8s.api.core.v1.ScaleIOPersistentVolumeSource": {
9723      "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume",
9724      "properties": {
9725        "fsType": {
9726          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"",
9727          "type": "string"
9728        },
9729        "gateway": {
9730          "description": "The host address of the ScaleIO API Gateway.",
9731          "type": "string"
9732        },
9733        "protectionDomain": {
9734          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
9735          "type": "string"
9736        },
9737        "readOnly": {
9738          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9739          "type": "boolean"
9740        },
9741        "secretRef": {
9742          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
9743          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
9744        },
9745        "sslEnabled": {
9746          "description": "Flag to enable/disable SSL communication with Gateway, default false",
9747          "type": "boolean"
9748        },
9749        "storageMode": {
9750          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
9751          "type": "string"
9752        },
9753        "storagePool": {
9754          "description": "The ScaleIO Storage Pool associated with the protection domain.",
9755          "type": "string"
9756        },
9757        "system": {
9758          "description": "The name of the storage system as configured in ScaleIO.",
9759          "type": "string"
9760        },
9761        "volumeName": {
9762          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
9763          "type": "string"
9764        }
9765      },
9766      "required": [
9767        "gateway",
9768        "system",
9769        "secretRef"
9770      ],
9771      "type": "object"
9772    },
9773    "io.k8s.api.core.v1.ScaleIOVolumeSource": {
9774      "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
9775      "properties": {
9776        "fsType": {
9777          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
9778          "type": "string"
9779        },
9780        "gateway": {
9781          "description": "The host address of the ScaleIO API Gateway.",
9782          "type": "string"
9783        },
9784        "protectionDomain": {
9785          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
9786          "type": "string"
9787        },
9788        "readOnly": {
9789          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9790          "type": "boolean"
9791        },
9792        "secretRef": {
9793          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
9794          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
9795        },
9796        "sslEnabled": {
9797          "description": "Flag to enable/disable SSL communication with Gateway, default false",
9798          "type": "boolean"
9799        },
9800        "storageMode": {
9801          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
9802          "type": "string"
9803        },
9804        "storagePool": {
9805          "description": "The ScaleIO Storage Pool associated with the protection domain.",
9806          "type": "string"
9807        },
9808        "system": {
9809          "description": "The name of the storage system as configured in ScaleIO.",
9810          "type": "string"
9811        },
9812        "volumeName": {
9813          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
9814          "type": "string"
9815        }
9816      },
9817      "required": [
9818        "gateway",
9819        "system",
9820        "secretRef"
9821      ],
9822      "type": "object"
9823    },
9824    "io.k8s.api.core.v1.ScopeSelector": {
9825      "description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.",
9826      "properties": {
9827        "matchExpressions": {
9828          "description": "A list of scope selector requirements by scope of the resources.",
9829          "items": {
9830            "$ref": "#/definitions/io.k8s.api.core.v1.ScopedResourceSelectorRequirement"
9831          },
9832          "type": "array"
9833        }
9834      },
9835      "type": "object"
9836    },
9837    "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": {
9838      "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.",
9839      "properties": {
9840        "operator": {
9841          "description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.",
9842          "type": "string"
9843        },
9844        "scopeName": {
9845          "description": "The name of the scope that the selector applies to.",
9846          "type": "string"
9847        },
9848        "values": {
9849          "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.",
9850          "items": {
9851            "type": "string"
9852          },
9853          "type": "array"
9854        }
9855      },
9856      "required": [
9857        "scopeName",
9858        "operator"
9859      ],
9860      "type": "object"
9861    },
9862    "io.k8s.api.core.v1.SeccompProfile": {
9863      "description": "SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.",
9864      "properties": {
9865        "localhostProfile": {
9866          "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \"Localhost\".",
9867          "type": "string"
9868        },
9869        "type": {
9870          "description": "type indicates which kind of seccomp profile will be applied. Valid options are:\n\nLocalhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.",
9871          "type": "string"
9872        }
9873      },
9874      "required": [
9875        "type"
9876      ],
9877      "type": "object",
9878      "x-kubernetes-unions": [
9879        {
9880          "discriminator": "type",
9881          "fields-to-discriminateBy": {
9882            "localhostProfile": "LocalhostProfile"
9883          }
9884        }
9885      ]
9886    },
9887    "io.k8s.api.core.v1.Secret": {
9888      "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.",
9889      "properties": {
9890        "apiVersion": {
9891          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9892          "type": "string"
9893        },
9894        "data": {
9895          "additionalProperties": {
9896            "format": "byte",
9897            "type": "string"
9898          },
9899          "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",
9900          "type": "object"
9901        },
9902        "immutable": {
9903          "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.",
9904          "type": "boolean"
9905        },
9906        "kind": {
9907          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9908          "type": "string"
9909        },
9910        "metadata": {
9911          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9912          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9913        },
9914        "stringData": {
9915          "additionalProperties": {
9916            "type": "string"
9917          },
9918          "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.",
9919          "type": "object"
9920        },
9921        "type": {
9922          "description": "Used to facilitate programmatic handling of secret data.",
9923          "type": "string"
9924        }
9925      },
9926      "type": "object",
9927      "x-kubernetes-group-version-kind": [
9928        {
9929          "group": "",
9930          "kind": "Secret",
9931          "version": "v1"
9932        }
9933      ]
9934    },
9935    "io.k8s.api.core.v1.SecretEnvSource": {
9936      "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.",
9937      "properties": {
9938        "name": {
9939          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
9940          "type": "string"
9941        },
9942        "optional": {
9943          "description": "Specify whether the Secret must be defined",
9944          "type": "boolean"
9945        }
9946      },
9947      "type": "object"
9948    },
9949    "io.k8s.api.core.v1.SecretKeySelector": {
9950      "description": "SecretKeySelector selects a key of a Secret.",
9951      "properties": {
9952        "key": {
9953          "description": "The key of the secret to select from.  Must be a valid secret key.",
9954          "type": "string"
9955        },
9956        "name": {
9957          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
9958          "type": "string"
9959        },
9960        "optional": {
9961          "description": "Specify whether the Secret or its key must be defined",
9962          "type": "boolean"
9963        }
9964      },
9965      "required": [
9966        "key"
9967      ],
9968      "type": "object"
9969    },
9970    "io.k8s.api.core.v1.SecretList": {
9971      "description": "SecretList is a list of Secret.",
9972      "properties": {
9973        "apiVersion": {
9974          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9975          "type": "string"
9976        },
9977        "items": {
9978          "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret",
9979          "items": {
9980            "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
9981          },
9982          "type": "array"
9983        },
9984        "kind": {
9985          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9986          "type": "string"
9987        },
9988        "metadata": {
9989          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9990          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9991        }
9992      },
9993      "required": [
9994        "items"
9995      ],
9996      "type": "object",
9997      "x-kubernetes-group-version-kind": [
9998        {
9999          "group": "",
10000          "kind": "SecretList",
10001          "version": "v1"
10002        }
10003      ]
10004    },
10005    "io.k8s.api.core.v1.SecretProjection": {
10006      "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.",
10007      "properties": {
10008        "items": {
10009          "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 '..'.",
10010          "items": {
10011            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
10012          },
10013          "type": "array"
10014        },
10015        "name": {
10016          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
10017          "type": "string"
10018        },
10019        "optional": {
10020          "description": "Specify whether the Secret or its key must be defined",
10021          "type": "boolean"
10022        }
10023      },
10024      "type": "object"
10025    },
10026    "io.k8s.api.core.v1.SecretReference": {
10027      "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
10028      "properties": {
10029        "name": {
10030          "description": "Name is unique within a namespace to reference a secret resource.",
10031          "type": "string"
10032        },
10033        "namespace": {
10034          "description": "Namespace defines the space within which the secret name must be unique.",
10035          "type": "string"
10036        }
10037      },
10038      "type": "object"
10039    },
10040    "io.k8s.api.core.v1.SecretVolumeSource": {
10041      "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.",
10042      "properties": {
10043        "defaultMode": {
10044          "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
10045          "format": "int32",
10046          "type": "integer"
10047        },
10048        "items": {
10049          "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 '..'.",
10050          "items": {
10051            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
10052          },
10053          "type": "array"
10054        },
10055        "optional": {
10056          "description": "Specify whether the Secret or its keys must be defined",
10057          "type": "boolean"
10058        },
10059        "secretName": {
10060          "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
10061          "type": "string"
10062        }
10063      },
10064      "type": "object"
10065    },
10066    "io.k8s.api.core.v1.SecurityContext": {
10067      "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.",
10068      "properties": {
10069        "allowPrivilegeEscalation": {
10070          "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",
10071          "type": "boolean"
10072        },
10073        "capabilities": {
10074          "$ref": "#/definitions/io.k8s.api.core.v1.Capabilities",
10075          "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
10076        },
10077        "privileged": {
10078          "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
10079          "type": "boolean"
10080        },
10081        "procMount": {
10082          "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.",
10083          "type": "string"
10084        },
10085        "readOnlyRootFilesystem": {
10086          "description": "Whether this container has a read-only root filesystem. Default is false.",
10087          "type": "boolean"
10088        },
10089        "runAsGroup": {
10090          "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.",
10091          "format": "int64",
10092          "type": "integer"
10093        },
10094        "runAsNonRoot": {
10095          "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.",
10096          "type": "boolean"
10097        },
10098        "runAsUser": {
10099          "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.",
10100          "format": "int64",
10101          "type": "integer"
10102        },
10103        "seLinuxOptions": {
10104          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
10105          "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."
10106        },
10107        "seccompProfile": {
10108          "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile",
10109          "description": "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options."
10110        },
10111        "windowsOptions": {
10112          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
10113          "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."
10114        }
10115      },
10116      "type": "object"
10117    },
10118    "io.k8s.api.core.v1.Service": {
10119      "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.",
10120      "properties": {
10121        "apiVersion": {
10122          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10123          "type": "string"
10124        },
10125        "kind": {
10126          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10127          "type": "string"
10128        },
10129        "metadata": {
10130          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10131          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10132        },
10133        "spec": {
10134          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceSpec",
10135          "description": "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
10136        },
10137        "status": {
10138          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceStatus",
10139          "description": "Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
10140        }
10141      },
10142      "type": "object",
10143      "x-kubernetes-group-version-kind": [
10144        {
10145          "group": "",
10146          "kind": "Service",
10147          "version": "v1"
10148        }
10149      ]
10150    },
10151    "io.k8s.api.core.v1.ServiceAccount": {
10152      "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",
10153      "properties": {
10154        "apiVersion": {
10155          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10156          "type": "string"
10157        },
10158        "automountServiceAccountToken": {
10159          "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.",
10160          "type": "boolean"
10161        },
10162        "imagePullSecrets": {
10163          "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",
10164          "items": {
10165            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
10166          },
10167          "type": "array"
10168        },
10169        "kind": {
10170          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10171          "type": "string"
10172        },
10173        "metadata": {
10174          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10175          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10176        },
10177        "secrets": {
10178          "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",
10179          "items": {
10180            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
10181          },
10182          "type": "array",
10183          "x-kubernetes-patch-merge-key": "name",
10184          "x-kubernetes-patch-strategy": "merge"
10185        }
10186      },
10187      "type": "object",
10188      "x-kubernetes-group-version-kind": [
10189        {
10190          "group": "",
10191          "kind": "ServiceAccount",
10192          "version": "v1"
10193        }
10194      ]
10195    },
10196    "io.k8s.api.core.v1.ServiceAccountList": {
10197      "description": "ServiceAccountList is a list of ServiceAccount objects",
10198      "properties": {
10199        "apiVersion": {
10200          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10201          "type": "string"
10202        },
10203        "items": {
10204          "description": "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
10205          "items": {
10206            "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
10207          },
10208          "type": "array"
10209        },
10210        "kind": {
10211          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10212          "type": "string"
10213        },
10214        "metadata": {
10215          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10216          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
10217        }
10218      },
10219      "required": [
10220        "items"
10221      ],
10222      "type": "object",
10223      "x-kubernetes-group-version-kind": [
10224        {
10225          "group": "",
10226          "kind": "ServiceAccountList",
10227          "version": "v1"
10228        }
10229      ]
10230    },
10231    "io.k8s.api.core.v1.ServiceAccountTokenProjection": {
10232      "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).",
10233      "properties": {
10234        "audience": {
10235          "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.",
10236          "type": "string"
10237        },
10238        "expirationSeconds": {
10239          "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.",
10240          "format": "int64",
10241          "type": "integer"
10242        },
10243        "path": {
10244          "description": "Path is the path relative to the mount point of the file to project the token into.",
10245          "type": "string"
10246        }
10247      },
10248      "required": [
10249        "path"
10250      ],
10251      "type": "object"
10252    },
10253    "io.k8s.api.core.v1.ServiceList": {
10254      "description": "ServiceList holds a list of services.",
10255      "properties": {
10256        "apiVersion": {
10257          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10258          "type": "string"
10259        },
10260        "items": {
10261          "description": "List of services",
10262          "items": {
10263            "$ref": "#/definitions/io.k8s.api.core.v1.Service"
10264          },
10265          "type": "array"
10266        },
10267        "kind": {
10268          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10269          "type": "string"
10270        },
10271        "metadata": {
10272          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10273          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
10274        }
10275      },
10276      "required": [
10277        "items"
10278      ],
10279      "type": "object",
10280      "x-kubernetes-group-version-kind": [
10281        {
10282          "group": "",
10283          "kind": "ServiceList",
10284          "version": "v1"
10285        }
10286      ]
10287    },
10288    "io.k8s.api.core.v1.ServicePort": {
10289      "description": "ServicePort contains information on service's port.",
10290      "properties": {
10291        "appProtocol": {
10292          "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. This is a beta field that is guarded by the ServiceAppProtocol feature gate and enabled by default.",
10293          "type": "string"
10294        },
10295        "name": {
10296          "description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service.",
10297          "type": "string"
10298        },
10299        "nodePort": {
10300          "description": "The port on each node on which this service is exposed when type is NodePort or LoadBalancer.  Usually assigned by the system. If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail.  If not specified, a port will be allocated if this Service requires one.  If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type from NodePort to ClusterIP). More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport",
10301          "format": "int32",
10302          "type": "integer"
10303        },
10304        "port": {
10305          "description": "The port that will be exposed by this service.",
10306          "format": "int32",
10307          "type": "integer"
10308        },
10309        "protocol": {
10310          "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.",
10311          "type": "string"
10312        },
10313        "targetPort": {
10314          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
10315          "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"
10316        }
10317      },
10318      "required": [
10319        "port"
10320      ],
10321      "type": "object"
10322    },
10323    "io.k8s.api.core.v1.ServiceSpec": {
10324      "description": "ServiceSpec describes the attributes that a user creates on a service.",
10325      "properties": {
10326        "allocateLoadBalancerNodePorts": {
10327          "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer.  Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts. allocateLoadBalancerNodePorts may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type. This field is alpha-level and is only honored by servers that enable the ServiceLBNodePortControl feature.",
10328          "type": "boolean"
10329        },
10330        "clusterIP": {
10331          "description": "clusterIP is the IP address of the service and is usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above).  Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required.  Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
10332          "type": "string"
10333        },
10334        "clusterIPs": {
10335          "description": "ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly.  If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above).  Valid values are \"None\", empty string (\"\"), or a valid IP address.  Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required.  Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName.  If this field is not specified, it will be initialized from the clusterIP field.  If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value.\n\nUnless the \"IPv6DualStack\" feature gate is enabled, this field is limited to one value, which must be the same as the clusterIP field.  If the feature gate is enabled, this field may hold a maximum of two entries (dual-stack IPs, in either order).  These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
10336          "items": {
10337            "type": "string"
10338          },
10339          "type": "array",
10340          "x-kubernetes-list-type": "atomic"
10341        },
10342        "externalIPs": {
10343          "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.",
10344          "items": {
10345            "type": "string"
10346          },
10347          "type": "array"
10348        },
10349        "externalName": {
10350          "description": "externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved.  Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be \"ExternalName\".",
10351          "type": "string"
10352        },
10353        "externalTrafficPolicy": {
10354          "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.",
10355          "type": "string"
10356        },
10357        "healthCheckNodePort": {
10358          "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used.  If not specified, a value will be automatically allocated.  External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not.  If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type).",
10359          "format": "int32",
10360          "type": "integer"
10361        },
10362        "ipFamilies": {
10363          "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service, and is gated by the \"IPv6DualStack\" feature gate.  This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail.  This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service.  Valid values are \"IPv4\" and \"IPv6\".  This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \"headless\" services.  This field will be wiped when updating a Service to type ExternalName.\n\nThis field may hold a maximum of two entries (dual-stack families, in either order).  These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.",
10364          "items": {
10365            "type": "string"
10366          },
10367          "type": "array",
10368          "x-kubernetes-list-type": "atomic"
10369        },
10370        "ipFamilyPolicy": {
10371          "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service, and is gated by the \"IPv6DualStack\" feature gate.  If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field.  This field will be wiped when updating a service to type ExternalName.",
10372          "type": "string"
10373        },
10374        "loadBalancerIP": {
10375          "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.",
10376          "type": "string"
10377        },
10378        "loadBalancerSourceRanges": {
10379          "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/",
10380          "items": {
10381            "type": "string"
10382          },
10383          "type": "array"
10384        },
10385        "ports": {
10386          "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",
10387          "items": {
10388            "$ref": "#/definitions/io.k8s.api.core.v1.ServicePort"
10389          },
10390          "type": "array",
10391          "x-kubernetes-list-map-keys": [
10392            "port",
10393            "protocol"
10394          ],
10395          "x-kubernetes-list-type": "map",
10396          "x-kubernetes-patch-merge-key": "port",
10397          "x-kubernetes-patch-strategy": "merge"
10398        },
10399        "publishNotReadyAddresses": {
10400          "description": "publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready. The primary use case for setting this field is for a StatefulSet's Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery. The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered \"ready\" even if the Pods themselves are not. Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior.",
10401          "type": "boolean"
10402        },
10403        "selector": {
10404          "additionalProperties": {
10405            "type": "string"
10406          },
10407          "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/",
10408          "type": "object"
10409        },
10410        "sessionAffinity": {
10411          "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",
10412          "type": "string"
10413        },
10414        "sessionAffinityConfig": {
10415          "$ref": "#/definitions/io.k8s.api.core.v1.SessionAffinityConfig",
10416          "description": "sessionAffinityConfig contains the configurations of session affinity."
10417        },
10418        "topologyKeys": {
10419          "description": "topologyKeys is a preference-order list of topology keys which implementations of services should use to preferentially sort endpoints when accessing this Service, it can not be used at the same time as externalTrafficPolicy=Local. Topology keys must be valid label keys and at most 16 keys may be specified. Endpoints are chosen based on the first topology key with available backends. If this field is specified and all entries have no backends that match the topology of the client, the service has no backends for that client and connections should fail. The special value \"*\" may be used to mean \"any topology\". This catch-all value, if used, only makes sense as the last value in the list. If this is not specified or empty, no topology constraints will be applied. This field is alpha-level and is only honored by servers that enable the ServiceTopology feature. This field is deprecated and will be removed in a future version.",
10420          "items": {
10421            "type": "string"
10422          },
10423          "type": "array"
10424        },
10425        "type": {
10426          "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. \"ExternalName\" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types",
10427          "type": "string"
10428        }
10429      },
10430      "type": "object"
10431    },
10432    "io.k8s.api.core.v1.ServiceStatus": {
10433      "description": "ServiceStatus represents the current status of a service.",
10434      "properties": {
10435        "conditions": {
10436          "description": "Current service state",
10437          "items": {
10438            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
10439          },
10440          "type": "array",
10441          "x-kubernetes-list-map-keys": [
10442            "type"
10443          ],
10444          "x-kubernetes-list-type": "map",
10445          "x-kubernetes-patch-merge-key": "type",
10446          "x-kubernetes-patch-strategy": "merge"
10447        },
10448        "loadBalancer": {
10449          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
10450          "description": "LoadBalancer contains the current status of the load-balancer, if one is present."
10451        }
10452      },
10453      "type": "object"
10454    },
10455    "io.k8s.api.core.v1.SessionAffinityConfig": {
10456      "description": "SessionAffinityConfig represents the configurations of session affinity.",
10457      "properties": {
10458        "clientIP": {
10459          "$ref": "#/definitions/io.k8s.api.core.v1.ClientIPConfig",
10460          "description": "clientIP contains the configurations of Client IP based session affinity."
10461        }
10462      },
10463      "type": "object"
10464    },
10465    "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": {
10466      "description": "Represents a StorageOS persistent volume resource.",
10467      "properties": {
10468        "fsType": {
10469          "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.",
10470          "type": "string"
10471        },
10472        "readOnly": {
10473          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10474          "type": "boolean"
10475        },
10476        "secretRef": {
10477          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10478          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
10479        },
10480        "volumeName": {
10481          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
10482          "type": "string"
10483        },
10484        "volumeNamespace": {
10485          "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.",
10486          "type": "string"
10487        }
10488      },
10489      "type": "object"
10490    },
10491    "io.k8s.api.core.v1.StorageOSVolumeSource": {
10492      "description": "Represents a StorageOS persistent volume resource.",
10493      "properties": {
10494        "fsType": {
10495          "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.",
10496          "type": "string"
10497        },
10498        "readOnly": {
10499          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10500          "type": "boolean"
10501        },
10502        "secretRef": {
10503          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
10504          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
10505        },
10506        "volumeName": {
10507          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
10508          "type": "string"
10509        },
10510        "volumeNamespace": {
10511          "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.",
10512          "type": "string"
10513        }
10514      },
10515      "type": "object"
10516    },
10517    "io.k8s.api.core.v1.Sysctl": {
10518      "description": "Sysctl defines a kernel parameter to be set",
10519      "properties": {
10520        "name": {
10521          "description": "Name of a property to set",
10522          "type": "string"
10523        },
10524        "value": {
10525          "description": "Value of a property to set",
10526          "type": "string"
10527        }
10528      },
10529      "required": [
10530        "name",
10531        "value"
10532      ],
10533      "type": "object"
10534    },
10535    "io.k8s.api.core.v1.TCPSocketAction": {
10536      "description": "TCPSocketAction describes an action based on opening a socket",
10537      "properties": {
10538        "host": {
10539          "description": "Optional: Host name to connect to, defaults to the pod IP.",
10540          "type": "string"
10541        },
10542        "port": {
10543          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
10544          "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."
10545        }
10546      },
10547      "required": [
10548        "port"
10549      ],
10550      "type": "object"
10551    },
10552    "io.k8s.api.core.v1.Taint": {
10553      "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
10554      "properties": {
10555        "effect": {
10556          "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
10557          "type": "string"
10558        },
10559        "key": {
10560          "description": "Required. The taint key to be applied to a node.",
10561          "type": "string"
10562        },
10563        "timeAdded": {
10564          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10565          "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints."
10566        },
10567        "value": {
10568          "description": "The taint value corresponding to the taint key.",
10569          "type": "string"
10570        }
10571      },
10572      "required": [
10573        "key",
10574        "effect"
10575      ],
10576      "type": "object"
10577    },
10578    "io.k8s.api.core.v1.Toleration": {
10579      "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
10580      "properties": {
10581        "effect": {
10582          "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
10583          "type": "string"
10584        },
10585        "key": {
10586          "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.",
10587          "type": "string"
10588        },
10589        "operator": {
10590          "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.",
10591          "type": "string"
10592        },
10593        "tolerationSeconds": {
10594          "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.",
10595          "format": "int64",
10596          "type": "integer"
10597        },
10598        "value": {
10599          "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.",
10600          "type": "string"
10601        }
10602      },
10603      "type": "object"
10604    },
10605    "io.k8s.api.core.v1.TopologySelectorLabelRequirement": {
10606      "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.",
10607      "properties": {
10608        "key": {
10609          "description": "The label key that the selector applies to.",
10610          "type": "string"
10611        },
10612        "values": {
10613          "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
10614          "items": {
10615            "type": "string"
10616          },
10617          "type": "array"
10618        }
10619      },
10620      "required": [
10621        "key",
10622        "values"
10623      ],
10624      "type": "object"
10625    },
10626    "io.k8s.api.core.v1.TopologySelectorTerm": {
10627      "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.",
10628      "properties": {
10629        "matchLabelExpressions": {
10630          "description": "A list of topology selector requirements by labels.",
10631          "items": {
10632            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorLabelRequirement"
10633          },
10634          "type": "array"
10635        }
10636      },
10637      "type": "object"
10638    },
10639    "io.k8s.api.core.v1.TopologySpreadConstraint": {
10640      "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
10641      "properties": {
10642        "labelSelector": {
10643          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
10644          "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."
10645        },
10646        "maxSkew": {
10647          "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | |   P   |   P   |       | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.",
10648          "format": "int32",
10649          "type": "integer"
10650        },
10651        "topologyKey": {
10652          "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.",
10653          "type": "string"
10654        },
10655        "whenUnsatisfiable": {
10656          "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n  but giving higher precedence to topologies that would help reduce the\n  skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assigment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
10657          "type": "string"
10658        }
10659      },
10660      "required": [
10661        "maxSkew",
10662        "topologyKey",
10663        "whenUnsatisfiable"
10664      ],
10665      "type": "object"
10666    },
10667    "io.k8s.api.core.v1.TypedLocalObjectReference": {
10668      "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
10669      "properties": {
10670        "apiGroup": {
10671          "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.",
10672          "type": "string"
10673        },
10674        "kind": {
10675          "description": "Kind is the type of resource being referenced",
10676          "type": "string"
10677        },
10678        "name": {
10679          "description": "Name is the name of resource being referenced",
10680          "type": "string"
10681        }
10682      },
10683      "required": [
10684        "kind",
10685        "name"
10686      ],
10687      "type": "object"
10688    },
10689    "io.k8s.api.core.v1.Volume": {
10690      "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
10691      "properties": {
10692        "awsElasticBlockStore": {
10693          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
10694          "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"
10695        },
10696        "azureDisk": {
10697          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
10698          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
10699        },
10700        "azureFile": {
10701          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource",
10702          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
10703        },
10704        "cephfs": {
10705          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource",
10706          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
10707        },
10708        "cinder": {
10709          "$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
10710          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
10711        },
10712        "configMap": {
10713          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource",
10714          "description": "ConfigMap represents a configMap that should populate this volume"
10715        },
10716        "csi": {
10717          "$ref": "#/definitions/io.k8s.api.core.v1.CSIVolumeSource",
10718          "description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
10719        },
10720        "downwardAPI": {
10721          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource",
10722          "description": "DownwardAPI represents downward API about the pod that should populate this volume"
10723        },
10724        "emptyDir": {
10725          "$ref": "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource",
10726          "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
10727        },
10728        "ephemeral": {
10729          "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource",
10730          "description": "Ephemeral represents a volume that is handled by a cluster storage driver (Alpha feature). The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n   tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n   a PersistentVolumeClaim (see EphemeralVolumeSource for more\n   information on the connection between this volume type\n   and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
10731        },
10732        "fc": {
10733          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
10734          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
10735        },
10736        "flexVolume": {
10737          "$ref": "#/definitions/io.k8s.api.core.v1.FlexVolumeSource",
10738          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
10739        },
10740        "flocker": {
10741          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
10742          "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
10743        },
10744        "gcePersistentDisk": {
10745          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
10746          "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"
10747        },
10748        "gitRepo": {
10749          "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource",
10750          "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."
10751        },
10752        "glusterfs": {
10753          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource",
10754          "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
10755        },
10756        "hostPath": {
10757          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
10758          "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"
10759        },
10760        "iscsi": {
10761          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource",
10762          "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
10763        },
10764        "name": {
10765          "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",
10766          "type": "string"
10767        },
10768        "nfs": {
10769          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
10770          "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"
10771        },
10772        "persistentVolumeClaim": {
10773          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
10774          "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
10775        },
10776        "photonPersistentDisk": {
10777          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
10778          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
10779        },
10780        "portworxVolume": {
10781          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
10782          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
10783        },
10784        "projected": {
10785          "$ref": "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource",
10786          "description": "Items for all in one resources secrets, configmaps, and downward API"
10787        },
10788        "quobyte": {
10789          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
10790          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
10791        },
10792        "rbd": {
10793          "$ref": "#/definitions/io.k8s.api.core.v1.RBDVolumeSource",
10794          "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
10795        },
10796        "scaleIO": {
10797          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource",
10798          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
10799        },
10800        "secret": {
10801          "$ref": "#/definitions/io.k8s.api.core.v1.SecretVolumeSource",
10802          "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
10803        },
10804        "storageos": {
10805          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource",
10806          "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
10807        },
10808        "vsphereVolume": {
10809          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
10810          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
10811        }
10812      },
10813      "required": [
10814        "name"
10815      ],
10816      "type": "object"
10817    },
10818    "io.k8s.api.core.v1.VolumeDevice": {
10819      "description": "volumeDevice describes a mapping of a raw block device within a container.",
10820      "properties": {
10821        "devicePath": {
10822          "description": "devicePath is the path inside of the container that the device will be mapped to.",
10823          "type": "string"
10824        },
10825        "name": {
10826          "description": "name must match the name of a persistentVolumeClaim in the pod",
10827          "type": "string"
10828        }
10829      },
10830      "required": [
10831        "name",
10832        "devicePath"
10833      ],
10834      "type": "object"
10835    },
10836    "io.k8s.api.core.v1.VolumeMount": {
10837      "description": "VolumeMount describes a mounting of a Volume within a container.",
10838      "properties": {
10839        "mountPath": {
10840          "description": "Path within the container at which the volume should be mounted.  Must not contain ':'.",
10841          "type": "string"
10842        },
10843        "mountPropagation": {
10844          "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.",
10845          "type": "string"
10846        },
10847        "name": {
10848          "description": "This must match the Name of a Volume.",
10849          "type": "string"
10850        },
10851        "readOnly": {
10852          "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
10853          "type": "boolean"
10854        },
10855        "subPath": {
10856          "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
10857          "type": "string"
10858        },
10859        "subPathExpr": {
10860          "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.",
10861          "type": "string"
10862        }
10863      },
10864      "required": [
10865        "name",
10866        "mountPath"
10867      ],
10868      "type": "object"
10869    },
10870    "io.k8s.api.core.v1.VolumeNodeAffinity": {
10871      "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
10872      "properties": {
10873        "required": {
10874          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
10875          "description": "Required specifies hard node constraints that must be met."
10876        }
10877      },
10878      "type": "object"
10879    },
10880    "io.k8s.api.core.v1.VolumeProjection": {
10881      "description": "Projection that may be projected along with other supported volume types",
10882      "properties": {
10883        "configMap": {
10884          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapProjection",
10885          "description": "information about the configMap data to project"
10886        },
10887        "downwardAPI": {
10888          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection",
10889          "description": "information about the downwardAPI data to project"
10890        },
10891        "secret": {
10892          "$ref": "#/definitions/io.k8s.api.core.v1.SecretProjection",
10893          "description": "information about the secret data to project"
10894        },
10895        "serviceAccountToken": {
10896          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection",
10897          "description": "information about the serviceAccountToken data to project"
10898        }
10899      },
10900      "type": "object"
10901    },
10902    "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
10903      "description": "Represents a vSphere volume resource.",
10904      "properties": {
10905        "fsType": {
10906          "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.",
10907          "type": "string"
10908        },
10909        "storagePolicyID": {
10910          "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
10911          "type": "string"
10912        },
10913        "storagePolicyName": {
10914          "description": "Storage Policy Based Management (SPBM) profile name.",
10915          "type": "string"
10916        },
10917        "volumePath": {
10918          "description": "Path that identifies vSphere volume vmdk",
10919          "type": "string"
10920        }
10921      },
10922      "required": [
10923        "volumePath"
10924      ],
10925      "type": "object"
10926    },
10927    "io.k8s.api.core.v1.WeightedPodAffinityTerm": {
10928      "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
10929      "properties": {
10930        "podAffinityTerm": {
10931          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm",
10932          "description": "Required. A pod affinity term, associated with the corresponding weight."
10933        },
10934        "weight": {
10935          "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
10936          "format": "int32",
10937          "type": "integer"
10938        }
10939      },
10940      "required": [
10941        "weight",
10942        "podAffinityTerm"
10943      ],
10944      "type": "object"
10945    },
10946    "io.k8s.api.core.v1.WindowsSecurityContextOptions": {
10947      "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
10948      "properties": {
10949        "gmsaCredentialSpec": {
10950          "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.",
10951          "type": "string"
10952        },
10953        "gmsaCredentialSpecName": {
10954          "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
10955          "type": "string"
10956        },
10957        "runAsUserName": {
10958          "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.",
10959          "type": "string"
10960        }
10961      },
10962      "type": "object"
10963    },
10964    "io.k8s.api.discovery.v1beta1.Endpoint": {
10965      "description": "Endpoint represents a single logical \"backend\" implementing a service.",
10966      "properties": {
10967        "addresses": {
10968          "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.",
10969          "items": {
10970            "type": "string"
10971          },
10972          "type": "array",
10973          "x-kubernetes-list-type": "set"
10974        },
10975        "conditions": {
10976          "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointConditions",
10977          "description": "conditions contains information about the current status of the endpoint."
10978        },
10979        "hostname": {
10980          "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.",
10981          "type": "string"
10982        },
10983        "nodeName": {
10984          "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. This field can be enabled with the EndpointSliceNodeName feature gate.",
10985          "type": "string"
10986        },
10987        "targetRef": {
10988          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10989          "description": "targetRef is a reference to a Kubernetes object that represents this endpoint."
10990        },
10991        "topology": {
10992          "additionalProperties": {
10993            "type": "string"
10994          },
10995          "description": "topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n  where the endpoint is located. This should match the corresponding\n  node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n  endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n  endpoint is located. This should match the corresponding node label.\nThis field is deprecated and will be removed in future api versions.",
10996          "type": "object"
10997        }
10998      },
10999      "required": [
11000        "addresses"
11001      ],
11002      "type": "object"
11003    },
11004    "io.k8s.api.discovery.v1beta1.EndpointConditions": {
11005      "description": "EndpointConditions represents the current condition of an endpoint.",
11006      "properties": {
11007        "ready": {
11008          "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints.",
11009          "type": "boolean"
11010        },
11011        "serving": {
11012          "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.",
11013          "type": "boolean"
11014        },
11015        "terminating": {
11016          "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.",
11017          "type": "boolean"
11018        }
11019      },
11020      "type": "object"
11021    },
11022    "io.k8s.api.discovery.v1beta1.EndpointPort": {
11023      "description": "EndpointPort represents a Port used by an EndpointSlice",
11024      "properties": {
11025        "appProtocol": {
11026          "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.",
11027          "type": "string"
11028        },
11029        "name": {
11030          "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.",
11031          "type": "string"
11032        },
11033        "port": {
11034          "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.",
11035          "format": "int32",
11036          "type": "integer"
11037        },
11038        "protocol": {
11039          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
11040          "type": "string"
11041        }
11042      },
11043      "type": "object"
11044    },
11045    "io.k8s.api.discovery.v1beta1.EndpointSlice": {
11046      "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.",
11047      "properties": {
11048        "addressType": {
11049          "description": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.",
11050          "type": "string"
11051        },
11052        "apiVersion": {
11053          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11054          "type": "string"
11055        },
11056        "endpoints": {
11057          "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
11058          "items": {
11059            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.Endpoint"
11060          },
11061          "type": "array",
11062          "x-kubernetes-list-type": "atomic"
11063        },
11064        "kind": {
11065          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11066          "type": "string"
11067        },
11068        "metadata": {
11069          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11070          "description": "Standard object's metadata."
11071        },
11072        "ports": {
11073          "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.",
11074          "items": {
11075            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointPort"
11076          },
11077          "type": "array",
11078          "x-kubernetes-list-type": "atomic"
11079        }
11080      },
11081      "required": [
11082        "addressType",
11083        "endpoints"
11084      ],
11085      "type": "object",
11086      "x-kubernetes-group-version-kind": [
11087        {
11088          "group": "discovery.k8s.io",
11089          "kind": "EndpointSlice",
11090          "version": "v1beta1"
11091        }
11092      ]
11093    },
11094    "io.k8s.api.discovery.v1beta1.EndpointSliceList": {
11095      "description": "EndpointSliceList represents a list of endpoint slices",
11096      "properties": {
11097        "apiVersion": {
11098          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11099          "type": "string"
11100        },
11101        "items": {
11102          "description": "List of endpoint slices",
11103          "items": {
11104            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
11105          },
11106          "type": "array"
11107        },
11108        "kind": {
11109          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11110          "type": "string"
11111        },
11112        "metadata": {
11113          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11114          "description": "Standard list metadata."
11115        }
11116      },
11117      "required": [
11118        "items"
11119      ],
11120      "type": "object",
11121      "x-kubernetes-group-version-kind": [
11122        {
11123          "group": "discovery.k8s.io",
11124          "kind": "EndpointSliceList",
11125          "version": "v1beta1"
11126        }
11127      ]
11128    },
11129    "io.k8s.api.events.v1.Event": {
11130      "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time.  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason.  Events should be treated as informative, best-effort, supplemental data.",
11131      "properties": {
11132        "action": {
11133          "description": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field cannot be empty for new Events and it can have at most 128 characters.",
11134          "type": "string"
11135        },
11136        "apiVersion": {
11137          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11138          "type": "string"
11139        },
11140        "deprecatedCount": {
11141          "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
11142          "format": "int32",
11143          "type": "integer"
11144        },
11145        "deprecatedFirstTimestamp": {
11146          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11147          "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11148        },
11149        "deprecatedLastTimestamp": {
11150          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11151          "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11152        },
11153        "deprecatedSource": {
11154          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
11155          "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type."
11156        },
11157        "eventTime": {
11158          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11159          "description": "eventTime is the time when this Event was first observed. It is required."
11160        },
11161        "kind": {
11162          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11163          "type": "string"
11164        },
11165        "metadata": {
11166          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
11167        },
11168        "note": {
11169          "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
11170          "type": "string"
11171        },
11172        "reason": {
11173          "description": "reason is why the action was taken. It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters.",
11174          "type": "string"
11175        },
11176        "regarding": {
11177          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11178          "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
11179        },
11180        "related": {
11181          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11182          "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
11183        },
11184        "reportingController": {
11185          "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
11186          "type": "string"
11187        },
11188        "reportingInstance": {
11189          "description": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.",
11190          "type": "string"
11191        },
11192        "series": {
11193          "$ref": "#/definitions/io.k8s.api.events.v1.EventSeries",
11194          "description": "series is data about the Event series this event represents or nil if it's a singleton Event."
11195        },
11196        "type": {
11197          "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable. This field cannot be empty for new Events.",
11198          "type": "string"
11199        }
11200      },
11201      "required": [
11202        "metadata",
11203        "eventTime"
11204      ],
11205      "type": "object",
11206      "x-kubernetes-group-version-kind": [
11207        {
11208          "group": "events.k8s.io",
11209          "kind": "Event",
11210          "version": "v1"
11211        }
11212      ]
11213    },
11214    "io.k8s.api.events.v1.EventList": {
11215      "description": "EventList is a list of Event objects.",
11216      "properties": {
11217        "apiVersion": {
11218          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11219          "type": "string"
11220        },
11221        "items": {
11222          "description": "items is a list of schema objects.",
11223          "items": {
11224            "$ref": "#/definitions/io.k8s.api.events.v1.Event"
11225          },
11226          "type": "array"
11227        },
11228        "kind": {
11229          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11230          "type": "string"
11231        },
11232        "metadata": {
11233          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11234          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11235        }
11236      },
11237      "required": [
11238        "items"
11239      ],
11240      "type": "object",
11241      "x-kubernetes-group-version-kind": [
11242        {
11243          "group": "events.k8s.io",
11244          "kind": "EventList",
11245          "version": "v1"
11246        }
11247      ]
11248    },
11249    "io.k8s.api.events.v1.EventSeries": {
11250      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. How often to update the EventSeries is up to the event reporters. The default event reporter in \"k8s.io/client-go/tools/events/event_broadcaster.go\" shows how this struct is updated on heartbeats and can guide customized reporter implementations.",
11251      "properties": {
11252        "count": {
11253          "description": "count is the number of occurrences in this series up to the last heartbeat time.",
11254          "format": "int32",
11255          "type": "integer"
11256        },
11257        "lastObservedTime": {
11258          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11259          "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat."
11260        }
11261      },
11262      "required": [
11263        "count",
11264        "lastObservedTime"
11265      ],
11266      "type": "object"
11267    },
11268    "io.k8s.api.events.v1beta1.Event": {
11269      "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time.  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason.  Events should be treated as informative, best-effort, supplemental data.",
11270      "properties": {
11271        "action": {
11272          "description": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field can have at most 128 characters.",
11273          "type": "string"
11274        },
11275        "apiVersion": {
11276          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11277          "type": "string"
11278        },
11279        "deprecatedCount": {
11280          "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
11281          "format": "int32",
11282          "type": "integer"
11283        },
11284        "deprecatedFirstTimestamp": {
11285          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11286          "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11287        },
11288        "deprecatedLastTimestamp": {
11289          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11290          "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11291        },
11292        "deprecatedSource": {
11293          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
11294          "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type."
11295        },
11296        "eventTime": {
11297          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11298          "description": "eventTime is the time when this Event was first observed. It is required."
11299        },
11300        "kind": {
11301          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11302          "type": "string"
11303        },
11304        "metadata": {
11305          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
11306        },
11307        "note": {
11308          "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
11309          "type": "string"
11310        },
11311        "reason": {
11312          "description": "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.",
11313          "type": "string"
11314        },
11315        "regarding": {
11316          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11317          "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
11318        },
11319        "related": {
11320          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11321          "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
11322        },
11323        "reportingController": {
11324          "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
11325          "type": "string"
11326        },
11327        "reportingInstance": {
11328          "description": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.",
11329          "type": "string"
11330        },
11331        "series": {
11332          "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventSeries",
11333          "description": "series is data about the Event series this event represents or nil if it's a singleton Event."
11334        },
11335        "type": {
11336          "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable.",
11337          "type": "string"
11338        }
11339      },
11340      "required": [
11341        "metadata",
11342        "eventTime"
11343      ],
11344      "type": "object",
11345      "x-kubernetes-group-version-kind": [
11346        {
11347          "group": "events.k8s.io",
11348          "kind": "Event",
11349          "version": "v1beta1"
11350        }
11351      ]
11352    },
11353    "io.k8s.api.events.v1beta1.EventList": {
11354      "description": "EventList is a list of Event objects.",
11355      "properties": {
11356        "apiVersion": {
11357          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11358          "type": "string"
11359        },
11360        "items": {
11361          "description": "items is a list of schema objects.",
11362          "items": {
11363            "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
11364          },
11365          "type": "array"
11366        },
11367        "kind": {
11368          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11369          "type": "string"
11370        },
11371        "metadata": {
11372          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11373          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11374        }
11375      },
11376      "required": [
11377        "items"
11378      ],
11379      "type": "object",
11380      "x-kubernetes-group-version-kind": [
11381        {
11382          "group": "events.k8s.io",
11383          "kind": "EventList",
11384          "version": "v1beta1"
11385        }
11386      ]
11387    },
11388    "io.k8s.api.events.v1beta1.EventSeries": {
11389      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
11390      "properties": {
11391        "count": {
11392          "description": "count is the number of occurrences in this series up to the last heartbeat time.",
11393          "format": "int32",
11394          "type": "integer"
11395        },
11396        "lastObservedTime": {
11397          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11398          "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat."
11399        }
11400      },
11401      "required": [
11402        "count",
11403        "lastObservedTime"
11404      ],
11405      "type": "object"
11406    },
11407    "io.k8s.api.extensions.v1beta1.HTTPIngressPath": {
11408      "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
11409      "properties": {
11410        "backend": {
11411          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend",
11412          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
11413        },
11414        "path": {
11415          "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.",
11416          "type": "string"
11417        },
11418        "pathType": {
11419          "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n  done on a path element by element basis. A path element refers is the\n  list of labels in the path split by the '/' separator. A request is a\n  match for path p if every p is an element-wise prefix of p of the\n  request path. Note that if the last element of the path is a substring\n  of the last element in request path, it is not a match (e.g. /foo/bar\n  matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n  the IngressClass. Implementations can treat this as a separate PathType\n  or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.",
11420          "type": "string"
11421        }
11422      },
11423      "required": [
11424        "backend"
11425      ],
11426      "type": "object"
11427    },
11428    "io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue": {
11429      "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 '#'.",
11430      "properties": {
11431        "paths": {
11432          "description": "A collection of paths that map requests to backends.",
11433          "items": {
11434            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressPath"
11435          },
11436          "type": "array"
11437        }
11438      },
11439      "required": [
11440        "paths"
11441      ],
11442      "type": "object"
11443    },
11444    "io.k8s.api.extensions.v1beta1.Ingress": {
11445      "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.",
11446      "properties": {
11447        "apiVersion": {
11448          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11449          "type": "string"
11450        },
11451        "kind": {
11452          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11453          "type": "string"
11454        },
11455        "metadata": {
11456          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11457          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11458        },
11459        "spec": {
11460          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressSpec",
11461          "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"
11462        },
11463        "status": {
11464          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressStatus",
11465          "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"
11466        }
11467      },
11468      "type": "object",
11469      "x-kubernetes-group-version-kind": [
11470        {
11471          "group": "extensions",
11472          "kind": "Ingress",
11473          "version": "v1beta1"
11474        }
11475      ]
11476    },
11477    "io.k8s.api.extensions.v1beta1.IngressBackend": {
11478      "description": "IngressBackend describes all endpoints for a given service and port.",
11479      "properties": {
11480        "resource": {
11481          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
11482          "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified."
11483        },
11484        "serviceName": {
11485          "description": "Specifies the name of the referenced service.",
11486          "type": "string"
11487        },
11488        "servicePort": {
11489          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
11490          "description": "Specifies the port of the referenced service."
11491        }
11492      },
11493      "type": "object"
11494    },
11495    "io.k8s.api.extensions.v1beta1.IngressList": {
11496      "description": "IngressList is a collection of Ingress.",
11497      "properties": {
11498        "apiVersion": {
11499          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11500          "type": "string"
11501        },
11502        "items": {
11503          "description": "Items is the list of Ingress.",
11504          "items": {
11505            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
11506          },
11507          "type": "array"
11508        },
11509        "kind": {
11510          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11511          "type": "string"
11512        },
11513        "metadata": {
11514          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11515          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11516        }
11517      },
11518      "required": [
11519        "items"
11520      ],
11521      "type": "object",
11522      "x-kubernetes-group-version-kind": [
11523        {
11524          "group": "extensions",
11525          "kind": "IngressList",
11526          "version": "v1beta1"
11527        }
11528      ]
11529    },
11530    "io.k8s.api.extensions.v1beta1.IngressRule": {
11531      "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.",
11532      "properties": {
11533        "host": {
11534          "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n   the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t  Currently the port of an Ingress is implicitly :80 for http and\n\t  :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
11535          "type": "string"
11536        },
11537        "http": {
11538          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue"
11539        }
11540      },
11541      "type": "object"
11542    },
11543    "io.k8s.api.extensions.v1beta1.IngressSpec": {
11544      "description": "IngressSpec describes the Ingress the user wishes to exist.",
11545      "properties": {
11546        "backend": {
11547          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend",
11548          "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."
11549        },
11550        "ingressClassName": {
11551          "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.",
11552          "type": "string"
11553        },
11554        "rules": {
11555          "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.",
11556          "items": {
11557            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressRule"
11558          },
11559          "type": "array"
11560        },
11561        "tls": {
11562          "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.",
11563          "items": {
11564            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressTLS"
11565          },
11566          "type": "array"
11567        }
11568      },
11569      "type": "object"
11570    },
11571    "io.k8s.api.extensions.v1beta1.IngressStatus": {
11572      "description": "IngressStatus describe the current state of the Ingress.",
11573      "properties": {
11574        "loadBalancer": {
11575          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
11576          "description": "LoadBalancer contains the current status of the load-balancer."
11577        }
11578      },
11579      "type": "object"
11580    },
11581    "io.k8s.api.extensions.v1beta1.IngressTLS": {
11582      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
11583      "properties": {
11584        "hosts": {
11585          "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.",
11586          "items": {
11587            "type": "string"
11588          },
11589          "type": "array"
11590        },
11591        "secretName": {
11592          "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.",
11593          "type": "string"
11594        }
11595      },
11596      "type": "object"
11597    },
11598    "io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod": {
11599      "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
11600      "properties": {
11601        "type": {
11602          "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
11603          "type": "string"
11604        }
11605      },
11606      "required": [
11607        "type"
11608      ],
11609      "type": "object"
11610    },
11611    "io.k8s.api.flowcontrol.v1alpha1.FlowSchema": {
11612      "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
11613      "properties": {
11614        "apiVersion": {
11615          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11616          "type": "string"
11617        },
11618        "kind": {
11619          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11620          "type": "string"
11621        },
11622        "metadata": {
11623          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11624          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11625        },
11626        "spec": {
11627          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec",
11628          "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11629        },
11630        "status": {
11631          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus",
11632          "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11633        }
11634      },
11635      "type": "object",
11636      "x-kubernetes-group-version-kind": [
11637        {
11638          "group": "flowcontrol.apiserver.k8s.io",
11639          "kind": "FlowSchema",
11640          "version": "v1alpha1"
11641        }
11642      ]
11643    },
11644    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition": {
11645      "description": "FlowSchemaCondition describes conditions for a FlowSchema.",
11646      "properties": {
11647        "lastTransitionTime": {
11648          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11649          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
11650        },
11651        "message": {
11652          "description": "`message` is a human-readable message indicating details about last transition.",
11653          "type": "string"
11654        },
11655        "reason": {
11656          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
11657          "type": "string"
11658        },
11659        "status": {
11660          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
11661          "type": "string"
11662        },
11663        "type": {
11664          "description": "`type` is the type of the condition. Required.",
11665          "type": "string"
11666        }
11667      },
11668      "type": "object"
11669    },
11670    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaList": {
11671      "description": "FlowSchemaList is a list of FlowSchema objects.",
11672      "properties": {
11673        "apiVersion": {
11674          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11675          "type": "string"
11676        },
11677        "items": {
11678          "description": "`items` is a list of FlowSchemas.",
11679          "items": {
11680            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
11681          },
11682          "type": "array"
11683        },
11684        "kind": {
11685          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11686          "type": "string"
11687        },
11688        "metadata": {
11689          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11690          "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11691        }
11692      },
11693      "required": [
11694        "items"
11695      ],
11696      "type": "object",
11697      "x-kubernetes-group-version-kind": [
11698        {
11699          "group": "flowcontrol.apiserver.k8s.io",
11700          "kind": "FlowSchemaList",
11701          "version": "v1alpha1"
11702        }
11703      ]
11704    },
11705    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec": {
11706      "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.",
11707      "properties": {
11708        "distinguisherMethod": {
11709          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod",
11710          "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string."
11711        },
11712        "matchingPrecedence": {
11713          "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.",
11714          "format": "int32",
11715          "type": "integer"
11716        },
11717        "priorityLevelConfiguration": {
11718          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference",
11719          "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required."
11720        },
11721        "rules": {
11722          "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.",
11723          "items": {
11724            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects"
11725          },
11726          "type": "array",
11727          "x-kubernetes-list-type": "atomic"
11728        }
11729      },
11730      "required": [
11731        "priorityLevelConfiguration"
11732      ],
11733      "type": "object"
11734    },
11735    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus": {
11736      "description": "FlowSchemaStatus represents the current state of a FlowSchema.",
11737      "properties": {
11738        "conditions": {
11739          "description": "`conditions` is a list of the current states of FlowSchema.",
11740          "items": {
11741            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition"
11742          },
11743          "type": "array",
11744          "x-kubernetes-list-map-keys": [
11745            "type"
11746          ],
11747          "x-kubernetes-list-type": "map"
11748        }
11749      },
11750      "type": "object"
11751    },
11752    "io.k8s.api.flowcontrol.v1alpha1.GroupSubject": {
11753      "description": "GroupSubject holds detailed information for group-kind subject.",
11754      "properties": {
11755        "name": {
11756          "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.",
11757          "type": "string"
11758        }
11759      },
11760      "required": [
11761        "name"
11762      ],
11763      "type": "object"
11764    },
11765    "io.k8s.api.flowcontrol.v1alpha1.LimitResponse": {
11766      "description": "LimitResponse defines how to handle requests that can not be executed right now.",
11767      "properties": {
11768        "queuing": {
11769          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration",
11770          "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
11771        },
11772        "type": {
11773          "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.",
11774          "type": "string"
11775        }
11776      },
11777      "required": [
11778        "type"
11779      ],
11780      "type": "object",
11781      "x-kubernetes-unions": [
11782        {
11783          "discriminator": "type",
11784          "fields-to-discriminateBy": {
11785            "queuing": "Queuing"
11786          }
11787        }
11788      ]
11789    },
11790    "io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration": {
11791      "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?",
11792      "properties": {
11793        "assuredConcurrencyShares": {
11794          "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time.  ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n            ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.",
11795          "format": "int32",
11796          "type": "integer"
11797        },
11798        "limitResponse": {
11799          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitResponse",
11800          "description": "`limitResponse` indicates what to do with requests that can not be executed right now"
11801        }
11802      },
11803      "type": "object"
11804    },
11805    "io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule": {
11806      "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
11807      "properties": {
11808        "nonResourceURLs": {
11809          "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n  - \"/healthz\" is legal\n  - \"/hea*\" is illegal\n  - \"/hea\" is legal but matches nothing\n  - \"/hea/*\" also matches nothing\n  - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
11810          "items": {
11811            "type": "string"
11812          },
11813          "type": "array",
11814          "x-kubernetes-list-type": "set"
11815        },
11816        "verbs": {
11817          "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.",
11818          "items": {
11819            "type": "string"
11820          },
11821          "type": "array",
11822          "x-kubernetes-list-type": "set"
11823        }
11824      },
11825      "required": [
11826        "verbs",
11827        "nonResourceURLs"
11828      ],
11829      "type": "object"
11830    },
11831    "io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects": {
11832      "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.",
11833      "properties": {
11834        "nonResourceRules": {
11835          "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
11836          "items": {
11837            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule"
11838          },
11839          "type": "array",
11840          "x-kubernetes-list-type": "atomic"
11841        },
11842        "resourceRules": {
11843          "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.",
11844          "items": {
11845            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule"
11846          },
11847          "type": "array",
11848          "x-kubernetes-list-type": "atomic"
11849        },
11850        "subjects": {
11851          "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.",
11852          "items": {
11853            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.Subject"
11854          },
11855          "type": "array",
11856          "x-kubernetes-list-type": "atomic"
11857        }
11858      },
11859      "required": [
11860        "subjects"
11861      ],
11862      "type": "object"
11863    },
11864    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration": {
11865      "description": "PriorityLevelConfiguration represents the configuration of a priority level.",
11866      "properties": {
11867        "apiVersion": {
11868          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11869          "type": "string"
11870        },
11871        "kind": {
11872          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11873          "type": "string"
11874        },
11875        "metadata": {
11876          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11877          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11878        },
11879        "spec": {
11880          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec",
11881          "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11882        },
11883        "status": {
11884          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus",
11885          "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11886        }
11887      },
11888      "type": "object",
11889      "x-kubernetes-group-version-kind": [
11890        {
11891          "group": "flowcontrol.apiserver.k8s.io",
11892          "kind": "PriorityLevelConfiguration",
11893          "version": "v1alpha1"
11894        }
11895      ]
11896    },
11897    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition": {
11898      "description": "PriorityLevelConfigurationCondition defines the condition of priority level.",
11899      "properties": {
11900        "lastTransitionTime": {
11901          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11902          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
11903        },
11904        "message": {
11905          "description": "`message` is a human-readable message indicating details about last transition.",
11906          "type": "string"
11907        },
11908        "reason": {
11909          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
11910          "type": "string"
11911        },
11912        "status": {
11913          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
11914          "type": "string"
11915        },
11916        "type": {
11917          "description": "`type` is the type of the condition. Required.",
11918          "type": "string"
11919        }
11920      },
11921      "type": "object"
11922    },
11923    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationList": {
11924      "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.",
11925      "properties": {
11926        "apiVersion": {
11927          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11928          "type": "string"
11929        },
11930        "items": {
11931          "description": "`items` is a list of request-priorities.",
11932          "items": {
11933            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
11934          },
11935          "type": "array"
11936        },
11937        "kind": {
11938          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11939          "type": "string"
11940        },
11941        "metadata": {
11942          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11943          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11944        }
11945      },
11946      "required": [
11947        "items"
11948      ],
11949      "type": "object",
11950      "x-kubernetes-group-version-kind": [
11951        {
11952          "group": "flowcontrol.apiserver.k8s.io",
11953          "kind": "PriorityLevelConfigurationList",
11954          "version": "v1alpha1"
11955        }
11956      ]
11957    },
11958    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference": {
11959      "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.",
11960      "properties": {
11961        "name": {
11962          "description": "`name` is the name of the priority level configuration being referenced Required.",
11963          "type": "string"
11964        }
11965      },
11966      "required": [
11967        "name"
11968      ],
11969      "type": "object"
11970    },
11971    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec": {
11972      "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.",
11973      "properties": {
11974        "limited": {
11975          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration",
11976          "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`."
11977        },
11978        "type": {
11979          "description": "`type` indicates whether this priority level is subject to limitation on request execution.  A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels.  A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.",
11980          "type": "string"
11981        }
11982      },
11983      "required": [
11984        "type"
11985      ],
11986      "type": "object",
11987      "x-kubernetes-unions": [
11988        {
11989          "discriminator": "type",
11990          "fields-to-discriminateBy": {
11991            "limited": "Limited"
11992          }
11993        }
11994      ]
11995    },
11996    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus": {
11997      "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".",
11998      "properties": {
11999        "conditions": {
12000          "description": "`conditions` is the current state of \"request-priority\".",
12001          "items": {
12002            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition"
12003          },
12004          "type": "array",
12005          "x-kubernetes-list-map-keys": [
12006            "type"
12007          ],
12008          "x-kubernetes-list-type": "map"
12009        }
12010      },
12011      "type": "object"
12012    },
12013    "io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration": {
12014      "description": "QueuingConfiguration holds the configuration parameters for queuing",
12015      "properties": {
12016        "handSize": {
12017          "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues.  When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here.  The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues).  See the user-facing documentation for more extensive guidance on setting this field.  This field has a default value of 8.",
12018          "format": "int32",
12019          "type": "integer"
12020        },
12021        "queueLengthLimit": {
12022          "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected.  This value must be positive.  If not specified, it will be defaulted to 50.",
12023          "format": "int32",
12024          "type": "integer"
12025        },
12026        "queues": {
12027          "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive.  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant.  This field has a default value of 64.",
12028          "format": "int32",
12029          "type": "integer"
12030        }
12031      },
12032      "type": "object"
12033    },
12034    "io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule": {
12035      "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.",
12036      "properties": {
12037        "apiGroups": {
12038          "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
12039          "items": {
12040            "type": "string"
12041          },
12042          "type": "array",
12043          "x-kubernetes-list-type": "set"
12044        },
12045        "clusterScope": {
12046          "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.",
12047          "type": "boolean"
12048        },
12049        "namespaces": {
12050          "description": "`namespaces` is a list of target namespaces that restricts matches.  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\".  Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.",
12051          "items": {
12052            "type": "string"
12053          },
12054          "type": "array",
12055          "x-kubernetes-list-type": "set"
12056        },
12057        "resources": {
12058          "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource.  For example, [ \"services\", \"nodes/status\" ].  This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.",
12059          "items": {
12060            "type": "string"
12061          },
12062          "type": "array",
12063          "x-kubernetes-list-type": "set"
12064        },
12065        "verbs": {
12066          "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
12067          "items": {
12068            "type": "string"
12069          },
12070          "type": "array",
12071          "x-kubernetes-list-type": "set"
12072        }
12073      },
12074      "required": [
12075        "verbs",
12076        "apiGroups",
12077        "resources"
12078      ],
12079      "type": "object"
12080    },
12081    "io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject": {
12082      "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
12083      "properties": {
12084        "name": {
12085          "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
12086          "type": "string"
12087        },
12088        "namespace": {
12089          "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
12090          "type": "string"
12091        }
12092      },
12093      "required": [
12094        "namespace",
12095        "name"
12096      ],
12097      "type": "object"
12098    },
12099    "io.k8s.api.flowcontrol.v1alpha1.Subject": {
12100      "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.",
12101      "properties": {
12102        "group": {
12103          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.GroupSubject"
12104        },
12105        "kind": {
12106          "description": "Required",
12107          "type": "string"
12108        },
12109        "serviceAccount": {
12110          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject"
12111        },
12112        "user": {
12113          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.UserSubject"
12114        }
12115      },
12116      "required": [
12117        "kind"
12118      ],
12119      "type": "object",
12120      "x-kubernetes-unions": [
12121        {
12122          "discriminator": "kind",
12123          "fields-to-discriminateBy": {
12124            "group": "Group",
12125            "serviceAccount": "ServiceAccount",
12126            "user": "User"
12127          }
12128        }
12129      ]
12130    },
12131    "io.k8s.api.flowcontrol.v1alpha1.UserSubject": {
12132      "description": "UserSubject holds detailed information for user-kind subject.",
12133      "properties": {
12134        "name": {
12135          "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
12136          "type": "string"
12137        }
12138      },
12139      "required": [
12140        "name"
12141      ],
12142      "type": "object"
12143    },
12144    "io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod": {
12145      "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
12146      "properties": {
12147        "type": {
12148          "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
12149          "type": "string"
12150        }
12151      },
12152      "required": [
12153        "type"
12154      ],
12155      "type": "object"
12156    },
12157    "io.k8s.api.flowcontrol.v1beta1.FlowSchema": {
12158      "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
12159      "properties": {
12160        "apiVersion": {
12161          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12162          "type": "string"
12163        },
12164        "kind": {
12165          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12166          "type": "string"
12167        },
12168        "metadata": {
12169          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12170          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12171        },
12172        "spec": {
12173          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec",
12174          "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
12175        },
12176        "status": {
12177          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus",
12178          "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
12179        }
12180      },
12181      "type": "object",
12182      "x-kubernetes-group-version-kind": [
12183        {
12184          "group": "flowcontrol.apiserver.k8s.io",
12185          "kind": "FlowSchema",
12186          "version": "v1beta1"
12187        }
12188      ]
12189    },
12190    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition": {
12191      "description": "FlowSchemaCondition describes conditions for a FlowSchema.",
12192      "properties": {
12193        "lastTransitionTime": {
12194          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
12195          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
12196        },
12197        "message": {
12198          "description": "`message` is a human-readable message indicating details about last transition.",
12199          "type": "string"
12200        },
12201        "reason": {
12202          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
12203          "type": "string"
12204        },
12205        "status": {
12206          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
12207          "type": "string"
12208        },
12209        "type": {
12210          "description": "`type` is the type of the condition. Required.",
12211          "type": "string"
12212        }
12213      },
12214      "type": "object"
12215    },
12216    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaList": {
12217      "description": "FlowSchemaList is a list of FlowSchema objects.",
12218      "properties": {
12219        "apiVersion": {
12220          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12221          "type": "string"
12222        },
12223        "items": {
12224          "description": "`items` is a list of FlowSchemas.",
12225          "items": {
12226            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
12227          },
12228          "type": "array"
12229        },
12230        "kind": {
12231          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12232          "type": "string"
12233        },
12234        "metadata": {
12235          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12236          "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12237        }
12238      },
12239      "required": [
12240        "items"
12241      ],
12242      "type": "object",
12243      "x-kubernetes-group-version-kind": [
12244        {
12245          "group": "flowcontrol.apiserver.k8s.io",
12246          "kind": "FlowSchemaList",
12247          "version": "v1beta1"
12248        }
12249      ]
12250    },
12251    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec": {
12252      "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.",
12253      "properties": {
12254        "distinguisherMethod": {
12255          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod",
12256          "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string."
12257        },
12258        "matchingPrecedence": {
12259          "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.",
12260          "format": "int32",
12261          "type": "integer"
12262        },
12263        "priorityLevelConfiguration": {
12264          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference",
12265          "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required."
12266        },
12267        "rules": {
12268          "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.",
12269          "items": {
12270            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects"
12271          },
12272          "type": "array",
12273          "x-kubernetes-list-type": "atomic"
12274        }
12275      },
12276      "required": [
12277        "priorityLevelConfiguration"
12278      ],
12279      "type": "object"
12280    },
12281    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus": {
12282      "description": "FlowSchemaStatus represents the current state of a FlowSchema.",
12283      "properties": {
12284        "conditions": {
12285          "description": "`conditions` is a list of the current states of FlowSchema.",
12286          "items": {
12287            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition"
12288          },
12289          "type": "array",
12290          "x-kubernetes-list-map-keys": [
12291            "type"
12292          ],
12293          "x-kubernetes-list-type": "map"
12294        }
12295      },
12296      "type": "object"
12297    },
12298    "io.k8s.api.flowcontrol.v1beta1.GroupSubject": {
12299      "description": "GroupSubject holds detailed information for group-kind subject.",
12300      "properties": {
12301        "name": {
12302          "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.",
12303          "type": "string"
12304        }
12305      },
12306      "required": [
12307        "name"
12308      ],
12309      "type": "object"
12310    },
12311    "io.k8s.api.flowcontrol.v1beta1.LimitResponse": {
12312      "description": "LimitResponse defines how to handle requests that can not be executed right now.",
12313      "properties": {
12314        "queuing": {
12315          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration",
12316          "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
12317        },
12318        "type": {
12319          "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.",
12320          "type": "string"
12321        }
12322      },
12323      "required": [
12324        "type"
12325      ],
12326      "type": "object",
12327      "x-kubernetes-unions": [
12328        {
12329          "discriminator": "type",
12330          "fields-to-discriminateBy": {
12331            "queuing": "Queuing"
12332          }
12333        }
12334      ]
12335    },
12336    "io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration": {
12337      "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?",
12338      "properties": {
12339        "assuredConcurrencyShares": {
12340          "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time.  ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n            ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.",
12341          "format": "int32",
12342          "type": "integer"
12343        },
12344        "limitResponse": {
12345          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitResponse",
12346          "description": "`limitResponse` indicates what to do with requests that can not be executed right now"
12347        }
12348      },
12349      "type": "object"
12350    },
12351    "io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule": {
12352      "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
12353      "properties": {
12354        "nonResourceURLs": {
12355          "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n  - \"/healthz\" is legal\n  - \"/hea*\" is illegal\n  - \"/hea\" is legal but matches nothing\n  - \"/hea/*\" also matches nothing\n  - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
12356          "items": {
12357            "type": "string"
12358          },
12359          "type": "array",
12360          "x-kubernetes-list-type": "set"
12361        },
12362        "verbs": {
12363          "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.",
12364          "items": {
12365            "type": "string"
12366          },
12367          "type": "array",
12368          "x-kubernetes-list-type": "set"
12369        }
12370      },
12371      "required": [
12372        "verbs",
12373        "nonResourceURLs"
12374      ],
12375      "type": "object"
12376    },
12377    "io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects": {
12378      "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.",
12379      "properties": {
12380        "nonResourceRules": {
12381          "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
12382          "items": {
12383            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule"
12384          },
12385          "type": "array",
12386          "x-kubernetes-list-type": "atomic"
12387        },
12388        "resourceRules": {
12389          "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.",
12390          "items": {
12391            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule"
12392          },
12393          "type": "array",
12394          "x-kubernetes-list-type": "atomic"
12395        },
12396        "subjects": {
12397          "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.",
12398          "items": {
12399            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.Subject"
12400          },
12401          "type": "array",
12402          "x-kubernetes-list-type": "atomic"
12403        }
12404      },
12405      "required": [
12406        "subjects"
12407      ],
12408      "type": "object"
12409    },
12410    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration": {
12411      "description": "PriorityLevelConfiguration represents the configuration of a priority level.",
12412      "properties": {
12413        "apiVersion": {
12414          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12415          "type": "string"
12416        },
12417        "kind": {
12418          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12419          "type": "string"
12420        },
12421        "metadata": {
12422          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12423          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12424        },
12425        "spec": {
12426          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec",
12427          "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
12428        },
12429        "status": {
12430          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus",
12431          "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
12432        }
12433      },
12434      "type": "object",
12435      "x-kubernetes-group-version-kind": [
12436        {
12437          "group": "flowcontrol.apiserver.k8s.io",
12438          "kind": "PriorityLevelConfiguration",
12439          "version": "v1beta1"
12440        }
12441      ]
12442    },
12443    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition": {
12444      "description": "PriorityLevelConfigurationCondition defines the condition of priority level.",
12445      "properties": {
12446        "lastTransitionTime": {
12447          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
12448          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
12449        },
12450        "message": {
12451          "description": "`message` is a human-readable message indicating details about last transition.",
12452          "type": "string"
12453        },
12454        "reason": {
12455          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
12456          "type": "string"
12457        },
12458        "status": {
12459          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
12460          "type": "string"
12461        },
12462        "type": {
12463          "description": "`type` is the type of the condition. Required.",
12464          "type": "string"
12465        }
12466      },
12467      "type": "object"
12468    },
12469    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList": {
12470      "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.",
12471      "properties": {
12472        "apiVersion": {
12473          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12474          "type": "string"
12475        },
12476        "items": {
12477          "description": "`items` is a list of request-priorities.",
12478          "items": {
12479            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
12480          },
12481          "type": "array"
12482        },
12483        "kind": {
12484          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12485          "type": "string"
12486        },
12487        "metadata": {
12488          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12489          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12490        }
12491      },
12492      "required": [
12493        "items"
12494      ],
12495      "type": "object",
12496      "x-kubernetes-group-version-kind": [
12497        {
12498          "group": "flowcontrol.apiserver.k8s.io",
12499          "kind": "PriorityLevelConfigurationList",
12500          "version": "v1beta1"
12501        }
12502      ]
12503    },
12504    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference": {
12505      "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.",
12506      "properties": {
12507        "name": {
12508          "description": "`name` is the name of the priority level configuration being referenced Required.",
12509          "type": "string"
12510        }
12511      },
12512      "required": [
12513        "name"
12514      ],
12515      "type": "object"
12516    },
12517    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec": {
12518      "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.",
12519      "properties": {
12520        "limited": {
12521          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration",
12522          "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`."
12523        },
12524        "type": {
12525          "description": "`type` indicates whether this priority level is subject to limitation on request execution.  A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels.  A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.",
12526          "type": "string"
12527        }
12528      },
12529      "required": [
12530        "type"
12531      ],
12532      "type": "object",
12533      "x-kubernetes-unions": [
12534        {
12535          "discriminator": "type",
12536          "fields-to-discriminateBy": {
12537            "limited": "Limited"
12538          }
12539        }
12540      ]
12541    },
12542    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus": {
12543      "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".",
12544      "properties": {
12545        "conditions": {
12546          "description": "`conditions` is the current state of \"request-priority\".",
12547          "items": {
12548            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition"
12549          },
12550          "type": "array",
12551          "x-kubernetes-list-map-keys": [
12552            "type"
12553          ],
12554          "x-kubernetes-list-type": "map"
12555        }
12556      },
12557      "type": "object"
12558    },
12559    "io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration": {
12560      "description": "QueuingConfiguration holds the configuration parameters for queuing",
12561      "properties": {
12562        "handSize": {
12563          "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues.  When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here.  The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues).  See the user-facing documentation for more extensive guidance on setting this field.  This field has a default value of 8.",
12564          "format": "int32",
12565          "type": "integer"
12566        },
12567        "queueLengthLimit": {
12568          "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected.  This value must be positive.  If not specified, it will be defaulted to 50.",
12569          "format": "int32",
12570          "type": "integer"
12571        },
12572        "queues": {
12573          "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive.  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant.  This field has a default value of 64.",
12574          "format": "int32",
12575          "type": "integer"
12576        }
12577      },
12578      "type": "object"
12579    },
12580    "io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule": {
12581      "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.",
12582      "properties": {
12583        "apiGroups": {
12584          "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
12585          "items": {
12586            "type": "string"
12587          },
12588          "type": "array",
12589          "x-kubernetes-list-type": "set"
12590        },
12591        "clusterScope": {
12592          "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.",
12593          "type": "boolean"
12594        },
12595        "namespaces": {
12596          "description": "`namespaces` is a list of target namespaces that restricts matches.  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\".  Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.",
12597          "items": {
12598            "type": "string"
12599          },
12600          "type": "array",
12601          "x-kubernetes-list-type": "set"
12602        },
12603        "resources": {
12604          "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource.  For example, [ \"services\", \"nodes/status\" ].  This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.",
12605          "items": {
12606            "type": "string"
12607          },
12608          "type": "array",
12609          "x-kubernetes-list-type": "set"
12610        },
12611        "verbs": {
12612          "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
12613          "items": {
12614            "type": "string"
12615          },
12616          "type": "array",
12617          "x-kubernetes-list-type": "set"
12618        }
12619      },
12620      "required": [
12621        "verbs",
12622        "apiGroups",
12623        "resources"
12624      ],
12625      "type": "object"
12626    },
12627    "io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject": {
12628      "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
12629      "properties": {
12630        "name": {
12631          "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
12632          "type": "string"
12633        },
12634        "namespace": {
12635          "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
12636          "type": "string"
12637        }
12638      },
12639      "required": [
12640        "namespace",
12641        "name"
12642      ],
12643      "type": "object"
12644    },
12645    "io.k8s.api.flowcontrol.v1beta1.Subject": {
12646      "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.",
12647      "properties": {
12648        "group": {
12649          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.GroupSubject"
12650        },
12651        "kind": {
12652          "description": "Required",
12653          "type": "string"
12654        },
12655        "serviceAccount": {
12656          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject"
12657        },
12658        "user": {
12659          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.UserSubject"
12660        }
12661      },
12662      "required": [
12663        "kind"
12664      ],
12665      "type": "object",
12666      "x-kubernetes-unions": [
12667        {
12668          "discriminator": "kind",
12669          "fields-to-discriminateBy": {
12670            "group": "Group",
12671            "serviceAccount": "ServiceAccount",
12672            "user": "User"
12673          }
12674        }
12675      ]
12676    },
12677    "io.k8s.api.flowcontrol.v1beta1.UserSubject": {
12678      "description": "UserSubject holds detailed information for user-kind subject.",
12679      "properties": {
12680        "name": {
12681          "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
12682          "type": "string"
12683        }
12684      },
12685      "required": [
12686        "name"
12687      ],
12688      "type": "object"
12689    },
12690    "io.k8s.api.networking.v1.HTTPIngressPath": {
12691      "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
12692      "properties": {
12693        "backend": {
12694          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
12695          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
12696        },
12697        "path": {
12698          "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.",
12699          "type": "string"
12700        },
12701        "pathType": {
12702          "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n  done on a path element by element basis. A path element refers is the\n  list of labels in the path split by the '/' separator. A request is a\n  match for path p if every p is an element-wise prefix of p of the\n  request path. Note that if the last element of the path is a substring\n  of the last element in request path, it is not a match (e.g. /foo/bar\n  matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n  the IngressClass. Implementations can treat this as a separate PathType\n  or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.",
12703          "type": "string"
12704        }
12705      },
12706      "required": [
12707        "backend"
12708      ],
12709      "type": "object"
12710    },
12711    "io.k8s.api.networking.v1.HTTPIngressRuleValue": {
12712      "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 '#'.",
12713      "properties": {
12714        "paths": {
12715          "description": "A collection of paths that map requests to backends.",
12716          "items": {
12717            "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressPath"
12718          },
12719          "type": "array",
12720          "x-kubernetes-list-type": "atomic"
12721        }
12722      },
12723      "required": [
12724        "paths"
12725      ],
12726      "type": "object"
12727    },
12728    "io.k8s.api.networking.v1.IPBlock": {
12729      "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\",\"2001:db9::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
12730      "properties": {
12731        "cidr": {
12732          "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"",
12733          "type": "string"
12734        },
12735        "except": {
12736          "description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\" Except values will be rejected if they are outside the CIDR range",
12737          "items": {
12738            "type": "string"
12739          },
12740          "type": "array"
12741        }
12742      },
12743      "required": [
12744        "cidr"
12745      ],
12746      "type": "object"
12747    },
12748    "io.k8s.api.networking.v1.Ingress": {
12749      "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.",
12750      "properties": {
12751        "apiVersion": {
12752          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12753          "type": "string"
12754        },
12755        "kind": {
12756          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12757          "type": "string"
12758        },
12759        "metadata": {
12760          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12761          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12762        },
12763        "spec": {
12764          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressSpec",
12765          "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"
12766        },
12767        "status": {
12768          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressStatus",
12769          "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"
12770        }
12771      },
12772      "type": "object",
12773      "x-kubernetes-group-version-kind": [
12774        {
12775          "group": "networking.k8s.io",
12776          "kind": "Ingress",
12777          "version": "v1"
12778        }
12779      ]
12780    },
12781    "io.k8s.api.networking.v1.IngressBackend": {
12782      "description": "IngressBackend describes all endpoints for a given service and port.",
12783      "properties": {
12784        "resource": {
12785          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
12786          "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with \"Service\"."
12787        },
12788        "service": {
12789          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressServiceBackend",
12790          "description": "Service references a Service as a Backend. This is a mutually exclusive setting with \"Resource\"."
12791        }
12792      },
12793      "type": "object"
12794    },
12795    "io.k8s.api.networking.v1.IngressClass": {
12796      "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.",
12797      "properties": {
12798        "apiVersion": {
12799          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12800          "type": "string"
12801        },
12802        "kind": {
12803          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12804          "type": "string"
12805        },
12806        "metadata": {
12807          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12808          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12809        },
12810        "spec": {
12811          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassSpec",
12812          "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
12813        }
12814      },
12815      "type": "object",
12816      "x-kubernetes-group-version-kind": [
12817        {
12818          "group": "networking.k8s.io",
12819          "kind": "IngressClass",
12820          "version": "v1"
12821        }
12822      ]
12823    },
12824    "io.k8s.api.networking.v1.IngressClassList": {
12825      "description": "IngressClassList is a collection of IngressClasses.",
12826      "properties": {
12827        "apiVersion": {
12828          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12829          "type": "string"
12830        },
12831        "items": {
12832          "description": "Items is the list of IngressClasses.",
12833          "items": {
12834            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
12835          },
12836          "type": "array"
12837        },
12838        "kind": {
12839          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12840          "type": "string"
12841        },
12842        "metadata": {
12843          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12844          "description": "Standard list metadata."
12845        }
12846      },
12847      "required": [
12848        "items"
12849      ],
12850      "type": "object",
12851      "x-kubernetes-group-version-kind": [
12852        {
12853          "group": "networking.k8s.io",
12854          "kind": "IngressClassList",
12855          "version": "v1"
12856        }
12857      ]
12858    },
12859    "io.k8s.api.networking.v1.IngressClassSpec": {
12860      "description": "IngressClassSpec provides information about the class of an Ingress.",
12861      "properties": {
12862        "controller": {
12863          "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.",
12864          "type": "string"
12865        },
12866        "parameters": {
12867          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
12868          "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters."
12869        }
12870      },
12871      "type": "object"
12872    },
12873    "io.k8s.api.networking.v1.IngressList": {
12874      "description": "IngressList is a collection of Ingress.",
12875      "properties": {
12876        "apiVersion": {
12877          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12878          "type": "string"
12879        },
12880        "items": {
12881          "description": "Items is the list of Ingress.",
12882          "items": {
12883            "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
12884          },
12885          "type": "array"
12886        },
12887        "kind": {
12888          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12889          "type": "string"
12890        },
12891        "metadata": {
12892          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12893          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12894        }
12895      },
12896      "required": [
12897        "items"
12898      ],
12899      "type": "object",
12900      "x-kubernetes-group-version-kind": [
12901        {
12902          "group": "networking.k8s.io",
12903          "kind": "IngressList",
12904          "version": "v1"
12905        }
12906      ]
12907    },
12908    "io.k8s.api.networking.v1.IngressRule": {
12909      "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.",
12910      "properties": {
12911        "host": {
12912          "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n   the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t  Currently the port of an Ingress is implicitly :80 for http and\n\t  :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
12913          "type": "string"
12914        },
12915        "http": {
12916          "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressRuleValue"
12917        }
12918      },
12919      "type": "object"
12920    },
12921    "io.k8s.api.networking.v1.IngressServiceBackend": {
12922      "description": "IngressServiceBackend references a Kubernetes Service as a Backend.",
12923      "properties": {
12924        "name": {
12925          "description": "Name is the referenced service. The service must exist in the same namespace as the Ingress object.",
12926          "type": "string"
12927        },
12928        "port": {
12929          "$ref": "#/definitions/io.k8s.api.networking.v1.ServiceBackendPort",
12930          "description": "Port of the referenced service. A port name or port number is required for a IngressServiceBackend."
12931        }
12932      },
12933      "required": [
12934        "name"
12935      ],
12936      "type": "object"
12937    },
12938    "io.k8s.api.networking.v1.IngressSpec": {
12939      "description": "IngressSpec describes the Ingress the user wishes to exist.",
12940      "properties": {
12941        "defaultBackend": {
12942          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
12943          "description": "DefaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller."
12944        },
12945        "ingressClassName": {
12946          "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.",
12947          "type": "string"
12948        },
12949        "rules": {
12950          "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.",
12951          "items": {
12952            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressRule"
12953          },
12954          "type": "array",
12955          "x-kubernetes-list-type": "atomic"
12956        },
12957        "tls": {
12958          "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.",
12959          "items": {
12960            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressTLS"
12961          },
12962          "type": "array",
12963          "x-kubernetes-list-type": "atomic"
12964        }
12965      },
12966      "type": "object"
12967    },
12968    "io.k8s.api.networking.v1.IngressStatus": {
12969      "description": "IngressStatus describe the current state of the Ingress.",
12970      "properties": {
12971        "loadBalancer": {
12972          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
12973          "description": "LoadBalancer contains the current status of the load-balancer."
12974        }
12975      },
12976      "type": "object"
12977    },
12978    "io.k8s.api.networking.v1.IngressTLS": {
12979      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
12980      "properties": {
12981        "hosts": {
12982          "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.",
12983          "items": {
12984            "type": "string"
12985          },
12986          "type": "array",
12987          "x-kubernetes-list-type": "atomic"
12988        },
12989        "secretName": {
12990          "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
12991          "type": "string"
12992        }
12993      },
12994      "type": "object"
12995    },
12996    "io.k8s.api.networking.v1.NetworkPolicy": {
12997      "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
12998      "properties": {
12999        "apiVersion": {
13000          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13001          "type": "string"
13002        },
13003        "kind": {
13004          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13005          "type": "string"
13006        },
13007        "metadata": {
13008          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13009          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13010        },
13011        "spec": {
13012          "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec",
13013          "description": "Specification of the desired behavior for this NetworkPolicy."
13014        }
13015      },
13016      "type": "object",
13017      "x-kubernetes-group-version-kind": [
13018        {
13019          "group": "networking.k8s.io",
13020          "kind": "NetworkPolicy",
13021          "version": "v1"
13022        }
13023      ]
13024    },
13025    "io.k8s.api.networking.v1.NetworkPolicyEgressRule": {
13026      "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",
13027      "properties": {
13028        "ports": {
13029          "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.",
13030          "items": {
13031            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
13032          },
13033          "type": "array"
13034        },
13035        "to": {
13036          "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.",
13037          "items": {
13038            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
13039          },
13040          "type": "array"
13041        }
13042      },
13043      "type": "object"
13044    },
13045    "io.k8s.api.networking.v1.NetworkPolicyIngressRule": {
13046      "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.",
13047      "properties": {
13048        "from": {
13049          "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.",
13050          "items": {
13051            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
13052          },
13053          "type": "array"
13054        },
13055        "ports": {
13056          "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.",
13057          "items": {
13058            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
13059          },
13060          "type": "array"
13061        }
13062      },
13063      "type": "object"
13064    },
13065    "io.k8s.api.networking.v1.NetworkPolicyList": {
13066      "description": "NetworkPolicyList is a list of NetworkPolicy objects.",
13067      "properties": {
13068        "apiVersion": {
13069          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13070          "type": "string"
13071        },
13072        "items": {
13073          "description": "Items is a list of schema objects.",
13074          "items": {
13075            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
13076          },
13077          "type": "array"
13078        },
13079        "kind": {
13080          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13081          "type": "string"
13082        },
13083        "metadata": {
13084          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13085          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13086        }
13087      },
13088      "required": [
13089        "items"
13090      ],
13091      "type": "object",
13092      "x-kubernetes-group-version-kind": [
13093        {
13094          "group": "networking.k8s.io",
13095          "kind": "NetworkPolicyList",
13096          "version": "v1"
13097        }
13098      ]
13099    },
13100    "io.k8s.api.networking.v1.NetworkPolicyPeer": {
13101      "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed",
13102      "properties": {
13103        "ipBlock": {
13104          "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock",
13105          "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
13106        },
13107        "namespaceSelector": {
13108          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13109          "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."
13110        },
13111        "podSelector": {
13112          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13113          "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."
13114        }
13115      },
13116      "type": "object"
13117    },
13118    "io.k8s.api.networking.v1.NetworkPolicyPort": {
13119      "description": "NetworkPolicyPort describes a port to allow traffic on",
13120      "properties": {
13121        "endPort": {
13122          "description": "If set, indicates that the range of ports from port to endPort, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port. This feature is in Alpha state and should be enabled using the Feature Gate \"NetworkPolicyEndPort\".",
13123          "format": "int32",
13124          "type": "integer"
13125        },
13126        "port": {
13127          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13128          "description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched."
13129        },
13130        "protocol": {
13131          "description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
13132          "type": "string"
13133        }
13134      },
13135      "type": "object"
13136    },
13137    "io.k8s.api.networking.v1.NetworkPolicySpec": {
13138      "description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
13139      "properties": {
13140        "egress": {
13141          "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",
13142          "items": {
13143            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule"
13144          },
13145          "type": "array"
13146        },
13147        "ingress": {
13148          "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)",
13149          "items": {
13150            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule"
13151          },
13152          "type": "array"
13153        },
13154        "podSelector": {
13155          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13156          "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."
13157        },
13158        "policyTypes": {
13159          "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",
13160          "items": {
13161            "type": "string"
13162          },
13163          "type": "array"
13164        }
13165      },
13166      "required": [
13167        "podSelector"
13168      ],
13169      "type": "object"
13170    },
13171    "io.k8s.api.networking.v1.ServiceBackendPort": {
13172      "description": "ServiceBackendPort is the service port being referenced.",
13173      "properties": {
13174        "name": {
13175          "description": "Name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".",
13176          "type": "string"
13177        },
13178        "number": {
13179          "description": "Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".",
13180          "format": "int32",
13181          "type": "integer"
13182        }
13183      },
13184      "type": "object"
13185    },
13186    "io.k8s.api.networking.v1beta1.HTTPIngressPath": {
13187      "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
13188      "properties": {
13189        "backend": {
13190          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend",
13191          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
13192        },
13193        "path": {
13194          "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.",
13195          "type": "string"
13196        },
13197        "pathType": {
13198          "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n  done on a path element by element basis. A path element refers is the\n  list of labels in the path split by the '/' separator. A request is a\n  match for path p if every p is an element-wise prefix of p of the\n  request path. Note that if the last element of the path is a substring\n  of the last element in request path, it is not a match (e.g. /foo/bar\n  matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n  the IngressClass. Implementations can treat this as a separate PathType\n  or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.",
13199          "type": "string"
13200        }
13201      },
13202      "required": [
13203        "backend"
13204      ],
13205      "type": "object"
13206    },
13207    "io.k8s.api.networking.v1beta1.HTTPIngressRuleValue": {
13208      "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 '#'.",
13209      "properties": {
13210        "paths": {
13211          "description": "A collection of paths that map requests to backends.",
13212          "items": {
13213            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressPath"
13214          },
13215          "type": "array"
13216        }
13217      },
13218      "required": [
13219        "paths"
13220      ],
13221      "type": "object"
13222    },
13223    "io.k8s.api.networking.v1beta1.Ingress": {
13224      "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.",
13225      "properties": {
13226        "apiVersion": {
13227          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13228          "type": "string"
13229        },
13230        "kind": {
13231          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13232          "type": "string"
13233        },
13234        "metadata": {
13235          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13236          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13237        },
13238        "spec": {
13239          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressSpec",
13240          "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"
13241        },
13242        "status": {
13243          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressStatus",
13244          "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"
13245        }
13246      },
13247      "type": "object",
13248      "x-kubernetes-group-version-kind": [
13249        {
13250          "group": "networking.k8s.io",
13251          "kind": "Ingress",
13252          "version": "v1beta1"
13253        }
13254      ]
13255    },
13256    "io.k8s.api.networking.v1beta1.IngressBackend": {
13257      "description": "IngressBackend describes all endpoints for a given service and port.",
13258      "properties": {
13259        "resource": {
13260          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
13261          "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified."
13262        },
13263        "serviceName": {
13264          "description": "Specifies the name of the referenced service.",
13265          "type": "string"
13266        },
13267        "servicePort": {
13268          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13269          "description": "Specifies the port of the referenced service."
13270        }
13271      },
13272      "type": "object"
13273    },
13274    "io.k8s.api.networking.v1beta1.IngressClass": {
13275      "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.",
13276      "properties": {
13277        "apiVersion": {
13278          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13279          "type": "string"
13280        },
13281        "kind": {
13282          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13283          "type": "string"
13284        },
13285        "metadata": {
13286          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13287          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13288        },
13289        "spec": {
13290          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClassSpec",
13291          "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
13292        }
13293      },
13294      "type": "object",
13295      "x-kubernetes-group-version-kind": [
13296        {
13297          "group": "networking.k8s.io",
13298          "kind": "IngressClass",
13299          "version": "v1beta1"
13300        }
13301      ]
13302    },
13303    "io.k8s.api.networking.v1beta1.IngressClassList": {
13304      "description": "IngressClassList is a collection of IngressClasses.",
13305      "properties": {
13306        "apiVersion": {
13307          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13308          "type": "string"
13309        },
13310        "items": {
13311          "description": "Items is the list of IngressClasses.",
13312          "items": {
13313            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
13314          },
13315          "type": "array"
13316        },
13317        "kind": {
13318          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13319          "type": "string"
13320        },
13321        "metadata": {
13322          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13323          "description": "Standard list metadata."
13324        }
13325      },
13326      "required": [
13327        "items"
13328      ],
13329      "type": "object",
13330      "x-kubernetes-group-version-kind": [
13331        {
13332          "group": "networking.k8s.io",
13333          "kind": "IngressClassList",
13334          "version": "v1beta1"
13335        }
13336      ]
13337    },
13338    "io.k8s.api.networking.v1beta1.IngressClassSpec": {
13339      "description": "IngressClassSpec provides information about the class of an Ingress.",
13340      "properties": {
13341        "controller": {
13342          "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.",
13343          "type": "string"
13344        },
13345        "parameters": {
13346          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
13347          "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters."
13348        }
13349      },
13350      "type": "object"
13351    },
13352    "io.k8s.api.networking.v1beta1.IngressList": {
13353      "description": "IngressList is a collection of Ingress.",
13354      "properties": {
13355        "apiVersion": {
13356          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13357          "type": "string"
13358        },
13359        "items": {
13360          "description": "Items is the list of Ingress.",
13361          "items": {
13362            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
13363          },
13364          "type": "array"
13365        },
13366        "kind": {
13367          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13368          "type": "string"
13369        },
13370        "metadata": {
13371          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13372          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13373        }
13374      },
13375      "required": [
13376        "items"
13377      ],
13378      "type": "object",
13379      "x-kubernetes-group-version-kind": [
13380        {
13381          "group": "networking.k8s.io",
13382          "kind": "IngressList",
13383          "version": "v1beta1"
13384        }
13385      ]
13386    },
13387    "io.k8s.api.networking.v1beta1.IngressRule": {
13388      "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.",
13389      "properties": {
13390        "host": {
13391          "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n   the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t  Currently the port of an Ingress is implicitly :80 for http and\n\t  :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
13392          "type": "string"
13393        },
13394        "http": {
13395          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressRuleValue"
13396        }
13397      },
13398      "type": "object"
13399    },
13400    "io.k8s.api.networking.v1beta1.IngressSpec": {
13401      "description": "IngressSpec describes the Ingress the user wishes to exist.",
13402      "properties": {
13403        "backend": {
13404          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend",
13405          "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."
13406        },
13407        "ingressClassName": {
13408          "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.",
13409          "type": "string"
13410        },
13411        "rules": {
13412          "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.",
13413          "items": {
13414            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressRule"
13415          },
13416          "type": "array"
13417        },
13418        "tls": {
13419          "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.",
13420          "items": {
13421            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressTLS"
13422          },
13423          "type": "array"
13424        }
13425      },
13426      "type": "object"
13427    },
13428    "io.k8s.api.networking.v1beta1.IngressStatus": {
13429      "description": "IngressStatus describe the current state of the Ingress.",
13430      "properties": {
13431        "loadBalancer": {
13432          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
13433          "description": "LoadBalancer contains the current status of the load-balancer."
13434        }
13435      },
13436      "type": "object"
13437    },
13438    "io.k8s.api.networking.v1beta1.IngressTLS": {
13439      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
13440      "properties": {
13441        "hosts": {
13442          "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.",
13443          "items": {
13444            "type": "string"
13445          },
13446          "type": "array"
13447        },
13448        "secretName": {
13449          "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
13450          "type": "string"
13451        }
13452      },
13453      "type": "object"
13454    },
13455    "io.k8s.api.node.v1.Overhead": {
13456      "description": "Overhead structure represents the resource overhead associated with running a pod.",
13457      "properties": {
13458        "podFixed": {
13459          "additionalProperties": {
13460            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
13461          },
13462          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
13463          "type": "object"
13464        }
13465      },
13466      "type": "object"
13467    },
13468    "io.k8s.api.node.v1.RuntimeClass": {
13469      "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/",
13470      "properties": {
13471        "apiVersion": {
13472          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13473          "type": "string"
13474        },
13475        "handler": {
13476          "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.",
13477          "type": "string"
13478        },
13479        "kind": {
13480          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13481          "type": "string"
13482        },
13483        "metadata": {
13484          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13485          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13486        },
13487        "overhead": {
13488          "$ref": "#/definitions/io.k8s.api.node.v1.Overhead",
13489          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see\n https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/\nThis field is in beta starting v1.18 and is only honored by servers that enable the PodOverhead feature."
13490        },
13491        "scheduling": {
13492          "$ref": "#/definitions/io.k8s.api.node.v1.Scheduling",
13493          "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
13494        }
13495      },
13496      "required": [
13497        "handler"
13498      ],
13499      "type": "object",
13500      "x-kubernetes-group-version-kind": [
13501        {
13502          "group": "node.k8s.io",
13503          "kind": "RuntimeClass",
13504          "version": "v1"
13505        }
13506      ]
13507    },
13508    "io.k8s.api.node.v1.RuntimeClassList": {
13509      "description": "RuntimeClassList is a list of RuntimeClass objects.",
13510      "properties": {
13511        "apiVersion": {
13512          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13513          "type": "string"
13514        },
13515        "items": {
13516          "description": "Items is a list of schema objects.",
13517          "items": {
13518            "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
13519          },
13520          "type": "array"
13521        },
13522        "kind": {
13523          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13524          "type": "string"
13525        },
13526        "metadata": {
13527          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13528          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13529        }
13530      },
13531      "required": [
13532        "items"
13533      ],
13534      "type": "object",
13535      "x-kubernetes-group-version-kind": [
13536        {
13537          "group": "node.k8s.io",
13538          "kind": "RuntimeClassList",
13539          "version": "v1"
13540        }
13541      ]
13542    },
13543    "io.k8s.api.node.v1.Scheduling": {
13544      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
13545      "properties": {
13546        "nodeSelector": {
13547          "additionalProperties": {
13548            "type": "string"
13549          },
13550          "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
13551          "type": "object"
13552        },
13553        "tolerations": {
13554          "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
13555          "items": {
13556            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
13557          },
13558          "type": "array",
13559          "x-kubernetes-list-type": "atomic"
13560        }
13561      },
13562      "type": "object"
13563    },
13564    "io.k8s.api.node.v1alpha1.Overhead": {
13565      "description": "Overhead structure represents the resource overhead associated with running a pod.",
13566      "properties": {
13567        "podFixed": {
13568          "additionalProperties": {
13569            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
13570          },
13571          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
13572          "type": "object"
13573        }
13574      },
13575      "type": "object"
13576    },
13577    "io.k8s.api.node.v1alpha1.RuntimeClass": {
13578      "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",
13579      "properties": {
13580        "apiVersion": {
13581          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13582          "type": "string"
13583        },
13584        "kind": {
13585          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13586          "type": "string"
13587        },
13588        "metadata": {
13589          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13590          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13591        },
13592        "spec": {
13593          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassSpec",
13594          "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
13595        }
13596      },
13597      "required": [
13598        "spec"
13599      ],
13600      "type": "object",
13601      "x-kubernetes-group-version-kind": [
13602        {
13603          "group": "node.k8s.io",
13604          "kind": "RuntimeClass",
13605          "version": "v1alpha1"
13606        }
13607      ]
13608    },
13609    "io.k8s.api.node.v1alpha1.RuntimeClassList": {
13610      "description": "RuntimeClassList is a list of RuntimeClass objects.",
13611      "properties": {
13612        "apiVersion": {
13613          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13614          "type": "string"
13615        },
13616        "items": {
13617          "description": "Items is a list of schema objects.",
13618          "items": {
13619            "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
13620          },
13621          "type": "array"
13622        },
13623        "kind": {
13624          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13625          "type": "string"
13626        },
13627        "metadata": {
13628          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13629          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13630        }
13631      },
13632      "required": [
13633        "items"
13634      ],
13635      "type": "object",
13636      "x-kubernetes-group-version-kind": [
13637        {
13638          "group": "node.k8s.io",
13639          "kind": "RuntimeClassList",
13640          "version": "v1alpha1"
13641        }
13642      ]
13643    },
13644    "io.k8s.api.node.v1alpha1.RuntimeClassSpec": {
13645      "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.",
13646      "properties": {
13647        "overhead": {
13648          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Overhead",
13649          "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."
13650        },
13651        "runtimeHandler": {
13652          "description": "RuntimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The RuntimeHandler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.",
13653          "type": "string"
13654        },
13655        "scheduling": {
13656          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Scheduling",
13657          "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
13658        }
13659      },
13660      "required": [
13661        "runtimeHandler"
13662      ],
13663      "type": "object"
13664    },
13665    "io.k8s.api.node.v1alpha1.Scheduling": {
13666      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
13667      "properties": {
13668        "nodeSelector": {
13669          "additionalProperties": {
13670            "type": "string"
13671          },
13672          "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
13673          "type": "object"
13674        },
13675        "tolerations": {
13676          "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
13677          "items": {
13678            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
13679          },
13680          "type": "array",
13681          "x-kubernetes-list-type": "atomic"
13682        }
13683      },
13684      "type": "object"
13685    },
13686    "io.k8s.api.node.v1beta1.Overhead": {
13687      "description": "Overhead structure represents the resource overhead associated with running a pod.",
13688      "properties": {
13689        "podFixed": {
13690          "additionalProperties": {
13691            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
13692          },
13693          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
13694          "type": "object"
13695        }
13696      },
13697      "type": "object"
13698    },
13699    "io.k8s.api.node.v1beta1.RuntimeClass": {
13700      "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",
13701      "properties": {
13702        "apiVersion": {
13703          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13704          "type": "string"
13705        },
13706        "handler": {
13707          "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.",
13708          "type": "string"
13709        },
13710        "kind": {
13711          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13712          "type": "string"
13713        },
13714        "metadata": {
13715          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13716          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13717        },
13718        "overhead": {
13719          "$ref": "#/definitions/io.k8s.api.node.v1beta1.Overhead",
13720          "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."
13721        },
13722        "scheduling": {
13723          "$ref": "#/definitions/io.k8s.api.node.v1beta1.Scheduling",
13724          "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
13725        }
13726      },
13727      "required": [
13728        "handler"
13729      ],
13730      "type": "object",
13731      "x-kubernetes-group-version-kind": [
13732        {
13733          "group": "node.k8s.io",
13734          "kind": "RuntimeClass",
13735          "version": "v1beta1"
13736        }
13737      ]
13738    },
13739    "io.k8s.api.node.v1beta1.RuntimeClassList": {
13740      "description": "RuntimeClassList is a list of RuntimeClass objects.",
13741      "properties": {
13742        "apiVersion": {
13743          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13744          "type": "string"
13745        },
13746        "items": {
13747          "description": "Items is a list of schema objects.",
13748          "items": {
13749            "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
13750          },
13751          "type": "array"
13752        },
13753        "kind": {
13754          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13755          "type": "string"
13756        },
13757        "metadata": {
13758          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13759          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13760        }
13761      },
13762      "required": [
13763        "items"
13764      ],
13765      "type": "object",
13766      "x-kubernetes-group-version-kind": [
13767        {
13768          "group": "node.k8s.io",
13769          "kind": "RuntimeClassList",
13770          "version": "v1beta1"
13771        }
13772      ]
13773    },
13774    "io.k8s.api.node.v1beta1.Scheduling": {
13775      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
13776      "properties": {
13777        "nodeSelector": {
13778          "additionalProperties": {
13779            "type": "string"
13780          },
13781          "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
13782          "type": "object"
13783        },
13784        "tolerations": {
13785          "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
13786          "items": {
13787            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
13788          },
13789          "type": "array",
13790          "x-kubernetes-list-type": "atomic"
13791        }
13792      },
13793      "type": "object"
13794    },
13795    "io.k8s.api.policy.v1beta1.AllowedCSIDriver": {
13796      "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.",
13797      "properties": {
13798        "name": {
13799          "description": "Name is the registered name of the CSI driver",
13800          "type": "string"
13801        }
13802      },
13803      "required": [
13804        "name"
13805      ],
13806      "type": "object"
13807    },
13808    "io.k8s.api.policy.v1beta1.AllowedFlexVolume": {
13809      "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.",
13810      "properties": {
13811        "driver": {
13812          "description": "driver is the name of the Flexvolume driver.",
13813          "type": "string"
13814        }
13815      },
13816      "required": [
13817        "driver"
13818      ],
13819      "type": "object"
13820    },
13821    "io.k8s.api.policy.v1beta1.AllowedHostPath": {
13822      "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.",
13823      "properties": {
13824        "pathPrefix": {
13825          "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`",
13826          "type": "string"
13827        },
13828        "readOnly": {
13829          "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
13830          "type": "boolean"
13831        }
13832      },
13833      "type": "object"
13834    },
13835    "io.k8s.api.policy.v1beta1.Eviction": {
13836      "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.",
13837      "properties": {
13838        "apiVersion": {
13839          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13840          "type": "string"
13841        },
13842        "deleteOptions": {
13843          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions",
13844          "description": "DeleteOptions may be provided"
13845        },
13846        "kind": {
13847          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13848          "type": "string"
13849        },
13850        "metadata": {
13851          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13852          "description": "ObjectMeta describes the pod that is being evicted."
13853        }
13854      },
13855      "type": "object",
13856      "x-kubernetes-group-version-kind": [
13857        {
13858          "group": "policy",
13859          "kind": "Eviction",
13860          "version": "v1beta1"
13861        }
13862      ]
13863    },
13864    "io.k8s.api.policy.v1beta1.FSGroupStrategyOptions": {
13865      "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.",
13866      "properties": {
13867        "ranges": {
13868          "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.",
13869          "items": {
13870            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
13871          },
13872          "type": "array"
13873        },
13874        "rule": {
13875          "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
13876          "type": "string"
13877        }
13878      },
13879      "type": "object"
13880    },
13881    "io.k8s.api.policy.v1beta1.HostPortRange": {
13882      "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.",
13883      "properties": {
13884        "max": {
13885          "description": "max is the end of the range, inclusive.",
13886          "format": "int32",
13887          "type": "integer"
13888        },
13889        "min": {
13890          "description": "min is the start of the range, inclusive.",
13891          "format": "int32",
13892          "type": "integer"
13893        }
13894      },
13895      "required": [
13896        "min",
13897        "max"
13898      ],
13899      "type": "object"
13900    },
13901    "io.k8s.api.policy.v1beta1.IDRange": {
13902      "description": "IDRange provides a min/max of an allowed range of IDs.",
13903      "properties": {
13904        "max": {
13905          "description": "max is the end of the range, inclusive.",
13906          "format": "int64",
13907          "type": "integer"
13908        },
13909        "min": {
13910          "description": "min is the start of the range, inclusive.",
13911          "format": "int64",
13912          "type": "integer"
13913        }
13914      },
13915      "required": [
13916        "min",
13917        "max"
13918      ],
13919      "type": "object"
13920    },
13921    "io.k8s.api.policy.v1beta1.PodDisruptionBudget": {
13922      "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods",
13923      "properties": {
13924        "apiVersion": {
13925          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13926          "type": "string"
13927        },
13928        "kind": {
13929          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13930          "type": "string"
13931        },
13932        "metadata": {
13933          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
13934        },
13935        "spec": {
13936          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec",
13937          "description": "Specification of the desired behavior of the PodDisruptionBudget."
13938        },
13939        "status": {
13940          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus",
13941          "description": "Most recently observed status of the PodDisruptionBudget."
13942        }
13943      },
13944      "type": "object",
13945      "x-kubernetes-group-version-kind": [
13946        {
13947          "group": "policy",
13948          "kind": "PodDisruptionBudget",
13949          "version": "v1beta1"
13950        }
13951      ]
13952    },
13953    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList": {
13954      "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.",
13955      "properties": {
13956        "apiVersion": {
13957          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13958          "type": "string"
13959        },
13960        "items": {
13961          "items": {
13962            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
13963          },
13964          "type": "array"
13965        },
13966        "kind": {
13967          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13968          "type": "string"
13969        },
13970        "metadata": {
13971          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
13972        }
13973      },
13974      "required": [
13975        "items"
13976      ],
13977      "type": "object",
13978      "x-kubernetes-group-version-kind": [
13979        {
13980          "group": "policy",
13981          "kind": "PodDisruptionBudgetList",
13982          "version": "v1beta1"
13983        }
13984      ]
13985    },
13986    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec": {
13987      "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
13988      "properties": {
13989        "maxUnavailable": {
13990          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13991          "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\"."
13992        },
13993        "minAvailable": {
13994          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13995          "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%\"."
13996        },
13997        "selector": {
13998          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13999          "description": "Label query over pods whose evictions are managed by the disruption budget."
14000        }
14001      },
14002      "type": "object"
14003    },
14004    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus": {
14005      "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.",
14006      "properties": {
14007        "currentHealthy": {
14008          "description": "current number of healthy pods",
14009          "format": "int32",
14010          "type": "integer"
14011        },
14012        "desiredHealthy": {
14013          "description": "minimum desired number of healthy pods",
14014          "format": "int32",
14015          "type": "integer"
14016        },
14017        "disruptedPods": {
14018          "additionalProperties": {
14019            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
14020          },
14021          "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.",
14022          "type": "object"
14023        },
14024        "disruptionsAllowed": {
14025          "description": "Number of pod disruptions that are currently allowed.",
14026          "format": "int32",
14027          "type": "integer"
14028        },
14029        "expectedPods": {
14030          "description": "total number of pods counted by this disruption budget",
14031          "format": "int32",
14032          "type": "integer"
14033        },
14034        "observedGeneration": {
14035          "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.",
14036          "format": "int64",
14037          "type": "integer"
14038        }
14039      },
14040      "required": [
14041        "disruptionsAllowed",
14042        "currentHealthy",
14043        "desiredHealthy",
14044        "expectedPods"
14045      ],
14046      "type": "object"
14047    },
14048    "io.k8s.api.policy.v1beta1.PodSecurityPolicy": {
14049      "description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated in 1.21.",
14050      "properties": {
14051        "apiVersion": {
14052          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14053          "type": "string"
14054        },
14055        "kind": {
14056          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14057          "type": "string"
14058        },
14059        "metadata": {
14060          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14061          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14062        },
14063        "spec": {
14064          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicySpec",
14065          "description": "spec defines the policy enforced."
14066        }
14067      },
14068      "type": "object",
14069      "x-kubernetes-group-version-kind": [
14070        {
14071          "group": "policy",
14072          "kind": "PodSecurityPolicy",
14073          "version": "v1beta1"
14074        }
14075      ]
14076    },
14077    "io.k8s.api.policy.v1beta1.PodSecurityPolicyList": {
14078      "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects.",
14079      "properties": {
14080        "apiVersion": {
14081          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14082          "type": "string"
14083        },
14084        "items": {
14085          "description": "items is a list of schema objects.",
14086          "items": {
14087            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
14088          },
14089          "type": "array"
14090        },
14091        "kind": {
14092          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14093          "type": "string"
14094        },
14095        "metadata": {
14096          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14097          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14098        }
14099      },
14100      "required": [
14101        "items"
14102      ],
14103      "type": "object",
14104      "x-kubernetes-group-version-kind": [
14105        {
14106          "group": "policy",
14107          "kind": "PodSecurityPolicyList",
14108          "version": "v1beta1"
14109        }
14110      ]
14111    },
14112    "io.k8s.api.policy.v1beta1.PodSecurityPolicySpec": {
14113      "description": "PodSecurityPolicySpec defines the policy enforced.",
14114      "properties": {
14115        "allowPrivilegeEscalation": {
14116          "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.",
14117          "type": "boolean"
14118        },
14119        "allowedCSIDrivers": {
14120          "description": "AllowedCSIDrivers is an allowlist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is a beta field, and is only honored if the API server enables the CSIInlineVolume feature gate.",
14121          "items": {
14122            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedCSIDriver"
14123          },
14124          "type": "array"
14125        },
14126        "allowedCapabilities": {
14127          "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.",
14128          "items": {
14129            "type": "string"
14130          },
14131          "type": "array"
14132        },
14133        "allowedFlexVolumes": {
14134          "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.",
14135          "items": {
14136            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedFlexVolume"
14137          },
14138          "type": "array"
14139        },
14140        "allowedHostPaths": {
14141          "description": "allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.",
14142          "items": {
14143            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedHostPath"
14144          },
14145          "type": "array"
14146        },
14147        "allowedProcMountTypes": {
14148          "description": "AllowedProcMountTypes is an allowlist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.",
14149          "items": {
14150            "type": "string"
14151          },
14152          "type": "array"
14153        },
14154        "allowedUnsafeSysctls": {
14155          "description": "allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to allowlist all allowed unsafe sysctls explicitly to avoid rejection.\n\nExamples: e.g. \"foo/*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.",
14156          "items": {
14157            "type": "string"
14158          },
14159          "type": "array"
14160        },
14161        "defaultAddCapabilities": {
14162          "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.",
14163          "items": {
14164            "type": "string"
14165          },
14166          "type": "array"
14167        },
14168        "defaultAllowPrivilegeEscalation": {
14169          "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.",
14170          "type": "boolean"
14171        },
14172        "forbiddenSysctls": {
14173          "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.",
14174          "items": {
14175            "type": "string"
14176          },
14177          "type": "array"
14178        },
14179        "fsGroup": {
14180          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.FSGroupStrategyOptions",
14181          "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext."
14182        },
14183        "hostIPC": {
14184          "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.",
14185          "type": "boolean"
14186        },
14187        "hostNetwork": {
14188          "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.",
14189          "type": "boolean"
14190        },
14191        "hostPID": {
14192          "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.",
14193          "type": "boolean"
14194        },
14195        "hostPorts": {
14196          "description": "hostPorts determines which host port ranges are allowed to be exposed.",
14197          "items": {
14198            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.HostPortRange"
14199          },
14200          "type": "array"
14201        },
14202        "privileged": {
14203          "description": "privileged determines if a pod can request to be run as privileged.",
14204          "type": "boolean"
14205        },
14206        "readOnlyRootFilesystem": {
14207          "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.",
14208          "type": "boolean"
14209        },
14210        "requiredDropCapabilities": {
14211          "description": "requiredDropCapabilities are the capabilities that will be dropped from the container.  These are required to be dropped and cannot be added.",
14212          "items": {
14213            "type": "string"
14214          },
14215          "type": "array"
14216        },
14217        "runAsGroup": {
14218          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions",
14219          "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."
14220        },
14221        "runAsUser": {
14222          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions",
14223          "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set."
14224        },
14225        "runtimeClass": {
14226          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions",
14227          "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."
14228        },
14229        "seLinux": {
14230          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SELinuxStrategyOptions",
14231          "description": "seLinux is the strategy that will dictate the allowable labels that may be set."
14232        },
14233        "supplementalGroups": {
14234          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions",
14235          "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext."
14236        },
14237        "volumes": {
14238          "description": "volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.",
14239          "items": {
14240            "type": "string"
14241          },
14242          "type": "array"
14243        }
14244      },
14245      "required": [
14246        "seLinux",
14247        "runAsUser",
14248        "supplementalGroups",
14249        "fsGroup"
14250      ],
14251      "type": "object"
14252    },
14253    "io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions": {
14254      "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.",
14255      "properties": {
14256        "ranges": {
14257          "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.",
14258          "items": {
14259            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14260          },
14261          "type": "array"
14262        },
14263        "rule": {
14264          "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
14265          "type": "string"
14266        }
14267      },
14268      "required": [
14269        "rule"
14270      ],
14271      "type": "object"
14272    },
14273    "io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions": {
14274      "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.",
14275      "properties": {
14276        "ranges": {
14277          "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.",
14278          "items": {
14279            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14280          },
14281          "type": "array"
14282        },
14283        "rule": {
14284          "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.",
14285          "type": "string"
14286        }
14287      },
14288      "required": [
14289        "rule"
14290      ],
14291      "type": "object"
14292    },
14293    "io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions": {
14294      "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
14295      "properties": {
14296        "allowedRuntimeClassNames": {
14297          "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.",
14298          "items": {
14299            "type": "string"
14300          },
14301          "type": "array"
14302        },
14303        "defaultRuntimeClassName": {
14304          "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.",
14305          "type": "string"
14306        }
14307      },
14308      "required": [
14309        "allowedRuntimeClassNames"
14310      ],
14311      "type": "object"
14312    },
14313    "io.k8s.api.policy.v1beta1.SELinuxStrategyOptions": {
14314      "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.",
14315      "properties": {
14316        "rule": {
14317          "description": "rule is the strategy that will dictate the allowable labels that may be set.",
14318          "type": "string"
14319        },
14320        "seLinuxOptions": {
14321          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
14322          "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
14323        }
14324      },
14325      "required": [
14326        "rule"
14327      ],
14328      "type": "object"
14329    },
14330    "io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions": {
14331      "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.",
14332      "properties": {
14333        "ranges": {
14334          "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.",
14335          "items": {
14336            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14337          },
14338          "type": "array"
14339        },
14340        "rule": {
14341          "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
14342          "type": "string"
14343        }
14344      },
14345      "type": "object"
14346    },
14347    "io.k8s.api.rbac.v1.AggregationRule": {
14348      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
14349      "properties": {
14350        "clusterRoleSelectors": {
14351          "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",
14352          "items": {
14353            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
14354          },
14355          "type": "array"
14356        }
14357      },
14358      "type": "object"
14359    },
14360    "io.k8s.api.rbac.v1.ClusterRole": {
14361      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
14362      "properties": {
14363        "aggregationRule": {
14364          "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule",
14365          "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."
14366        },
14367        "apiVersion": {
14368          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14369          "type": "string"
14370        },
14371        "kind": {
14372          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14373          "type": "string"
14374        },
14375        "metadata": {
14376          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14377          "description": "Standard object's metadata."
14378        },
14379        "rules": {
14380          "description": "Rules holds all the PolicyRules for this ClusterRole",
14381          "items": {
14382            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
14383          },
14384          "type": "array"
14385        }
14386      },
14387      "type": "object",
14388      "x-kubernetes-group-version-kind": [
14389        {
14390          "group": "rbac.authorization.k8s.io",
14391          "kind": "ClusterRole",
14392          "version": "v1"
14393        }
14394      ]
14395    },
14396    "io.k8s.api.rbac.v1.ClusterRoleBinding": {
14397      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
14398      "properties": {
14399        "apiVersion": {
14400          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14401          "type": "string"
14402        },
14403        "kind": {
14404          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14405          "type": "string"
14406        },
14407        "metadata": {
14408          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14409          "description": "Standard object's metadata."
14410        },
14411        "roleRef": {
14412          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
14413          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
14414        },
14415        "subjects": {
14416          "description": "Subjects holds references to the objects the role applies to.",
14417          "items": {
14418            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
14419          },
14420          "type": "array"
14421        }
14422      },
14423      "required": [
14424        "roleRef"
14425      ],
14426      "type": "object",
14427      "x-kubernetes-group-version-kind": [
14428        {
14429          "group": "rbac.authorization.k8s.io",
14430          "kind": "ClusterRoleBinding",
14431          "version": "v1"
14432        }
14433      ]
14434    },
14435    "io.k8s.api.rbac.v1.ClusterRoleBindingList": {
14436      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
14437      "properties": {
14438        "apiVersion": {
14439          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14440          "type": "string"
14441        },
14442        "items": {
14443          "description": "Items is a list of ClusterRoleBindings",
14444          "items": {
14445            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
14446          },
14447          "type": "array"
14448        },
14449        "kind": {
14450          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14451          "type": "string"
14452        },
14453        "metadata": {
14454          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14455          "description": "Standard object's metadata."
14456        }
14457      },
14458      "required": [
14459        "items"
14460      ],
14461      "type": "object",
14462      "x-kubernetes-group-version-kind": [
14463        {
14464          "group": "rbac.authorization.k8s.io",
14465          "kind": "ClusterRoleBindingList",
14466          "version": "v1"
14467        }
14468      ]
14469    },
14470    "io.k8s.api.rbac.v1.ClusterRoleList": {
14471      "description": "ClusterRoleList is a collection of ClusterRoles",
14472      "properties": {
14473        "apiVersion": {
14474          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14475          "type": "string"
14476        },
14477        "items": {
14478          "description": "Items is a list of ClusterRoles",
14479          "items": {
14480            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
14481          },
14482          "type": "array"
14483        },
14484        "kind": {
14485          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14486          "type": "string"
14487        },
14488        "metadata": {
14489          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14490          "description": "Standard object's metadata."
14491        }
14492      },
14493      "required": [
14494        "items"
14495      ],
14496      "type": "object",
14497      "x-kubernetes-group-version-kind": [
14498        {
14499          "group": "rbac.authorization.k8s.io",
14500          "kind": "ClusterRoleList",
14501          "version": "v1"
14502        }
14503      ]
14504    },
14505    "io.k8s.api.rbac.v1.PolicyRule": {
14506      "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.",
14507      "properties": {
14508        "apiGroups": {
14509          "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.",
14510          "items": {
14511            "type": "string"
14512          },
14513          "type": "array"
14514        },
14515        "nonResourceURLs": {
14516          "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.",
14517          "items": {
14518            "type": "string"
14519          },
14520          "type": "array"
14521        },
14522        "resourceNames": {
14523          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
14524          "items": {
14525            "type": "string"
14526          },
14527          "type": "array"
14528        },
14529        "resources": {
14530          "description": "Resources is a list of resources this rule applies to.  ResourceAll represents all resources.",
14531          "items": {
14532            "type": "string"
14533          },
14534          "type": "array"
14535        },
14536        "verbs": {
14537          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
14538          "items": {
14539            "type": "string"
14540          },
14541          "type": "array"
14542        }
14543      },
14544      "required": [
14545        "verbs"
14546      ],
14547      "type": "object"
14548    },
14549    "io.k8s.api.rbac.v1.Role": {
14550      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
14551      "properties": {
14552        "apiVersion": {
14553          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14554          "type": "string"
14555        },
14556        "kind": {
14557          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14558          "type": "string"
14559        },
14560        "metadata": {
14561          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14562          "description": "Standard object's metadata."
14563        },
14564        "rules": {
14565          "description": "Rules holds all the PolicyRules for this Role",
14566          "items": {
14567            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
14568          },
14569          "type": "array"
14570        }
14571      },
14572      "type": "object",
14573      "x-kubernetes-group-version-kind": [
14574        {
14575          "group": "rbac.authorization.k8s.io",
14576          "kind": "Role",
14577          "version": "v1"
14578        }
14579      ]
14580    },
14581    "io.k8s.api.rbac.v1.RoleBinding": {
14582      "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.",
14583      "properties": {
14584        "apiVersion": {
14585          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14586          "type": "string"
14587        },
14588        "kind": {
14589          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14590          "type": "string"
14591        },
14592        "metadata": {
14593          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14594          "description": "Standard object's metadata."
14595        },
14596        "roleRef": {
14597          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
14598          "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."
14599        },
14600        "subjects": {
14601          "description": "Subjects holds references to the objects the role applies to.",
14602          "items": {
14603            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
14604          },
14605          "type": "array"
14606        }
14607      },
14608      "required": [
14609        "roleRef"
14610      ],
14611      "type": "object",
14612      "x-kubernetes-group-version-kind": [
14613        {
14614          "group": "rbac.authorization.k8s.io",
14615          "kind": "RoleBinding",
14616          "version": "v1"
14617        }
14618      ]
14619    },
14620    "io.k8s.api.rbac.v1.RoleBindingList": {
14621      "description": "RoleBindingList is a collection of RoleBindings",
14622      "properties": {
14623        "apiVersion": {
14624          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14625          "type": "string"
14626        },
14627        "items": {
14628          "description": "Items is a list of RoleBindings",
14629          "items": {
14630            "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
14631          },
14632          "type": "array"
14633        },
14634        "kind": {
14635          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14636          "type": "string"
14637        },
14638        "metadata": {
14639          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14640          "description": "Standard object's metadata."
14641        }
14642      },
14643      "required": [
14644        "items"
14645      ],
14646      "type": "object",
14647      "x-kubernetes-group-version-kind": [
14648        {
14649          "group": "rbac.authorization.k8s.io",
14650          "kind": "RoleBindingList",
14651          "version": "v1"
14652        }
14653      ]
14654    },
14655    "io.k8s.api.rbac.v1.RoleList": {
14656      "description": "RoleList is a collection of Roles",
14657      "properties": {
14658        "apiVersion": {
14659          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14660          "type": "string"
14661        },
14662        "items": {
14663          "description": "Items is a list of Roles",
14664          "items": {
14665            "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
14666          },
14667          "type": "array"
14668        },
14669        "kind": {
14670          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14671          "type": "string"
14672        },
14673        "metadata": {
14674          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14675          "description": "Standard object's metadata."
14676        }
14677      },
14678      "required": [
14679        "items"
14680      ],
14681      "type": "object",
14682      "x-kubernetes-group-version-kind": [
14683        {
14684          "group": "rbac.authorization.k8s.io",
14685          "kind": "RoleList",
14686          "version": "v1"
14687        }
14688      ]
14689    },
14690    "io.k8s.api.rbac.v1.RoleRef": {
14691      "description": "RoleRef contains information that points to the role being used",
14692      "properties": {
14693        "apiGroup": {
14694          "description": "APIGroup is the group for the resource being referenced",
14695          "type": "string"
14696        },
14697        "kind": {
14698          "description": "Kind is the type of resource being referenced",
14699          "type": "string"
14700        },
14701        "name": {
14702          "description": "Name is the name of resource being referenced",
14703          "type": "string"
14704        }
14705      },
14706      "required": [
14707        "apiGroup",
14708        "kind",
14709        "name"
14710      ],
14711      "type": "object"
14712    },
14713    "io.k8s.api.rbac.v1.Subject": {
14714      "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.",
14715      "properties": {
14716        "apiGroup": {
14717          "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.",
14718          "type": "string"
14719        },
14720        "kind": {
14721          "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.",
14722          "type": "string"
14723        },
14724        "name": {
14725          "description": "Name of the object being referenced.",
14726          "type": "string"
14727        },
14728        "namespace": {
14729          "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.",
14730          "type": "string"
14731        }
14732      },
14733      "required": [
14734        "kind",
14735        "name"
14736      ],
14737      "type": "object"
14738    },
14739    "io.k8s.api.rbac.v1alpha1.AggregationRule": {
14740      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
14741      "properties": {
14742        "clusterRoleSelectors": {
14743          "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",
14744          "items": {
14745            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
14746          },
14747          "type": "array"
14748        }
14749      },
14750      "type": "object"
14751    },
14752    "io.k8s.api.rbac.v1alpha1.ClusterRole": {
14753      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.",
14754      "properties": {
14755        "aggregationRule": {
14756          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.AggregationRule",
14757          "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."
14758        },
14759        "apiVersion": {
14760          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14761          "type": "string"
14762        },
14763        "kind": {
14764          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14765          "type": "string"
14766        },
14767        "metadata": {
14768          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14769          "description": "Standard object's metadata."
14770        },
14771        "rules": {
14772          "description": "Rules holds all the PolicyRules for this ClusterRole",
14773          "items": {
14774            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
14775          },
14776          "type": "array"
14777        }
14778      },
14779      "type": "object",
14780      "x-kubernetes-group-version-kind": [
14781        {
14782          "group": "rbac.authorization.k8s.io",
14783          "kind": "ClusterRole",
14784          "version": "v1alpha1"
14785        }
14786      ]
14787    },
14788    "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding": {
14789      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.",
14790      "properties": {
14791        "apiVersion": {
14792          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14793          "type": "string"
14794        },
14795        "kind": {
14796          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14797          "type": "string"
14798        },
14799        "metadata": {
14800          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14801          "description": "Standard object's metadata."
14802        },
14803        "roleRef": {
14804          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
14805          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
14806        },
14807        "subjects": {
14808          "description": "Subjects holds references to the objects the role applies to.",
14809          "items": {
14810            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
14811          },
14812          "type": "array"
14813        }
14814      },
14815      "required": [
14816        "roleRef"
14817      ],
14818      "type": "object",
14819      "x-kubernetes-group-version-kind": [
14820        {
14821          "group": "rbac.authorization.k8s.io",
14822          "kind": "ClusterRoleBinding",
14823          "version": "v1alpha1"
14824        }
14825      ]
14826    },
14827    "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList": {
14828      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.",
14829      "properties": {
14830        "apiVersion": {
14831          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14832          "type": "string"
14833        },
14834        "items": {
14835          "description": "Items is a list of ClusterRoleBindings",
14836          "items": {
14837            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
14838          },
14839          "type": "array"
14840        },
14841        "kind": {
14842          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14843          "type": "string"
14844        },
14845        "metadata": {
14846          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14847          "description": "Standard object's metadata."
14848        }
14849      },
14850      "required": [
14851        "items"
14852      ],
14853      "type": "object",
14854      "x-kubernetes-group-version-kind": [
14855        {
14856          "group": "rbac.authorization.k8s.io",
14857          "kind": "ClusterRoleBindingList",
14858          "version": "v1alpha1"
14859        }
14860      ]
14861    },
14862    "io.k8s.api.rbac.v1alpha1.ClusterRoleList": {
14863      "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.",
14864      "properties": {
14865        "apiVersion": {
14866          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14867          "type": "string"
14868        },
14869        "items": {
14870          "description": "Items is a list of ClusterRoles",
14871          "items": {
14872            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
14873          },
14874          "type": "array"
14875        },
14876        "kind": {
14877          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14878          "type": "string"
14879        },
14880        "metadata": {
14881          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14882          "description": "Standard object's metadata."
14883        }
14884      },
14885      "required": [
14886        "items"
14887      ],
14888      "type": "object",
14889      "x-kubernetes-group-version-kind": [
14890        {
14891          "group": "rbac.authorization.k8s.io",
14892          "kind": "ClusterRoleList",
14893          "version": "v1alpha1"
14894        }
14895      ]
14896    },
14897    "io.k8s.api.rbac.v1alpha1.PolicyRule": {
14898      "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.",
14899      "properties": {
14900        "apiGroups": {
14901          "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.",
14902          "items": {
14903            "type": "string"
14904          },
14905          "type": "array"
14906        },
14907        "nonResourceURLs": {
14908          "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.",
14909          "items": {
14910            "type": "string"
14911          },
14912          "type": "array"
14913        },
14914        "resourceNames": {
14915          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
14916          "items": {
14917            "type": "string"
14918          },
14919          "type": "array"
14920        },
14921        "resources": {
14922          "description": "Resources is a list of resources this rule applies to.  ResourceAll represents all resources.",
14923          "items": {
14924            "type": "string"
14925          },
14926          "type": "array"
14927        },
14928        "verbs": {
14929          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
14930          "items": {
14931            "type": "string"
14932          },
14933          "type": "array"
14934        }
14935      },
14936      "required": [
14937        "verbs"
14938      ],
14939      "type": "object"
14940    },
14941    "io.k8s.api.rbac.v1alpha1.Role": {
14942      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.",
14943      "properties": {
14944        "apiVersion": {
14945          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14946          "type": "string"
14947        },
14948        "kind": {
14949          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14950          "type": "string"
14951        },
14952        "metadata": {
14953          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14954          "description": "Standard object's metadata."
14955        },
14956        "rules": {
14957          "description": "Rules holds all the PolicyRules for this Role",
14958          "items": {
14959            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
14960          },
14961          "type": "array"
14962        }
14963      },
14964      "type": "object",
14965      "x-kubernetes-group-version-kind": [
14966        {
14967          "group": "rbac.authorization.k8s.io",
14968          "kind": "Role",
14969          "version": "v1alpha1"
14970        }
14971      ]
14972    },
14973    "io.k8s.api.rbac.v1alpha1.RoleBinding": {
14974      "description": "RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.",
14975      "properties": {
14976        "apiVersion": {
14977          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14978          "type": "string"
14979        },
14980        "kind": {
14981          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14982          "type": "string"
14983        },
14984        "metadata": {
14985          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14986          "description": "Standard object's metadata."
14987        },
14988        "roleRef": {
14989          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
14990          "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."
14991        },
14992        "subjects": {
14993          "description": "Subjects holds references to the objects the role applies to.",
14994          "items": {
14995            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
14996          },
14997          "type": "array"
14998        }
14999      },
15000      "required": [
15001        "roleRef"
15002      ],
15003      "type": "object",
15004      "x-kubernetes-group-version-kind": [
15005        {
15006          "group": "rbac.authorization.k8s.io",
15007          "kind": "RoleBinding",
15008          "version": "v1alpha1"
15009        }
15010      ]
15011    },
15012    "io.k8s.api.rbac.v1alpha1.RoleBindingList": {
15013      "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.",
15014      "properties": {
15015        "apiVersion": {
15016          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15017          "type": "string"
15018        },
15019        "items": {
15020          "description": "Items is a list of RoleBindings",
15021          "items": {
15022            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
15023          },
15024          "type": "array"
15025        },
15026        "kind": {
15027          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15028          "type": "string"
15029        },
15030        "metadata": {
15031          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15032          "description": "Standard object's metadata."
15033        }
15034      },
15035      "required": [
15036        "items"
15037      ],
15038      "type": "object",
15039      "x-kubernetes-group-version-kind": [
15040        {
15041          "group": "rbac.authorization.k8s.io",
15042          "kind": "RoleBindingList",
15043          "version": "v1alpha1"
15044        }
15045      ]
15046    },
15047    "io.k8s.api.rbac.v1alpha1.RoleList": {
15048      "description": "RoleList is a collection of Roles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.",
15049      "properties": {
15050        "apiVersion": {
15051          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15052          "type": "string"
15053        },
15054        "items": {
15055          "description": "Items is a list of Roles",
15056          "items": {
15057            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
15058          },
15059          "type": "array"
15060        },
15061        "kind": {
15062          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15063          "type": "string"
15064        },
15065        "metadata": {
15066          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15067          "description": "Standard object's metadata."
15068        }
15069      },
15070      "required": [
15071        "items"
15072      ],
15073      "type": "object",
15074      "x-kubernetes-group-version-kind": [
15075        {
15076          "group": "rbac.authorization.k8s.io",
15077          "kind": "RoleList",
15078          "version": "v1alpha1"
15079        }
15080      ]
15081    },
15082    "io.k8s.api.rbac.v1alpha1.RoleRef": {
15083      "description": "RoleRef contains information that points to the role being used",
15084      "properties": {
15085        "apiGroup": {
15086          "description": "APIGroup is the group for the resource being referenced",
15087          "type": "string"
15088        },
15089        "kind": {
15090          "description": "Kind is the type of resource being referenced",
15091          "type": "string"
15092        },
15093        "name": {
15094          "description": "Name is the name of resource being referenced",
15095          "type": "string"
15096        }
15097      },
15098      "required": [
15099        "apiGroup",
15100        "kind",
15101        "name"
15102      ],
15103      "type": "object"
15104    },
15105    "io.k8s.api.rbac.v1alpha1.Subject": {
15106      "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.",
15107      "properties": {
15108        "apiVersion": {
15109          "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.",
15110          "type": "string"
15111        },
15112        "kind": {
15113          "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.",
15114          "type": "string"
15115        },
15116        "name": {
15117          "description": "Name of the object being referenced.",
15118          "type": "string"
15119        },
15120        "namespace": {
15121          "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.",
15122          "type": "string"
15123        }
15124      },
15125      "required": [
15126        "kind",
15127        "name"
15128      ],
15129      "type": "object"
15130    },
15131    "io.k8s.api.rbac.v1beta1.AggregationRule": {
15132      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
15133      "properties": {
15134        "clusterRoleSelectors": {
15135          "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",
15136          "items": {
15137            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
15138          },
15139          "type": "array"
15140        }
15141      },
15142      "type": "object"
15143    },
15144    "io.k8s.api.rbac.v1beta1.ClusterRole": {
15145      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.",
15146      "properties": {
15147        "aggregationRule": {
15148          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.AggregationRule",
15149          "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."
15150        },
15151        "apiVersion": {
15152          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15153          "type": "string"
15154        },
15155        "kind": {
15156          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15157          "type": "string"
15158        },
15159        "metadata": {
15160          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15161          "description": "Standard object's metadata."
15162        },
15163        "rules": {
15164          "description": "Rules holds all the PolicyRules for this ClusterRole",
15165          "items": {
15166            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule"
15167          },
15168          "type": "array"
15169        }
15170      },
15171      "type": "object",
15172      "x-kubernetes-group-version-kind": [
15173        {
15174          "group": "rbac.authorization.k8s.io",
15175          "kind": "ClusterRole",
15176          "version": "v1beta1"
15177        }
15178      ]
15179    },
15180    "io.k8s.api.rbac.v1beta1.ClusterRoleBinding": {
15181      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.",
15182      "properties": {
15183        "apiVersion": {
15184          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15185          "type": "string"
15186        },
15187        "kind": {
15188          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15189          "type": "string"
15190        },
15191        "metadata": {
15192          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15193          "description": "Standard object's metadata."
15194        },
15195        "roleRef": {
15196          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef",
15197          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
15198        },
15199        "subjects": {
15200          "description": "Subjects holds references to the objects the role applies to.",
15201          "items": {
15202            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject"
15203          },
15204          "type": "array"
15205        }
15206      },
15207      "required": [
15208        "roleRef"
15209      ],
15210      "type": "object",
15211      "x-kubernetes-group-version-kind": [
15212        {
15213          "group": "rbac.authorization.k8s.io",
15214          "kind": "ClusterRoleBinding",
15215          "version": "v1beta1"
15216        }
15217      ]
15218    },
15219    "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList": {
15220      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindingList, and will no longer be served in v1.22.",
15221      "properties": {
15222        "apiVersion": {
15223          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15224          "type": "string"
15225        },
15226        "items": {
15227          "description": "Items is a list of ClusterRoleBindings",
15228          "items": {
15229            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
15230          },
15231          "type": "array"
15232        },
15233        "kind": {
15234          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15235          "type": "string"
15236        },
15237        "metadata": {
15238          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15239          "description": "Standard object's metadata."
15240        }
15241      },
15242      "required": [
15243        "items"
15244      ],
15245      "type": "object",
15246      "x-kubernetes-group-version-kind": [
15247        {
15248          "group": "rbac.authorization.k8s.io",
15249          "kind": "ClusterRoleBindingList",
15250          "version": "v1beta1"
15251        }
15252      ]
15253    },
15254    "io.k8s.api.rbac.v1beta1.ClusterRoleList": {
15255      "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.",
15256      "properties": {
15257        "apiVersion": {
15258          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15259          "type": "string"
15260        },
15261        "items": {
15262          "description": "Items is a list of ClusterRoles",
15263          "items": {
15264            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
15265          },
15266          "type": "array"
15267        },
15268        "kind": {
15269          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15270          "type": "string"
15271        },
15272        "metadata": {
15273          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15274          "description": "Standard object's metadata."
15275        }
15276      },
15277      "required": [
15278        "items"
15279      ],
15280      "type": "object",
15281      "x-kubernetes-group-version-kind": [
15282        {
15283          "group": "rbac.authorization.k8s.io",
15284          "kind": "ClusterRoleList",
15285          "version": "v1beta1"
15286        }
15287      ]
15288    },
15289    "io.k8s.api.rbac.v1beta1.PolicyRule": {
15290      "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.",
15291      "properties": {
15292        "apiGroups": {
15293          "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.",
15294          "items": {
15295            "type": "string"
15296          },
15297          "type": "array"
15298        },
15299        "nonResourceURLs": {
15300          "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.",
15301          "items": {
15302            "type": "string"
15303          },
15304          "type": "array"
15305        },
15306        "resourceNames": {
15307          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
15308          "items": {
15309            "type": "string"
15310          },
15311          "type": "array"
15312        },
15313        "resources": {
15314          "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.",
15315          "items": {
15316            "type": "string"
15317          },
15318          "type": "array"
15319        },
15320        "verbs": {
15321          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
15322          "items": {
15323            "type": "string"
15324          },
15325          "type": "array"
15326        }
15327      },
15328      "required": [
15329        "verbs"
15330      ],
15331      "type": "object"
15332    },
15333    "io.k8s.api.rbac.v1beta1.Role": {
15334      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.",
15335      "properties": {
15336        "apiVersion": {
15337          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15338          "type": "string"
15339        },
15340        "kind": {
15341          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15342          "type": "string"
15343        },
15344        "metadata": {
15345          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15346          "description": "Standard object's metadata."
15347        },
15348        "rules": {
15349          "description": "Rules holds all the PolicyRules for this Role",
15350          "items": {
15351            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule"
15352          },
15353          "type": "array"
15354        }
15355      },
15356      "type": "object",
15357      "x-kubernetes-group-version-kind": [
15358        {
15359          "group": "rbac.authorization.k8s.io",
15360          "kind": "Role",
15361          "version": "v1beta1"
15362        }
15363      ]
15364    },
15365    "io.k8s.api.rbac.v1beta1.RoleBinding": {
15366      "description": "RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.",
15367      "properties": {
15368        "apiVersion": {
15369          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15370          "type": "string"
15371        },
15372        "kind": {
15373          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15374          "type": "string"
15375        },
15376        "metadata": {
15377          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15378          "description": "Standard object's metadata."
15379        },
15380        "roleRef": {
15381          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef",
15382          "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."
15383        },
15384        "subjects": {
15385          "description": "Subjects holds references to the objects the role applies to.",
15386          "items": {
15387            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject"
15388          },
15389          "type": "array"
15390        }
15391      },
15392      "required": [
15393        "roleRef"
15394      ],
15395      "type": "object",
15396      "x-kubernetes-group-version-kind": [
15397        {
15398          "group": "rbac.authorization.k8s.io",
15399          "kind": "RoleBinding",
15400          "version": "v1beta1"
15401        }
15402      ]
15403    },
15404    "io.k8s.api.rbac.v1beta1.RoleBindingList": {
15405      "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.",
15406      "properties": {
15407        "apiVersion": {
15408          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15409          "type": "string"
15410        },
15411        "items": {
15412          "description": "Items is a list of RoleBindings",
15413          "items": {
15414            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
15415          },
15416          "type": "array"
15417        },
15418        "kind": {
15419          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15420          "type": "string"
15421        },
15422        "metadata": {
15423          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15424          "description": "Standard object's metadata."
15425        }
15426      },
15427      "required": [
15428        "items"
15429      ],
15430      "type": "object",
15431      "x-kubernetes-group-version-kind": [
15432        {
15433          "group": "rbac.authorization.k8s.io",
15434          "kind": "RoleBindingList",
15435          "version": "v1beta1"
15436        }
15437      ]
15438    },
15439    "io.k8s.api.rbac.v1beta1.RoleList": {
15440      "description": "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.",
15441      "properties": {
15442        "apiVersion": {
15443          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15444          "type": "string"
15445        },
15446        "items": {
15447          "description": "Items is a list of Roles",
15448          "items": {
15449            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
15450          },
15451          "type": "array"
15452        },
15453        "kind": {
15454          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15455          "type": "string"
15456        },
15457        "metadata": {
15458          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15459          "description": "Standard object's metadata."
15460        }
15461      },
15462      "required": [
15463        "items"
15464      ],
15465      "type": "object",
15466      "x-kubernetes-group-version-kind": [
15467        {
15468          "group": "rbac.authorization.k8s.io",
15469          "kind": "RoleList",
15470          "version": "v1beta1"
15471        }
15472      ]
15473    },
15474    "io.k8s.api.rbac.v1beta1.RoleRef": {
15475      "description": "RoleRef contains information that points to the role being used",
15476      "properties": {
15477        "apiGroup": {
15478          "description": "APIGroup is the group for the resource being referenced",
15479          "type": "string"
15480        },
15481        "kind": {
15482          "description": "Kind is the type of resource being referenced",
15483          "type": "string"
15484        },
15485        "name": {
15486          "description": "Name is the name of resource being referenced",
15487          "type": "string"
15488        }
15489      },
15490      "required": [
15491        "apiGroup",
15492        "kind",
15493        "name"
15494      ],
15495      "type": "object"
15496    },
15497    "io.k8s.api.rbac.v1beta1.Subject": {
15498      "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.",
15499      "properties": {
15500        "apiGroup": {
15501          "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.",
15502          "type": "string"
15503        },
15504        "kind": {
15505          "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.",
15506          "type": "string"
15507        },
15508        "name": {
15509          "description": "Name of the object being referenced.",
15510          "type": "string"
15511        },
15512        "namespace": {
15513          "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.",
15514          "type": "string"
15515        }
15516      },
15517      "required": [
15518        "kind",
15519        "name"
15520      ],
15521      "type": "object"
15522    },
15523    "io.k8s.api.scheduling.v1.PriorityClass": {
15524      "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
15525      "properties": {
15526        "apiVersion": {
15527          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15528          "type": "string"
15529        },
15530        "description": {
15531          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15532          "type": "string"
15533        },
15534        "globalDefault": {
15535          "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.",
15536          "type": "boolean"
15537        },
15538        "kind": {
15539          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15540          "type": "string"
15541        },
15542        "metadata": {
15543          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15544          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15545        },
15546        "preemptionPolicy": {
15547          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.",
15548          "type": "string"
15549        },
15550        "value": {
15551          "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.",
15552          "format": "int32",
15553          "type": "integer"
15554        }
15555      },
15556      "required": [
15557        "value"
15558      ],
15559      "type": "object",
15560      "x-kubernetes-group-version-kind": [
15561        {
15562          "group": "scheduling.k8s.io",
15563          "kind": "PriorityClass",
15564          "version": "v1"
15565        }
15566      ]
15567    },
15568    "io.k8s.api.scheduling.v1.PriorityClassList": {
15569      "description": "PriorityClassList is a collection of priority classes.",
15570      "properties": {
15571        "apiVersion": {
15572          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15573          "type": "string"
15574        },
15575        "items": {
15576          "description": "items is the list of PriorityClasses",
15577          "items": {
15578            "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
15579          },
15580          "type": "array"
15581        },
15582        "kind": {
15583          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15584          "type": "string"
15585        },
15586        "metadata": {
15587          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15588          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15589        }
15590      },
15591      "required": [
15592        "items"
15593      ],
15594      "type": "object",
15595      "x-kubernetes-group-version-kind": [
15596        {
15597          "group": "scheduling.k8s.io",
15598          "kind": "PriorityClassList",
15599          "version": "v1"
15600        }
15601      ]
15602    },
15603    "io.k8s.api.scheduling.v1alpha1.PriorityClass": {
15604      "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.",
15605      "properties": {
15606        "apiVersion": {
15607          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15608          "type": "string"
15609        },
15610        "description": {
15611          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15612          "type": "string"
15613        },
15614        "globalDefault": {
15615          "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.",
15616          "type": "boolean"
15617        },
15618        "kind": {
15619          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15620          "type": "string"
15621        },
15622        "metadata": {
15623          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15624          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15625        },
15626        "preemptionPolicy": {
15627          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.",
15628          "type": "string"
15629        },
15630        "value": {
15631          "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.",
15632          "format": "int32",
15633          "type": "integer"
15634        }
15635      },
15636      "required": [
15637        "value"
15638      ],
15639      "type": "object",
15640      "x-kubernetes-group-version-kind": [
15641        {
15642          "group": "scheduling.k8s.io",
15643          "kind": "PriorityClass",
15644          "version": "v1alpha1"
15645        }
15646      ]
15647    },
15648    "io.k8s.api.scheduling.v1alpha1.PriorityClassList": {
15649      "description": "PriorityClassList is a collection of priority classes.",
15650      "properties": {
15651        "apiVersion": {
15652          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15653          "type": "string"
15654        },
15655        "items": {
15656          "description": "items is the list of PriorityClasses",
15657          "items": {
15658            "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
15659          },
15660          "type": "array"
15661        },
15662        "kind": {
15663          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15664          "type": "string"
15665        },
15666        "metadata": {
15667          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15668          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15669        }
15670      },
15671      "required": [
15672        "items"
15673      ],
15674      "type": "object",
15675      "x-kubernetes-group-version-kind": [
15676        {
15677          "group": "scheduling.k8s.io",
15678          "kind": "PriorityClassList",
15679          "version": "v1alpha1"
15680        }
15681      ]
15682    },
15683    "io.k8s.api.scheduling.v1beta1.PriorityClass": {
15684      "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.",
15685      "properties": {
15686        "apiVersion": {
15687          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15688          "type": "string"
15689        },
15690        "description": {
15691          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15692          "type": "string"
15693        },
15694        "globalDefault": {
15695          "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.",
15696          "type": "boolean"
15697        },
15698        "kind": {
15699          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15700          "type": "string"
15701        },
15702        "metadata": {
15703          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15704          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15705        },
15706        "preemptionPolicy": {
15707          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.",
15708          "type": "string"
15709        },
15710        "value": {
15711          "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.",
15712          "format": "int32",
15713          "type": "integer"
15714        }
15715      },
15716      "required": [
15717        "value"
15718      ],
15719      "type": "object",
15720      "x-kubernetes-group-version-kind": [
15721        {
15722          "group": "scheduling.k8s.io",
15723          "kind": "PriorityClass",
15724          "version": "v1beta1"
15725        }
15726      ]
15727    },
15728    "io.k8s.api.scheduling.v1beta1.PriorityClassList": {
15729      "description": "PriorityClassList is a collection of priority classes.",
15730      "properties": {
15731        "apiVersion": {
15732          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15733          "type": "string"
15734        },
15735        "items": {
15736          "description": "items is the list of PriorityClasses",
15737          "items": {
15738            "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
15739          },
15740          "type": "array"
15741        },
15742        "kind": {
15743          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15744          "type": "string"
15745        },
15746        "metadata": {
15747          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15748          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15749        }
15750      },
15751      "required": [
15752        "items"
15753      ],
15754      "type": "object",
15755      "x-kubernetes-group-version-kind": [
15756        {
15757          "group": "scheduling.k8s.io",
15758          "kind": "PriorityClassList",
15759          "version": "v1beta1"
15760        }
15761      ]
15762    },
15763    "io.k8s.api.storage.v1.CSIDriver": {
15764      "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.",
15765      "properties": {
15766        "apiVersion": {
15767          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15768          "type": "string"
15769        },
15770        "kind": {
15771          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15772          "type": "string"
15773        },
15774        "metadata": {
15775          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15776          "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15777        },
15778        "spec": {
15779          "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverSpec",
15780          "description": "Specification of the CSI Driver."
15781        }
15782      },
15783      "required": [
15784        "spec"
15785      ],
15786      "type": "object",
15787      "x-kubernetes-group-version-kind": [
15788        {
15789          "group": "storage.k8s.io",
15790          "kind": "CSIDriver",
15791          "version": "v1"
15792        }
15793      ]
15794    },
15795    "io.k8s.api.storage.v1.CSIDriverList": {
15796      "description": "CSIDriverList is a collection of CSIDriver objects.",
15797      "properties": {
15798        "apiVersion": {
15799          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15800          "type": "string"
15801        },
15802        "items": {
15803          "description": "items is the list of CSIDriver",
15804          "items": {
15805            "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
15806          },
15807          "type": "array"
15808        },
15809        "kind": {
15810          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15811          "type": "string"
15812        },
15813        "metadata": {
15814          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15815          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15816        }
15817      },
15818      "required": [
15819        "items"
15820      ],
15821      "type": "object",
15822      "x-kubernetes-group-version-kind": [
15823        {
15824          "group": "storage.k8s.io",
15825          "kind": "CSIDriverList",
15826          "version": "v1"
15827        }
15828      ]
15829    },
15830    "io.k8s.api.storage.v1.CSIDriverSpec": {
15831      "description": "CSIDriverSpec is the specification of a CSIDriver.",
15832      "properties": {
15833        "attachRequired": {
15834          "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.",
15835          "type": "boolean"
15836        },
15837        "fsGroupPolicy": {
15838          "description": "Defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. This field is alpha-level, and is only honored by servers that enable the CSIVolumeFSGroupPolicy feature gate.",
15839          "type": "string"
15840        },
15841        "podInfoOnMount": {
15842          "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n                                defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.",
15843          "type": "boolean"
15844        },
15845        "requiresRepublish": {
15846          "description": "RequiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.",
15847          "type": "boolean"
15848        },
15849        "storageCapacity": {
15850          "description": "If set to true, storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis is an alpha field and only available when the CSIStorageCapacity feature is enabled. The default is false.",
15851          "type": "boolean"
15852        },
15853        "tokenRequests": {
15854          "description": "TokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n  \"<audience>\": {\n    \"token\": <token>,\n    \"expirationTimestamp\": <expiration timestamp in RFC3339>,\n  },\n  ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.",
15855          "items": {
15856            "$ref": "#/definitions/io.k8s.api.storage.v1.TokenRequest"
15857          },
15858          "type": "array",
15859          "x-kubernetes-list-type": "atomic"
15860        },
15861        "volumeLifecycleModes": {
15862          "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future. This field is beta.",
15863          "items": {
15864            "type": "string"
15865          },
15866          "type": "array",
15867          "x-kubernetes-list-type": "set"
15868        }
15869      },
15870      "type": "object"
15871    },
15872    "io.k8s.api.storage.v1.CSINode": {
15873      "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.",
15874      "properties": {
15875        "apiVersion": {
15876          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15877          "type": "string"
15878        },
15879        "kind": {
15880          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15881          "type": "string"
15882        },
15883        "metadata": {
15884          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15885          "description": "metadata.name must be the Kubernetes node name."
15886        },
15887        "spec": {
15888          "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeSpec",
15889          "description": "spec is the specification of CSINode"
15890        }
15891      },
15892      "required": [
15893        "spec"
15894      ],
15895      "type": "object",
15896      "x-kubernetes-group-version-kind": [
15897        {
15898          "group": "storage.k8s.io",
15899          "kind": "CSINode",
15900          "version": "v1"
15901        }
15902      ]
15903    },
15904    "io.k8s.api.storage.v1.CSINodeDriver": {
15905      "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node",
15906      "properties": {
15907        "allocatable": {
15908          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeNodeResources",
15909          "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta."
15910        },
15911        "name": {
15912          "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.",
15913          "type": "string"
15914        },
15915        "nodeID": {
15916          "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.",
15917          "type": "string"
15918        },
15919        "topologyKeys": {
15920          "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.",
15921          "items": {
15922            "type": "string"
15923          },
15924          "type": "array"
15925        }
15926      },
15927      "required": [
15928        "name",
15929        "nodeID"
15930      ],
15931      "type": "object"
15932    },
15933    "io.k8s.api.storage.v1.CSINodeList": {
15934      "description": "CSINodeList is a collection of CSINode objects.",
15935      "properties": {
15936        "apiVersion": {
15937          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15938          "type": "string"
15939        },
15940        "items": {
15941          "description": "items is the list of CSINode",
15942          "items": {
15943            "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
15944          },
15945          "type": "array"
15946        },
15947        "kind": {
15948          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15949          "type": "string"
15950        },
15951        "metadata": {
15952          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15953          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15954        }
15955      },
15956      "required": [
15957        "items"
15958      ],
15959      "type": "object",
15960      "x-kubernetes-group-version-kind": [
15961        {
15962          "group": "storage.k8s.io",
15963          "kind": "CSINodeList",
15964          "version": "v1"
15965        }
15966      ]
15967    },
15968    "io.k8s.api.storage.v1.CSINodeSpec": {
15969      "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
15970      "properties": {
15971        "drivers": {
15972          "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.",
15973          "items": {
15974            "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeDriver"
15975          },
15976          "type": "array",
15977          "x-kubernetes-patch-merge-key": "name",
15978          "x-kubernetes-patch-strategy": "merge"
15979        }
15980      },
15981      "required": [
15982        "drivers"
15983      ],
15984      "type": "object"
15985    },
15986    "io.k8s.api.storage.v1.StorageClass": {
15987      "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.",
15988      "properties": {
15989        "allowVolumeExpansion": {
15990          "description": "AllowVolumeExpansion shows whether the storage class allow volume expand",
15991          "type": "boolean"
15992        },
15993        "allowedTopologies": {
15994          "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.",
15995          "items": {
15996            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm"
15997          },
15998          "type": "array"
15999        },
16000        "apiVersion": {
16001          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16002          "type": "string"
16003        },
16004        "kind": {
16005          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16006          "type": "string"
16007        },
16008        "metadata": {
16009          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16010          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16011        },
16012        "mountOptions": {
16013          "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.",
16014          "items": {
16015            "type": "string"
16016          },
16017          "type": "array"
16018        },
16019        "parameters": {
16020          "additionalProperties": {
16021            "type": "string"
16022          },
16023          "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
16024          "type": "object"
16025        },
16026        "provisioner": {
16027          "description": "Provisioner indicates the type of the provisioner.",
16028          "type": "string"
16029        },
16030        "reclaimPolicy": {
16031          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.",
16032          "type": "string"
16033        },
16034        "volumeBindingMode": {
16035          "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.",
16036          "type": "string"
16037        }
16038      },
16039      "required": [
16040        "provisioner"
16041      ],
16042      "type": "object",
16043      "x-kubernetes-group-version-kind": [
16044        {
16045          "group": "storage.k8s.io",
16046          "kind": "StorageClass",
16047          "version": "v1"
16048        }
16049      ]
16050    },
16051    "io.k8s.api.storage.v1.StorageClassList": {
16052      "description": "StorageClassList is a collection of storage classes.",
16053      "properties": {
16054        "apiVersion": {
16055          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16056          "type": "string"
16057        },
16058        "items": {
16059          "description": "Items is the list of StorageClasses",
16060          "items": {
16061            "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
16062          },
16063          "type": "array"
16064        },
16065        "kind": {
16066          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16067          "type": "string"
16068        },
16069        "metadata": {
16070          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16071          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16072        }
16073      },
16074      "required": [
16075        "items"
16076      ],
16077      "type": "object",
16078      "x-kubernetes-group-version-kind": [
16079        {
16080          "group": "storage.k8s.io",
16081          "kind": "StorageClassList",
16082          "version": "v1"
16083        }
16084      ]
16085    },
16086    "io.k8s.api.storage.v1.TokenRequest": {
16087      "description": "TokenRequest contains parameters of a service account token.",
16088      "properties": {
16089        "audience": {
16090          "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
16091          "type": "string"
16092        },
16093        "expirationSeconds": {
16094          "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".",
16095          "format": "int64",
16096          "type": "integer"
16097        }
16098      },
16099      "required": [
16100        "audience"
16101      ],
16102      "type": "object"
16103    },
16104    "io.k8s.api.storage.v1.VolumeAttachment": {
16105      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16106      "properties": {
16107        "apiVersion": {
16108          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16109          "type": "string"
16110        },
16111        "kind": {
16112          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16113          "type": "string"
16114        },
16115        "metadata": {
16116          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16117          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16118        },
16119        "spec": {
16120          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec",
16121          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16122        },
16123        "status": {
16124          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus",
16125          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16126        }
16127      },
16128      "required": [
16129        "spec"
16130      ],
16131      "type": "object",
16132      "x-kubernetes-group-version-kind": [
16133        {
16134          "group": "storage.k8s.io",
16135          "kind": "VolumeAttachment",
16136          "version": "v1"
16137        }
16138      ]
16139    },
16140    "io.k8s.api.storage.v1.VolumeAttachmentList": {
16141      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16142      "properties": {
16143        "apiVersion": {
16144          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16145          "type": "string"
16146        },
16147        "items": {
16148          "description": "Items is the list of VolumeAttachments",
16149          "items": {
16150            "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
16151          },
16152          "type": "array"
16153        },
16154        "kind": {
16155          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16156          "type": "string"
16157        },
16158        "metadata": {
16159          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16160          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16161        }
16162      },
16163      "required": [
16164        "items"
16165      ],
16166      "type": "object",
16167      "x-kubernetes-group-version-kind": [
16168        {
16169          "group": "storage.k8s.io",
16170          "kind": "VolumeAttachmentList",
16171          "version": "v1"
16172        }
16173      ]
16174    },
16175    "io.k8s.api.storage.v1.VolumeAttachmentSource": {
16176      "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.",
16177      "properties": {
16178        "inlineVolumeSpec": {
16179          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
16180          "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."
16181        },
16182        "persistentVolumeName": {
16183          "description": "Name of the persistent volume to attach.",
16184          "type": "string"
16185        }
16186      },
16187      "type": "object"
16188    },
16189    "io.k8s.api.storage.v1.VolumeAttachmentSpec": {
16190      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
16191      "properties": {
16192        "attacher": {
16193          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
16194          "type": "string"
16195        },
16196        "nodeName": {
16197          "description": "The node that the volume should be attached to.",
16198          "type": "string"
16199        },
16200        "source": {
16201          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource",
16202          "description": "Source represents the volume that should be attached."
16203        }
16204      },
16205      "required": [
16206        "attacher",
16207        "source",
16208        "nodeName"
16209      ],
16210      "type": "object"
16211    },
16212    "io.k8s.api.storage.v1.VolumeAttachmentStatus": {
16213      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16214      "properties": {
16215        "attachError": {
16216          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
16217          "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."
16218        },
16219        "attached": {
16220          "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.",
16221          "type": "boolean"
16222        },
16223        "attachmentMetadata": {
16224          "additionalProperties": {
16225            "type": "string"
16226          },
16227          "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.",
16228          "type": "object"
16229        },
16230        "detachError": {
16231          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
16232          "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."
16233        }
16234      },
16235      "required": [
16236        "attached"
16237      ],
16238      "type": "object"
16239    },
16240    "io.k8s.api.storage.v1.VolumeError": {
16241      "description": "VolumeError captures an error encountered during a volume operation.",
16242      "properties": {
16243        "message": {
16244          "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
16245          "type": "string"
16246        },
16247        "time": {
16248          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16249          "description": "Time the error was encountered."
16250        }
16251      },
16252      "type": "object"
16253    },
16254    "io.k8s.api.storage.v1.VolumeNodeResources": {
16255      "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.",
16256      "properties": {
16257        "count": {
16258          "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.",
16259          "format": "int32",
16260          "type": "integer"
16261        }
16262      },
16263      "type": "object"
16264    },
16265    "io.k8s.api.storage.v1alpha1.CSIStorageCapacity": {
16266      "description": "CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment.  This can be used when considering where to instantiate new PersistentVolumes.\n\nFor example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThis is an alpha feature and only available when the CSIStorageCapacity feature is enabled.",
16267      "properties": {
16268        "apiVersion": {
16269          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16270          "type": "string"
16271        },
16272        "capacity": {
16273          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
16274          "description": "Capacity is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThe semantic is currently (CSI spec 1.2) defined as: The available capacity, in bytes, of the storage that can be used to provision volumes. If not set, that information is currently unavailable and treated like zero capacity."
16275        },
16276        "kind": {
16277          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16278          "type": "string"
16279        },
16280        "metadata": {
16281          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16282          "description": "Standard object's metadata. The name has no particular meaning. It must be be a DNS subdomain (dots allowed, 253 characters). To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends with the unique CSI driver name.\n\nObjects are namespaced.\n\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16283        },
16284        "nodeTopology": {
16285          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
16286          "description": "NodeTopology defines which nodes have access to the storage for which capacity was reported. If not set, the storage is not accessible from any node in the cluster. If empty, the storage is accessible from all nodes. This field is immutable."
16287        },
16288        "storageClassName": {
16289          "description": "The name of the StorageClass that the reported capacity applies to. It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain). If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator. This field is immutable.",
16290          "type": "string"
16291        }
16292      },
16293      "required": [
16294        "storageClassName"
16295      ],
16296      "type": "object",
16297      "x-kubernetes-group-version-kind": [
16298        {
16299          "group": "storage.k8s.io",
16300          "kind": "CSIStorageCapacity",
16301          "version": "v1alpha1"
16302        }
16303      ]
16304    },
16305    "io.k8s.api.storage.v1alpha1.CSIStorageCapacityList": {
16306      "description": "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.",
16307      "properties": {
16308        "apiVersion": {
16309          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16310          "type": "string"
16311        },
16312        "items": {
16313          "description": "Items is the list of CSIStorageCapacity objects.",
16314          "items": {
16315            "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
16316          },
16317          "type": "array",
16318          "x-kubernetes-list-map-keys": [
16319            "name"
16320          ],
16321          "x-kubernetes-list-type": "map"
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/sig-architecture/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/sig-architecture/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": "CSIStorageCapacityList",
16340          "version": "v1alpha1"
16341        }
16342      ]
16343    },
16344    "io.k8s.api.storage.v1alpha1.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/sig-architecture/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/sig-architecture/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/sig-architecture/api-conventions.md#metadata"
16358        },
16359        "spec": {
16360          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.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.v1alpha1.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": "v1alpha1"
16377        }
16378      ]
16379    },
16380    "io.k8s.api.storage.v1alpha1.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/sig-architecture/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.v1alpha1.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/sig-architecture/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/sig-architecture/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": "v1alpha1"
16412        }
16413      ]
16414    },
16415    "io.k8s.api.storage.v1alpha1.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.v1alpha1.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.v1alpha1.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.v1alpha1.VolumeAttachmentStatus": {
16453      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16454      "properties": {
16455        "attachError": {
16456          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.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.v1alpha1.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.v1alpha1.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 maybe 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.v1beta1.CSIDriver": {
16495      "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.",
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/sig-architecture/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/sig-architecture/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. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16508        },
16509        "spec": {
16510          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverSpec",
16511          "description": "Specification of the CSI Driver."
16512        }
16513      },
16514      "required": [
16515        "spec"
16516      ],
16517      "type": "object",
16518      "x-kubernetes-group-version-kind": [
16519        {
16520          "group": "storage.k8s.io",
16521          "kind": "CSIDriver",
16522          "version": "v1beta1"
16523        }
16524      ]
16525    },
16526    "io.k8s.api.storage.v1beta1.CSIDriverList": {
16527      "description": "CSIDriverList is a collection of CSIDriver objects.",
16528      "properties": {
16529        "apiVersion": {
16530          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16531          "type": "string"
16532        },
16533        "items": {
16534          "description": "items is the list of CSIDriver",
16535          "items": {
16536            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
16537          },
16538          "type": "array"
16539        },
16540        "kind": {
16541          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16542          "type": "string"
16543        },
16544        "metadata": {
16545          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16546          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16547        }
16548      },
16549      "required": [
16550        "items"
16551      ],
16552      "type": "object",
16553      "x-kubernetes-group-version-kind": [
16554        {
16555          "group": "storage.k8s.io",
16556          "kind": "CSIDriverList",
16557          "version": "v1beta1"
16558        }
16559      ]
16560    },
16561    "io.k8s.api.storage.v1beta1.CSIDriverSpec": {
16562      "description": "CSIDriverSpec is the specification of a CSIDriver.",
16563      "properties": {
16564        "attachRequired": {
16565          "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.",
16566          "type": "boolean"
16567        },
16568        "fsGroupPolicy": {
16569          "description": "Defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. This field is alpha-level, and is only honored by servers that enable the CSIVolumeFSGroupPolicy feature gate.",
16570          "type": "string"
16571        },
16572        "podInfoOnMount": {
16573          "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n                                defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.",
16574          "type": "boolean"
16575        },
16576        "requiresRepublish": {
16577          "description": "RequiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.",
16578          "type": "boolean"
16579        },
16580        "storageCapacity": {
16581          "description": "If set to true, storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis is an alpha field and only available when the CSIStorageCapacity feature is enabled. The default is false.",
16582          "type": "boolean"
16583        },
16584        "tokenRequests": {
16585          "description": "TokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n  \"<audience>\": {\n    \"token\": <token>,\n    \"expirationTimestamp\": <expiration timestamp in RFC3339>,\n  },\n  ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.\n\nThis is an alpha feature and only available when the CSIServiceAccountToken feature is enabled.",
16586          "items": {
16587            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.TokenRequest"
16588          },
16589          "type": "array",
16590          "x-kubernetes-list-type": "atomic"
16591        },
16592        "volumeLifecycleModes": {
16593          "description": "VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.",
16594          "items": {
16595            "type": "string"
16596          },
16597          "type": "array"
16598        }
16599      },
16600      "type": "object"
16601    },
16602    "io.k8s.api.storage.v1beta1.CSINode": {
16603      "description": "DEPRECATED - This group version of CSINode is deprecated by storage/v1/CSINode. See the release notes for more information. 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.",
16604      "properties": {
16605        "apiVersion": {
16606          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16607          "type": "string"
16608        },
16609        "kind": {
16610          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16611          "type": "string"
16612        },
16613        "metadata": {
16614          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16615          "description": "metadata.name must be the Kubernetes node name."
16616        },
16617        "spec": {
16618          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeSpec",
16619          "description": "spec is the specification of CSINode"
16620        }
16621      },
16622      "required": [
16623        "spec"
16624      ],
16625      "type": "object",
16626      "x-kubernetes-group-version-kind": [
16627        {
16628          "group": "storage.k8s.io",
16629          "kind": "CSINode",
16630          "version": "v1beta1"
16631        }
16632      ]
16633    },
16634    "io.k8s.api.storage.v1beta1.CSINodeDriver": {
16635      "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node",
16636      "properties": {
16637        "allocatable": {
16638          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeNodeResources",
16639          "description": "allocatable represents the volume resources of a node that are available for scheduling."
16640        },
16641        "name": {
16642          "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.",
16643          "type": "string"
16644        },
16645        "nodeID": {
16646          "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.",
16647          "type": "string"
16648        },
16649        "topologyKeys": {
16650          "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.",
16651          "items": {
16652            "type": "string"
16653          },
16654          "type": "array"
16655        }
16656      },
16657      "required": [
16658        "name",
16659        "nodeID"
16660      ],
16661      "type": "object"
16662    },
16663    "io.k8s.api.storage.v1beta1.CSINodeList": {
16664      "description": "CSINodeList is a collection of CSINode objects.",
16665      "properties": {
16666        "apiVersion": {
16667          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16668          "type": "string"
16669        },
16670        "items": {
16671          "description": "items is the list of CSINode",
16672          "items": {
16673            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
16674          },
16675          "type": "array"
16676        },
16677        "kind": {
16678          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16679          "type": "string"
16680        },
16681        "metadata": {
16682          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16683          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16684        }
16685      },
16686      "required": [
16687        "items"
16688      ],
16689      "type": "object",
16690      "x-kubernetes-group-version-kind": [
16691        {
16692          "group": "storage.k8s.io",
16693          "kind": "CSINodeList",
16694          "version": "v1beta1"
16695        }
16696      ]
16697    },
16698    "io.k8s.api.storage.v1beta1.CSINodeSpec": {
16699      "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
16700      "properties": {
16701        "drivers": {
16702          "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.",
16703          "items": {
16704            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeDriver"
16705          },
16706          "type": "array",
16707          "x-kubernetes-patch-merge-key": "name",
16708          "x-kubernetes-patch-strategy": "merge"
16709        }
16710      },
16711      "required": [
16712        "drivers"
16713      ],
16714      "type": "object"
16715    },
16716    "io.k8s.api.storage.v1beta1.StorageClass": {
16717      "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.",
16718      "properties": {
16719        "allowVolumeExpansion": {
16720          "description": "AllowVolumeExpansion shows whether the storage class allow volume expand",
16721          "type": "boolean"
16722        },
16723        "allowedTopologies": {
16724          "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.",
16725          "items": {
16726            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm"
16727          },
16728          "type": "array"
16729        },
16730        "apiVersion": {
16731          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16732          "type": "string"
16733        },
16734        "kind": {
16735          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16736          "type": "string"
16737        },
16738        "metadata": {
16739          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16740          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16741        },
16742        "mountOptions": {
16743          "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.",
16744          "items": {
16745            "type": "string"
16746          },
16747          "type": "array"
16748        },
16749        "parameters": {
16750          "additionalProperties": {
16751            "type": "string"
16752          },
16753          "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
16754          "type": "object"
16755        },
16756        "provisioner": {
16757          "description": "Provisioner indicates the type of the provisioner.",
16758          "type": "string"
16759        },
16760        "reclaimPolicy": {
16761          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.",
16762          "type": "string"
16763        },
16764        "volumeBindingMode": {
16765          "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.",
16766          "type": "string"
16767        }
16768      },
16769      "required": [
16770        "provisioner"
16771      ],
16772      "type": "object",
16773      "x-kubernetes-group-version-kind": [
16774        {
16775          "group": "storage.k8s.io",
16776          "kind": "StorageClass",
16777          "version": "v1beta1"
16778        }
16779      ]
16780    },
16781    "io.k8s.api.storage.v1beta1.StorageClassList": {
16782      "description": "StorageClassList is a collection of storage classes.",
16783      "properties": {
16784        "apiVersion": {
16785          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16786          "type": "string"
16787        },
16788        "items": {
16789          "description": "Items is the list of StorageClasses",
16790          "items": {
16791            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
16792          },
16793          "type": "array"
16794        },
16795        "kind": {
16796          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16797          "type": "string"
16798        },
16799        "metadata": {
16800          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16801          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16802        }
16803      },
16804      "required": [
16805        "items"
16806      ],
16807      "type": "object",
16808      "x-kubernetes-group-version-kind": [
16809        {
16810          "group": "storage.k8s.io",
16811          "kind": "StorageClassList",
16812          "version": "v1beta1"
16813        }
16814      ]
16815    },
16816    "io.k8s.api.storage.v1beta1.TokenRequest": {
16817      "description": "TokenRequest contains parameters of a service account token.",
16818      "properties": {
16819        "audience": {
16820          "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
16821          "type": "string"
16822        },
16823        "expirationSeconds": {
16824          "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\"",
16825          "format": "int64",
16826          "type": "integer"
16827        }
16828      },
16829      "required": [
16830        "audience"
16831      ],
16832      "type": "object"
16833    },
16834    "io.k8s.api.storage.v1beta1.VolumeAttachment": {
16835      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16836      "properties": {
16837        "apiVersion": {
16838          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16839          "type": "string"
16840        },
16841        "kind": {
16842          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16843          "type": "string"
16844        },
16845        "metadata": {
16846          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16847          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16848        },
16849        "spec": {
16850          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSpec",
16851          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16852        },
16853        "status": {
16854          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentStatus",
16855          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16856        }
16857      },
16858      "required": [
16859        "spec"
16860      ],
16861      "type": "object",
16862      "x-kubernetes-group-version-kind": [
16863        {
16864          "group": "storage.k8s.io",
16865          "kind": "VolumeAttachment",
16866          "version": "v1beta1"
16867        }
16868      ]
16869    },
16870    "io.k8s.api.storage.v1beta1.VolumeAttachmentList": {
16871      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16872      "properties": {
16873        "apiVersion": {
16874          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16875          "type": "string"
16876        },
16877        "items": {
16878          "description": "Items is the list of VolumeAttachments",
16879          "items": {
16880            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
16881          },
16882          "type": "array"
16883        },
16884        "kind": {
16885          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16886          "type": "string"
16887        },
16888        "metadata": {
16889          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16890          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16891        }
16892      },
16893      "required": [
16894        "items"
16895      ],
16896      "type": "object",
16897      "x-kubernetes-group-version-kind": [
16898        {
16899          "group": "storage.k8s.io",
16900          "kind": "VolumeAttachmentList",
16901          "version": "v1beta1"
16902        }
16903      ]
16904    },
16905    "io.k8s.api.storage.v1beta1.VolumeAttachmentSource": {
16906      "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.",
16907      "properties": {
16908        "inlineVolumeSpec": {
16909          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
16910          "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."
16911        },
16912        "persistentVolumeName": {
16913          "description": "Name of the persistent volume to attach.",
16914          "type": "string"
16915        }
16916      },
16917      "type": "object"
16918    },
16919    "io.k8s.api.storage.v1beta1.VolumeAttachmentSpec": {
16920      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
16921      "properties": {
16922        "attacher": {
16923          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
16924          "type": "string"
16925        },
16926        "nodeName": {
16927          "description": "The node that the volume should be attached to.",
16928          "type": "string"
16929        },
16930        "source": {
16931          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSource",
16932          "description": "Source represents the volume that should be attached."
16933        }
16934      },
16935      "required": [
16936        "attacher",
16937        "source",
16938        "nodeName"
16939      ],
16940      "type": "object"
16941    },
16942    "io.k8s.api.storage.v1beta1.VolumeAttachmentStatus": {
16943      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16944      "properties": {
16945        "attachError": {
16946          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError",
16947          "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."
16948        },
16949        "attached": {
16950          "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.",
16951          "type": "boolean"
16952        },
16953        "attachmentMetadata": {
16954          "additionalProperties": {
16955            "type": "string"
16956          },
16957          "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.",
16958          "type": "object"
16959        },
16960        "detachError": {
16961          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError",
16962          "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."
16963        }
16964      },
16965      "required": [
16966        "attached"
16967      ],
16968      "type": "object"
16969    },
16970    "io.k8s.api.storage.v1beta1.VolumeError": {
16971      "description": "VolumeError captures an error encountered during a volume operation.",
16972      "properties": {
16973        "message": {
16974          "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
16975          "type": "string"
16976        },
16977        "time": {
16978          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16979          "description": "Time the error was encountered."
16980        }
16981      },
16982      "type": "object"
16983    },
16984    "io.k8s.api.storage.v1beta1.VolumeNodeResources": {
16985      "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.",
16986      "properties": {
16987        "count": {
16988          "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.",
16989          "format": "int32",
16990          "type": "integer"
16991        }
16992      },
16993      "type": "object"
16994    },
16995    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": {
16996      "description": "CustomResourceColumnDefinition specifies a column for server side printing.",
16997      "properties": {
16998        "description": {
16999          "description": "description is a human readable description of this column.",
17000          "type": "string"
17001        },
17002        "format": {
17003          "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
17004          "type": "string"
17005        },
17006        "jsonPath": {
17007          "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.",
17008          "type": "string"
17009        },
17010        "name": {
17011          "description": "name is a human readable name for the column.",
17012          "type": "string"
17013        },
17014        "priority": {
17015          "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
17016          "format": "int32",
17017          "type": "integer"
17018        },
17019        "type": {
17020          "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
17021          "type": "string"
17022        }
17023      },
17024      "required": [
17025        "name",
17026        "type",
17027        "jsonPath"
17028      ],
17029      "type": "object"
17030    },
17031    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": {
17032      "description": "CustomResourceConversion describes how to convert different versions of a CR.",
17033      "properties": {
17034        "strategy": {
17035          "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n  is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.",
17036          "type": "string"
17037        },
17038        "webhook": {
17039          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion",
17040          "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `Webhook`."
17041        }
17042      },
17043      "required": [
17044        "strategy"
17045      ],
17046      "type": "object"
17047    },
17048    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": {
17049      "description": "CustomResourceDefinition represents a resource that should be exposed on the API server.  Its name MUST be in the format <.spec.name>.<.spec.group>.",
17050      "properties": {
17051        "apiVersion": {
17052          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17053          "type": "string"
17054        },
17055        "kind": {
17056          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17057          "type": "string"
17058        },
17059        "metadata": {
17060          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
17061        },
17062        "spec": {
17063          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec",
17064          "description": "spec describes how the user wants the resources to appear"
17065        },
17066        "status": {
17067          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus",
17068          "description": "status indicates the actual state of the CustomResourceDefinition"
17069        }
17070      },
17071      "required": [
17072        "spec"
17073      ],
17074      "type": "object",
17075      "x-kubernetes-group-version-kind": [
17076        {
17077          "group": "apiextensions.k8s.io",
17078          "kind": "CustomResourceDefinition",
17079          "version": "v1"
17080        }
17081      ]
17082    },
17083    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": {
17084      "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
17085      "properties": {
17086        "lastTransitionTime": {
17087          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
17088          "description": "lastTransitionTime last time the condition transitioned from one status to another."
17089        },
17090        "message": {
17091          "description": "message is a human-readable message indicating details about last transition.",
17092          "type": "string"
17093        },
17094        "reason": {
17095          "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
17096          "type": "string"
17097        },
17098        "status": {
17099          "description": "status is the status of the condition. Can be True, False, Unknown.",
17100          "type": "string"
17101        },
17102        "type": {
17103          "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
17104          "type": "string"
17105        }
17106      },
17107      "required": [
17108        "type",
17109        "status"
17110      ],
17111      "type": "object"
17112    },
17113    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": {
17114      "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.",
17115      "properties": {
17116        "apiVersion": {
17117          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17118          "type": "string"
17119        },
17120        "items": {
17121          "description": "items list individual CustomResourceDefinition objects",
17122          "items": {
17123            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
17124          },
17125          "type": "array"
17126        },
17127        "kind": {
17128          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17129          "type": "string"
17130        },
17131        "metadata": {
17132          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
17133        }
17134      },
17135      "required": [
17136        "items"
17137      ],
17138      "type": "object",
17139      "x-kubernetes-group-version-kind": [
17140        {
17141          "group": "apiextensions.k8s.io",
17142          "kind": "CustomResourceDefinitionList",
17143          "version": "v1"
17144        }
17145      ]
17146    },
17147    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": {
17148      "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
17149      "properties": {
17150        "categories": {
17151          "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.",
17152          "items": {
17153            "type": "string"
17154          },
17155          "type": "array"
17156        },
17157        "kind": {
17158          "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.",
17159          "type": "string"
17160        },
17161        "listKind": {
17162          "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
17163          "type": "string"
17164        },
17165        "plural": {
17166          "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.",
17167          "type": "string"
17168        },
17169        "shortNames": {
17170          "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get <shortname>`. It must be all lowercase.",
17171          "items": {
17172            "type": "string"
17173          },
17174          "type": "array"
17175        },
17176        "singular": {
17177          "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
17178          "type": "string"
17179        }
17180      },
17181      "required": [
17182        "plural",
17183        "kind"
17184      ],
17185      "type": "object"
17186    },
17187    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": {
17188      "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear",
17189      "properties": {
17190        "conversion": {
17191          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion",
17192          "description": "conversion defines conversion settings for the CRD."
17193        },
17194        "group": {
17195          "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).",
17196          "type": "string"
17197        },
17198        "names": {
17199          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames",
17200          "description": "names specify the resource and kind names for the custom resource."
17201        },
17202        "preserveUnknownFields": {
17203          "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.",
17204          "type": "boolean"
17205        },
17206        "scope": {
17207          "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.",
17208          "type": "string"
17209        },
17210        "versions": {
17211          "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
17212          "items": {
17213            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion"
17214          },
17215          "type": "array"
17216        }
17217      },
17218      "required": [
17219        "group",
17220        "names",
17221        "scope",
17222        "versions"
17223      ],
17224      "type": "object"
17225    },
17226    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": {
17227      "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
17228      "properties": {
17229        "acceptedNames": {
17230          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames",
17231          "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec."
17232        },
17233        "conditions": {
17234          "description": "conditions indicate state for particular aspects of a CustomResourceDefinition",
17235          "items": {
17236            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition"
17237          },
17238          "type": "array"
17239        },
17240        "storedVersions": {
17241          "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.",
17242          "items": {
17243            "type": "string"
17244          },
17245          "type": "array"
17246        }
17247      },
17248      "type": "object"
17249    },
17250    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": {
17251      "description": "CustomResourceDefinitionVersion describes a version for CRD.",
17252      "properties": {
17253        "additionalPrinterColumns": {
17254          "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.",
17255          "items": {
17256            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition"
17257          },
17258          "type": "array"
17259        },
17260        "deprecated": {
17261          "description": "deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.",
17262          "type": "boolean"
17263        },
17264        "deprecationWarning": {
17265          "description": "deprecationWarning overrides the default warning returned to API clients. May only be set when `deprecated` is true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.",
17266          "type": "string"
17267        },
17268        "name": {
17269          "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.",
17270          "type": "string"
17271        },
17272        "schema": {
17273          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation",
17274          "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource."
17275        },
17276        "served": {
17277          "description": "served is a flag enabling/disabling this version from being served via REST APIs",
17278          "type": "boolean"
17279        },
17280        "storage": {
17281          "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.",
17282          "type": "boolean"
17283        },
17284        "subresources": {
17285          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources",
17286          "description": "subresources specify what subresources this version of the defined custom resource have."
17287        }
17288      },
17289      "required": [
17290        "name",
17291        "served",
17292        "storage"
17293      ],
17294      "type": "object"
17295    },
17296    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": {
17297      "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.",
17298      "properties": {
17299        "labelSelectorPath": {
17300          "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.",
17301          "type": "string"
17302        },
17303        "specReplicasPath": {
17304          "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.",
17305          "type": "string"
17306        },
17307        "statusReplicasPath": {
17308          "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.",
17309          "type": "string"
17310        }
17311      },
17312      "required": [
17313        "specReplicasPath",
17314        "statusReplicasPath"
17315      ],
17316      "type": "object"
17317    },
17318    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": {
17319      "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",
17320      "type": "object"
17321    },
17322    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": {
17323      "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.",
17324      "properties": {
17325        "scale": {
17326          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale",
17327          "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object."
17328        },
17329        "status": {
17330          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus",
17331          "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object."
17332        }
17333      },
17334      "type": "object"
17335    },
17336    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": {
17337      "description": "CustomResourceValidation is a list of validation methods for CustomResources.",
17338      "properties": {
17339        "openAPIV3Schema": {
17340          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps",
17341          "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning."
17342        }
17343      },
17344      "type": "object"
17345    },
17346    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": {
17347      "description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
17348      "properties": {
17349        "description": {
17350          "type": "string"
17351        },
17352        "url": {
17353          "type": "string"
17354        }
17355      },
17356      "type": "object"
17357    },
17358    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": {
17359      "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
17360    },
17361    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": {
17362      "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).",
17363      "properties": {
17364        "$ref": {
17365          "type": "string"
17366        },
17367        "$schema": {
17368          "type": "string"
17369        },
17370        "additionalItems": {
17371          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool"
17372        },
17373        "additionalProperties": {
17374          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool"
17375        },
17376        "allOf": {
17377          "items": {
17378            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17379          },
17380          "type": "array"
17381        },
17382        "anyOf": {
17383          "items": {
17384            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17385          },
17386          "type": "array"
17387        },
17388        "default": {
17389          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON",
17390          "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false."
17391        },
17392        "definitions": {
17393          "additionalProperties": {
17394            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17395          },
17396          "type": "object"
17397        },
17398        "dependencies": {
17399          "additionalProperties": {
17400            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray"
17401          },
17402          "type": "object"
17403        },
17404        "description": {
17405          "type": "string"
17406        },
17407        "enum": {
17408          "items": {
17409            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON"
17410          },
17411          "type": "array"
17412        },
17413        "example": {
17414          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON"
17415        },
17416        "exclusiveMaximum": {
17417          "type": "boolean"
17418        },
17419        "exclusiveMinimum": {
17420          "type": "boolean"
17421        },
17422        "externalDocs": {
17423          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation"
17424        },
17425        "format": {
17426          "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.",
17427          "type": "string"
17428        },
17429        "id": {
17430          "type": "string"
17431        },
17432        "items": {
17433          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray"
17434        },
17435        "maxItems": {
17436          "format": "int64",
17437          "type": "integer"
17438        },
17439        "maxLength": {
17440          "format": "int64",
17441          "type": "integer"
17442        },
17443        "maxProperties": {
17444          "format": "int64",
17445          "type": "integer"
17446        },
17447        "maximum": {
17448          "format": "double",
17449          "type": "number"
17450        },
17451        "minItems": {
17452          "format": "int64",
17453          "type": "integer"
17454        },
17455        "minLength": {
17456          "format": "int64",
17457          "type": "integer"
17458        },
17459        "minProperties": {
17460          "format": "int64",
17461          "type": "integer"
17462        },
17463        "minimum": {
17464          "format": "double",
17465          "type": "number"
17466        },
17467        "multipleOf": {
17468          "format": "double",
17469          "type": "number"
17470        },
17471        "not": {
17472          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17473        },
17474        "nullable": {
17475          "type": "boolean"
17476        },
17477        "oneOf": {
17478          "items": {
17479            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17480          },
17481          "type": "array"
17482        },
17483        "pattern": {
17484          "type": "string"
17485        },
17486        "patternProperties": {
17487          "additionalProperties": {
17488            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17489          },
17490          "type": "object"
17491        },
17492        "properties": {
17493          "additionalProperties": {
17494            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17495          },
17496          "type": "object"
17497        },
17498        "required": {
17499          "items": {
17500            "type": "string"
17501          },
17502          "type": "array"
17503        },
17504        "title": {
17505          "type": "string"
17506        },
17507        "type": {
17508          "type": "string"
17509        },
17510        "uniqueItems": {
17511          "type": "boolean"
17512        },
17513        "x-kubernetes-embedded-resource": {
17514          "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).",
17515          "type": "boolean"
17516        },
17517        "x-kubernetes-int-or-string": {
17518          "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",
17519          "type": "boolean"
17520        },
17521        "x-kubernetes-list-map-keys": {
17522          "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.",
17523          "items": {
17524            "type": "string"
17525          },
17526          "type": "array"
17527        },
17528        "x-kubernetes-list-type": {
17529          "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n     Atomic lists will be entirely replaced when updated. This extension\n     may be used on any type of list (struct, scalar, ...).\n2) `set`:\n     Sets are lists that must not have multiple items with the same value. Each\n     value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n     array with x-kubernetes-list-type `atomic`.\n3) `map`:\n     These lists are like maps in that their elements have a non-index key\n     used to identify them. Order is preserved upon merge. The map tag\n     must only be used on a list with elements of type object.\nDefaults to atomic for arrays.",
17530          "type": "string"
17531        },
17532        "x-kubernetes-map-type": {
17533          "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n     These maps are actual maps (key-value pairs) and each fields are independent\n     from each other (they can each be manipulated by separate actors). This is\n     the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n     Atomic maps will be entirely replaced when updated.",
17534          "type": "string"
17535        },
17536        "x-kubernetes-preserve-unknown-fields": {
17537          "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.",
17538          "type": "boolean"
17539        }
17540      },
17541      "type": "object"
17542    },
17543    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": {
17544      "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
17545    },
17546    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": {
17547      "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property."
17548    },
17549    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": {
17550      "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array."
17551    },
17552    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": {
17553      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
17554      "properties": {
17555        "name": {
17556          "description": "name is the name of the service. Required",
17557          "type": "string"
17558        },
17559        "namespace": {
17560          "description": "namespace is the namespace of the service. Required",
17561          "type": "string"
17562        },
17563        "path": {
17564          "description": "path is an optional URL path at which the webhook will be contacted.",
17565          "type": "string"
17566        },
17567        "port": {
17568          "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
17569          "format": "int32",
17570          "type": "integer"
17571        }
17572      },
17573      "required": [
17574        "namespace",
17575        "name"
17576      ],
17577      "type": "object"
17578    },
17579    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": {
17580      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
17581      "properties": {
17582        "caBundle": {
17583          "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.",
17584          "format": "byte",
17585          "type": "string"
17586        },
17587        "service": {
17588          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference",
17589          "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`."
17590        },
17591        "url": {
17592          "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.",
17593          "type": "string"
17594        }
17595      },
17596      "type": "object"
17597    },
17598    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": {
17599      "description": "WebhookConversion describes how to call a conversion webhook",
17600      "properties": {
17601        "clientConfig": {
17602          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig",
17603          "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`."
17604        },
17605        "conversionReviewVersions": {
17606          "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.",
17607          "items": {
17608            "type": "string"
17609          },
17610          "type": "array"
17611        }
17612      },
17613      "required": [
17614        "conversionReviewVersions"
17615      ],
17616      "type": "object"
17617    },
17618    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition": {
17619      "description": "CustomResourceColumnDefinition specifies a column for server side printing.",
17620      "properties": {
17621        "JSONPath": {
17622          "description": "JSONPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.",
17623          "type": "string"
17624        },
17625        "description": {
17626          "description": "description is a human readable description of this column.",
17627          "type": "string"
17628        },
17629        "format": {
17630          "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
17631          "type": "string"
17632        },
17633        "name": {
17634          "description": "name is a human readable name for the column.",
17635          "type": "string"
17636        },
17637        "priority": {
17638          "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
17639          "format": "int32",
17640          "type": "integer"
17641        },
17642        "type": {
17643          "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
17644          "type": "string"
17645        }
17646      },
17647      "required": [
17648        "name",
17649        "type",
17650        "JSONPath"
17651      ],
17652      "type": "object"
17653    },
17654    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion": {
17655      "description": "CustomResourceConversion describes how to convert different versions of a CR.",
17656      "properties": {
17657        "conversionReviewVersions": {
17658          "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `[\"v1beta1\"]`.",
17659          "items": {
17660            "type": "string"
17661          },
17662          "type": "array"
17663        },
17664        "strategy": {
17665          "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n  is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set.",
17666          "type": "string"
17667        },
17668        "webhookClientConfig": {
17669          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig",
17670          "description": "webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`. Required when `strategy` is set to `Webhook`."
17671        }
17672      },
17673      "required": [
17674        "strategy"
17675      ],
17676      "type": "object"
17677    },
17678    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition": {
17679      "description": "CustomResourceDefinition represents a resource that should be exposed on the API server.  Its name MUST be in the format <.spec.name>.<.spec.group>. Deprecated in v1.16, planned for removal in v1.22. Use apiextensions.k8s.io/v1 CustomResourceDefinition instead.",
17680      "properties": {
17681        "apiVersion": {
17682          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17683          "type": "string"
17684        },
17685        "kind": {
17686          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17687          "type": "string"
17688        },
17689        "metadata": {
17690          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
17691        },
17692        "spec": {
17693          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec",
17694          "description": "spec describes how the user wants the resources to appear"
17695        },
17696        "status": {
17697          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus",
17698          "description": "status indicates the actual state of the CustomResourceDefinition"
17699        }
17700      },
17701      "required": [
17702        "spec"
17703      ],
17704      "type": "object",
17705      "x-kubernetes-group-version-kind": [
17706        {
17707          "group": "apiextensions.k8s.io",
17708          "kind": "CustomResourceDefinition",
17709          "version": "v1beta1"
17710        }
17711      ]
17712    },
17713    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition": {
17714      "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
17715      "properties": {
17716        "lastTransitionTime": {
17717          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
17718          "description": "lastTransitionTime last time the condition transitioned from one status to another."
17719        },
17720        "message": {
17721          "description": "message is a human-readable message indicating details about last transition.",
17722          "type": "string"
17723        },
17724        "reason": {
17725          "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
17726          "type": "string"
17727        },
17728        "status": {
17729          "description": "status is the status of the condition. Can be True, False, Unknown.",
17730          "type": "string"
17731        },
17732        "type": {
17733          "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
17734          "type": "string"
17735        }
17736      },
17737      "required": [
17738        "type",
17739        "status"
17740      ],
17741      "type": "object"
17742    },
17743    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList": {
17744      "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.",
17745      "properties": {
17746        "apiVersion": {
17747          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17748          "type": "string"
17749        },
17750        "items": {
17751          "description": "items list individual CustomResourceDefinition objects",
17752          "items": {
17753            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
17754          },
17755          "type": "array"
17756        },
17757        "kind": {
17758          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17759          "type": "string"
17760        },
17761        "metadata": {
17762          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
17763        }
17764      },
17765      "required": [
17766        "items"
17767      ],
17768      "type": "object",
17769      "x-kubernetes-group-version-kind": [
17770        {
17771          "group": "apiextensions.k8s.io",
17772          "kind": "CustomResourceDefinitionList",
17773          "version": "v1beta1"
17774        }
17775      ]
17776    },
17777    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames": {
17778      "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
17779      "properties": {
17780        "categories": {
17781          "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.",
17782          "items": {
17783            "type": "string"
17784          },
17785          "type": "array"
17786        },
17787        "kind": {
17788          "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.",
17789          "type": "string"
17790        },
17791        "listKind": {
17792          "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
17793          "type": "string"
17794        },
17795        "plural": {
17796          "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.",
17797          "type": "string"
17798        },
17799        "shortNames": {
17800          "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get <shortname>`. It must be all lowercase.",
17801          "items": {
17802            "type": "string"
17803          },
17804          "type": "array"
17805        },
17806        "singular": {
17807          "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
17808          "type": "string"
17809        }
17810      },
17811      "required": [
17812        "plural",
17813        "kind"
17814      ],
17815      "type": "object"
17816    },
17817    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec": {
17818      "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear",
17819      "properties": {
17820        "additionalPrinterColumns": {
17821          "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If present, this field configures columns for all versions. Top-level and per-version columns are mutually exclusive. If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.",
17822          "items": {
17823            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition"
17824          },
17825          "type": "array"
17826        },
17827        "conversion": {
17828          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion",
17829          "description": "conversion defines conversion settings for the CRD."
17830        },
17831        "group": {
17832          "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).",
17833          "type": "string"
17834        },
17835        "names": {
17836          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames",
17837          "description": "names specify the resource and kind names for the custom resource."
17838        },
17839        "preserveUnknownFields": {
17840          "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the `x-kubernetes-preserve-unknown-fields: true` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.",
17841          "type": "boolean"
17842        },
17843        "scope": {
17844          "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`.",
17845          "type": "string"
17846        },
17847        "subresources": {
17848          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources",
17849          "description": "subresources specify what subresources the defined custom resource has. If present, this field configures subresources for all versions. Top-level and per-version subresources are mutually exclusive."
17850        },
17851        "validation": {
17852          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation",
17853          "description": "validation describes the schema used for validation and pruning of the custom resource. If present, this validation schema is used to validate all versions. Top-level and per-version schemas are mutually exclusive."
17854        },
17855        "version": {
17856          "description": "version is the API version of the defined custom resource. The custom resources are served under `/apis/<group>/<version>/...`. Must match the name of the first item in the `versions` list if `version` and `versions` are both specified. Optional if `versions` is specified. Deprecated: use `versions` instead.",
17857          "type": "string"
17858        },
17859        "versions": {
17860          "description": "versions is the list of all API versions of the defined custom resource. Optional if `version` is specified. The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
17861          "items": {
17862            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion"
17863          },
17864          "type": "array"
17865        }
17866      },
17867      "required": [
17868        "group",
17869        "names",
17870        "scope"
17871      ],
17872      "type": "object"
17873    },
17874    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus": {
17875      "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
17876      "properties": {
17877        "acceptedNames": {
17878          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames",
17879          "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec."
17880        },
17881        "conditions": {
17882          "description": "conditions indicate state for particular aspects of a CustomResourceDefinition",
17883          "items": {
17884            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition"
17885          },
17886          "type": "array"
17887        },
17888        "storedVersions": {
17889          "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.",
17890          "items": {
17891            "type": "string"
17892          },
17893          "type": "array"
17894        }
17895      },
17896      "type": "object"
17897    },
17898    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion": {
17899      "description": "CustomResourceDefinitionVersion describes a version for CRD.",
17900      "properties": {
17901        "additionalPrinterColumns": {
17902          "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. 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). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.",
17903          "items": {
17904            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition"
17905          },
17906          "type": "array"
17907        },
17908        "deprecated": {
17909          "description": "deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.",
17910          "type": "boolean"
17911        },
17912        "deprecationWarning": {
17913          "description": "deprecationWarning overrides the default warning returned to API clients. May only be set when `deprecated` is true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.",
17914          "type": "string"
17915        },
17916        "name": {
17917          "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.",
17918          "type": "string"
17919        },
17920        "schema": {
17921          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation",
17922          "description": "schema describes the schema used for validation and pruning of this version of the custom resource. 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)."
17923        },
17924        "served": {
17925          "description": "served is a flag enabling/disabling this version from being served via REST APIs",
17926          "type": "boolean"
17927        },
17928        "storage": {
17929          "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.",
17930          "type": "boolean"
17931        },
17932        "subresources": {
17933          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources",
17934          "description": "subresources specify what subresources this version of the defined custom resource have. 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)."
17935        }
17936      },
17937      "required": [
17938        "name",
17939        "served",
17940        "storage"
17941      ],
17942      "type": "object"
17943    },
17944    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale": {
17945      "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.",
17946      "properties": {
17947        "labelSelectorPath": {
17948          "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.",
17949          "type": "string"
17950        },
17951        "specReplicasPath": {
17952          "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.",
17953          "type": "string"
17954        },
17955        "statusReplicasPath": {
17956          "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.",
17957          "type": "string"
17958        }
17959      },
17960      "required": [
17961        "specReplicasPath",
17962        "statusReplicasPath"
17963      ],
17964      "type": "object"
17965    },
17966    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus": {
17967      "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",
17968      "type": "object"
17969    },
17970    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources": {
17971      "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.",
17972      "properties": {
17973        "scale": {
17974          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale",
17975          "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object."
17976        },
17977        "status": {
17978          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus",
17979          "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object."
17980        }
17981      },
17982      "type": "object"
17983    },
17984    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation": {
17985      "description": "CustomResourceValidation is a list of validation methods for CustomResources.",
17986      "properties": {
17987        "openAPIV3Schema": {
17988          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps",
17989          "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning."
17990        }
17991      },
17992      "type": "object"
17993    },
17994    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation": {
17995      "description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
17996      "properties": {
17997        "description": {
17998          "type": "string"
17999        },
18000        "url": {
18001          "type": "string"
18002        }
18003      },
18004      "type": "object"
18005    },
18006    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON": {
18007      "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
18008    },
18009    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps": {
18010      "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).",
18011      "properties": {
18012        "$ref": {
18013          "type": "string"
18014        },
18015        "$schema": {
18016          "type": "string"
18017        },
18018        "additionalItems": {
18019          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool"
18020        },
18021        "additionalProperties": {
18022          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool"
18023        },
18024        "allOf": {
18025          "items": {
18026            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18027          },
18028          "type": "array"
18029        },
18030        "anyOf": {
18031          "items": {
18032            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18033          },
18034          "type": "array"
18035        },
18036        "default": {
18037          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON",
18038          "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API."
18039        },
18040        "definitions": {
18041          "additionalProperties": {
18042            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18043          },
18044          "type": "object"
18045        },
18046        "dependencies": {
18047          "additionalProperties": {
18048            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray"
18049          },
18050          "type": "object"
18051        },
18052        "description": {
18053          "type": "string"
18054        },
18055        "enum": {
18056          "items": {
18057            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON"
18058          },
18059          "type": "array"
18060        },
18061        "example": {
18062          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON"
18063        },
18064        "exclusiveMaximum": {
18065          "type": "boolean"
18066        },
18067        "exclusiveMinimum": {
18068          "type": "boolean"
18069        },
18070        "externalDocs": {
18071          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation"
18072        },
18073        "format": {
18074          "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.",
18075          "type": "string"
18076        },
18077        "id": {
18078          "type": "string"
18079        },
18080        "items": {
18081          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray"
18082        },
18083        "maxItems": {
18084          "format": "int64",
18085          "type": "integer"
18086        },
18087        "maxLength": {
18088          "format": "int64",
18089          "type": "integer"
18090        },
18091        "maxProperties": {
18092          "format": "int64",
18093          "type": "integer"
18094        },
18095        "maximum": {
18096          "format": "double",
18097          "type": "number"
18098        },
18099        "minItems": {
18100          "format": "int64",
18101          "type": "integer"
18102        },
18103        "minLength": {
18104          "format": "int64",
18105          "type": "integer"
18106        },
18107        "minProperties": {
18108          "format": "int64",
18109          "type": "integer"
18110        },
18111        "minimum": {
18112          "format": "double",
18113          "type": "number"
18114        },
18115        "multipleOf": {
18116          "format": "double",
18117          "type": "number"
18118        },
18119        "not": {
18120          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18121        },
18122        "nullable": {
18123          "type": "boolean"
18124        },
18125        "oneOf": {
18126          "items": {
18127            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18128          },
18129          "type": "array"
18130        },
18131        "pattern": {
18132          "type": "string"
18133        },
18134        "patternProperties": {
18135          "additionalProperties": {
18136            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18137          },
18138          "type": "object"
18139        },
18140        "properties": {
18141          "additionalProperties": {
18142            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18143          },
18144          "type": "object"
18145        },
18146        "required": {
18147          "items": {
18148            "type": "string"
18149          },
18150          "type": "array"
18151        },
18152        "title": {
18153          "type": "string"
18154        },
18155        "type": {
18156          "type": "string"
18157        },
18158        "uniqueItems": {
18159          "type": "boolean"
18160        },
18161        "x-kubernetes-embedded-resource": {
18162          "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).",
18163          "type": "boolean"
18164        },
18165        "x-kubernetes-int-or-string": {
18166          "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",
18167          "type": "boolean"
18168        },
18169        "x-kubernetes-list-map-keys": {
18170          "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.",
18171          "items": {
18172            "type": "string"
18173          },
18174          "type": "array"
18175        },
18176        "x-kubernetes-list-type": {
18177          "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n     Atomic lists will be entirely replaced when updated. This extension\n     may be used on any type of list (struct, scalar, ...).\n2) `set`:\n     Sets are lists that must not have multiple items with the same value. Each\n     value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n     array with x-kubernetes-list-type `atomic`.\n3) `map`:\n     These lists are like maps in that their elements have a non-index key\n     used to identify them. Order is preserved upon merge. The map tag\n     must only be used on a list with elements of type object.\nDefaults to atomic for arrays.",
18178          "type": "string"
18179        },
18180        "x-kubernetes-map-type": {
18181          "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n     These maps are actual maps (key-value pairs) and each fields are independent\n     from each other (they can each be manipulated by separate actors). This is\n     the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n     Atomic maps will be entirely replaced when updated.",
18182          "type": "string"
18183        },
18184        "x-kubernetes-preserve-unknown-fields": {
18185          "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.",
18186          "type": "boolean"
18187        }
18188      },
18189      "type": "object"
18190    },
18191    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray": {
18192      "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
18193    },
18194    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool": {
18195      "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property."
18196    },
18197    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray": {
18198      "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array."
18199    },
18200    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference": {
18201      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
18202      "properties": {
18203        "name": {
18204          "description": "name is the name of the service. Required",
18205          "type": "string"
18206        },
18207        "namespace": {
18208          "description": "namespace is the namespace of the service. Required",
18209          "type": "string"
18210        },
18211        "path": {
18212          "description": "path is an optional URL path at which the webhook will be contacted.",
18213          "type": "string"
18214        },
18215        "port": {
18216          "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
18217          "format": "int32",
18218          "type": "integer"
18219        }
18220      },
18221      "required": [
18222        "namespace",
18223        "name"
18224      ],
18225      "type": "object"
18226    },
18227    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig": {
18228      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
18229      "properties": {
18230        "caBundle": {
18231          "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.",
18232          "format": "byte",
18233          "type": "string"
18234        },
18235        "service": {
18236          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference",
18237          "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`."
18238        },
18239        "url": {
18240          "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.",
18241          "type": "string"
18242        }
18243      },
18244      "type": "object"
18245    },
18246    "io.k8s.apimachinery.pkg.api.resource.Quantity": {
18247      "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n<quantity>        ::= <signedNumber><suffix>\n  (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit>           ::= 0 | 1 | ... | 9 <digits>          ::= <digit> | <digit><digits> <number>          ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign>            ::= \"+\" | \"-\" <signedNumber>    ::= <number> | <sign><number> <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei\n  (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI>       ::= m | \"\" | k | M | G | T | P | E\n  (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber>\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n  a. No precision is lost\n  b. No fractional digits will be emitted\n  c. The exponent (or suffix) is as large as possible.\nThe sign will be omitted unless the number is negative.\n\nExamples:\n  1.5 will be serialized as \"1500m\"\n  1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.",
18248      "type": "string"
18249    },
18250    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
18251      "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
18252      "properties": {
18253        "apiVersion": {
18254          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18255          "type": "string"
18256        },
18257        "kind": {
18258          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18259          "type": "string"
18260        },
18261        "name": {
18262          "description": "name is the name of the group.",
18263          "type": "string"
18264        },
18265        "preferredVersion": {
18266          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery",
18267          "description": "preferredVersion is the version preferred by the API server, which probably is the storage version."
18268        },
18269        "serverAddressByClientCIDRs": {
18270          "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.",
18271          "items": {
18272            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
18273          },
18274          "type": "array"
18275        },
18276        "versions": {
18277          "description": "versions are the versions supported in this group.",
18278          "items": {
18279            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery"
18280          },
18281          "type": "array"
18282        }
18283      },
18284      "required": [
18285        "name",
18286        "versions"
18287      ],
18288      "type": "object",
18289      "x-kubernetes-group-version-kind": [
18290        {
18291          "group": "",
18292          "kind": "APIGroup",
18293          "version": "v1"
18294        }
18295      ]
18296    },
18297    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": {
18298      "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
18299      "properties": {
18300        "apiVersion": {
18301          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18302          "type": "string"
18303        },
18304        "groups": {
18305          "description": "groups is a list of APIGroup.",
18306          "items": {
18307            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
18308          },
18309          "type": "array"
18310        },
18311        "kind": {
18312          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18313          "type": "string"
18314        }
18315      },
18316      "required": [
18317        "groups"
18318      ],
18319      "type": "object",
18320      "x-kubernetes-group-version-kind": [
18321        {
18322          "group": "",
18323          "kind": "APIGroupList",
18324          "version": "v1"
18325        }
18326      ]
18327    },
18328    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
18329      "description": "APIResource specifies the name of a resource and whether it is namespaced.",
18330      "properties": {
18331        "categories": {
18332          "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
18333          "items": {
18334            "type": "string"
18335          },
18336          "type": "array"
18337        },
18338        "group": {
18339          "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\".",
18340          "type": "string"
18341        },
18342        "kind": {
18343          "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
18344          "type": "string"
18345        },
18346        "name": {
18347          "description": "name is the plural name of the resource.",
18348          "type": "string"
18349        },
18350        "namespaced": {
18351          "description": "namespaced indicates if a resource is namespaced or not.",
18352          "type": "boolean"
18353        },
18354        "shortNames": {
18355          "description": "shortNames is a list of suggested short names of the resource.",
18356          "items": {
18357            "type": "string"
18358          },
18359          "type": "array"
18360        },
18361        "singularName": {
18362          "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.",
18363          "type": "string"
18364        },
18365        "storageVersionHash": {
18366          "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.",
18367          "type": "string"
18368        },
18369        "verbs": {
18370          "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
18371          "items": {
18372            "type": "string"
18373          },
18374          "type": "array"
18375        },
18376        "version": {
18377          "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)\".",
18378          "type": "string"
18379        }
18380      },
18381      "required": [
18382        "name",
18383        "singularName",
18384        "namespaced",
18385        "kind",
18386        "verbs"
18387      ],
18388      "type": "object"
18389    },
18390    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": {
18391      "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.",
18392      "properties": {
18393        "apiVersion": {
18394          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18395          "type": "string"
18396        },
18397        "groupVersion": {
18398          "description": "groupVersion is the group and version this APIResourceList is for.",
18399          "type": "string"
18400        },
18401        "kind": {
18402          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18403          "type": "string"
18404        },
18405        "resources": {
18406          "description": "resources contains the name of the resources and if they are namespaced.",
18407          "items": {
18408            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource"
18409          },
18410          "type": "array"
18411        }
18412      },
18413      "required": [
18414        "groupVersion",
18415        "resources"
18416      ],
18417      "type": "object",
18418      "x-kubernetes-group-version-kind": [
18419        {
18420          "group": "",
18421          "kind": "APIResourceList",
18422          "version": "v1"
18423        }
18424      ]
18425    },
18426    "io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions": {
18427      "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.",
18428      "properties": {
18429        "apiVersion": {
18430          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18431          "type": "string"
18432        },
18433        "kind": {
18434          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18435          "type": "string"
18436        },
18437        "serverAddressByClientCIDRs": {
18438          "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.",
18439          "items": {
18440            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
18441          },
18442          "type": "array"
18443        },
18444        "versions": {
18445          "description": "versions are the api versions that are available.",
18446          "items": {
18447            "type": "string"
18448          },
18449          "type": "array"
18450        }
18451      },
18452      "required": [
18453        "versions",
18454        "serverAddressByClientCIDRs"
18455      ],
18456      "type": "object",
18457      "x-kubernetes-group-version-kind": [
18458        {
18459          "group": "",
18460          "kind": "APIVersions",
18461          "version": "v1"
18462        }
18463      ]
18464    },
18465    "io.k8s.apimachinery.pkg.apis.meta.v1.Condition": {
18466      "description": "Condition contains details for one aspect of the current state of this API Resource.",
18467      "properties": {
18468        "lastTransitionTime": {
18469          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18470          "description": "lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable."
18471        },
18472        "message": {
18473          "description": "message is a human readable message indicating details about the transition. This may be an empty string.",
18474          "type": "string"
18475        },
18476        "observedGeneration": {
18477          "description": "observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.",
18478          "format": "int64",
18479          "type": "integer"
18480        },
18481        "reason": {
18482          "description": "reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.",
18483          "type": "string"
18484        },
18485        "status": {
18486          "description": "status of the condition, one of True, False, Unknown.",
18487          "type": "string"
18488        },
18489        "type": {
18490          "description": "type of condition in CamelCase or in foo.example.com/CamelCase.",
18491          "type": "string"
18492        }
18493      },
18494      "required": [
18495        "type",
18496        "status",
18497        "lastTransitionTime",
18498        "reason",
18499        "message"
18500      ],
18501      "type": "object"
18502    },
18503    "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
18504      "description": "DeleteOptions may be provided when deleting an API object.",
18505      "properties": {
18506        "apiVersion": {
18507          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18508          "type": "string"
18509        },
18510        "dryRun": {
18511          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18512          "items": {
18513            "type": "string"
18514          },
18515          "type": "array"
18516        },
18517        "gracePeriodSeconds": {
18518          "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18519          "format": "int64",
18520          "type": "integer"
18521        },
18522        "kind": {
18523          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18524          "type": "string"
18525        },
18526        "orphanDependents": {
18527          "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18528          "type": "boolean"
18529        },
18530        "preconditions": {
18531          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions",
18532          "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
18533        },
18534        "propagationPolicy": {
18535          "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18536          "type": "string"
18537        }
18538      },
18539      "type": "object",
18540      "x-kubernetes-group-version-kind": [
18541        {
18542          "group": "",
18543          "kind": "DeleteOptions",
18544          "version": "v1"
18545        },
18546        {
18547          "group": "admission.k8s.io",
18548          "kind": "DeleteOptions",
18549          "version": "v1"
18550        },
18551        {
18552          "group": "admission.k8s.io",
18553          "kind": "DeleteOptions",
18554          "version": "v1beta1"
18555        },
18556        {
18557          "group": "admissionregistration.k8s.io",
18558          "kind": "DeleteOptions",
18559          "version": "v1"
18560        },
18561        {
18562          "group": "admissionregistration.k8s.io",
18563          "kind": "DeleteOptions",
18564          "version": "v1beta1"
18565        },
18566        {
18567          "group": "apiextensions.k8s.io",
18568          "kind": "DeleteOptions",
18569          "version": "v1"
18570        },
18571        {
18572          "group": "apiextensions.k8s.io",
18573          "kind": "DeleteOptions",
18574          "version": "v1beta1"
18575        },
18576        {
18577          "group": "apiregistration.k8s.io",
18578          "kind": "DeleteOptions",
18579          "version": "v1"
18580        },
18581        {
18582          "group": "apiregistration.k8s.io",
18583          "kind": "DeleteOptions",
18584          "version": "v1beta1"
18585        },
18586        {
18587          "group": "apps",
18588          "kind": "DeleteOptions",
18589          "version": "v1"
18590        },
18591        {
18592          "group": "apps",
18593          "kind": "DeleteOptions",
18594          "version": "v1beta1"
18595        },
18596        {
18597          "group": "apps",
18598          "kind": "DeleteOptions",
18599          "version": "v1beta2"
18600        },
18601        {
18602          "group": "authentication.k8s.io",
18603          "kind": "DeleteOptions",
18604          "version": "v1"
18605        },
18606        {
18607          "group": "authentication.k8s.io",
18608          "kind": "DeleteOptions",
18609          "version": "v1beta1"
18610        },
18611        {
18612          "group": "authorization.k8s.io",
18613          "kind": "DeleteOptions",
18614          "version": "v1"
18615        },
18616        {
18617          "group": "authorization.k8s.io",
18618          "kind": "DeleteOptions",
18619          "version": "v1beta1"
18620        },
18621        {
18622          "group": "autoscaling",
18623          "kind": "DeleteOptions",
18624          "version": "v1"
18625        },
18626        {
18627          "group": "autoscaling",
18628          "kind": "DeleteOptions",
18629          "version": "v2beta1"
18630        },
18631        {
18632          "group": "autoscaling",
18633          "kind": "DeleteOptions",
18634          "version": "v2beta2"
18635        },
18636        {
18637          "group": "batch",
18638          "kind": "DeleteOptions",
18639          "version": "v1"
18640        },
18641        {
18642          "group": "batch",
18643          "kind": "DeleteOptions",
18644          "version": "v1beta1"
18645        },
18646        {
18647          "group": "batch",
18648          "kind": "DeleteOptions",
18649          "version": "v2alpha1"
18650        },
18651        {
18652          "group": "certificates.k8s.io",
18653          "kind": "DeleteOptions",
18654          "version": "v1"
18655        },
18656        {
18657          "group": "certificates.k8s.io",
18658          "kind": "DeleteOptions",
18659          "version": "v1beta1"
18660        },
18661        {
18662          "group": "coordination.k8s.io",
18663          "kind": "DeleteOptions",
18664          "version": "v1"
18665        },
18666        {
18667          "group": "coordination.k8s.io",
18668          "kind": "DeleteOptions",
18669          "version": "v1beta1"
18670        },
18671        {
18672          "group": "discovery.k8s.io",
18673          "kind": "DeleteOptions",
18674          "version": "v1alpha1"
18675        },
18676        {
18677          "group": "discovery.k8s.io",
18678          "kind": "DeleteOptions",
18679          "version": "v1beta1"
18680        },
18681        {
18682          "group": "events.k8s.io",
18683          "kind": "DeleteOptions",
18684          "version": "v1"
18685        },
18686        {
18687          "group": "events.k8s.io",
18688          "kind": "DeleteOptions",
18689          "version": "v1beta1"
18690        },
18691        {
18692          "group": "extensions",
18693          "kind": "DeleteOptions",
18694          "version": "v1beta1"
18695        },
18696        {
18697          "group": "flowcontrol.apiserver.k8s.io",
18698          "kind": "DeleteOptions",
18699          "version": "v1alpha1"
18700        },
18701        {
18702          "group": "flowcontrol.apiserver.k8s.io",
18703          "kind": "DeleteOptions",
18704          "version": "v1beta1"
18705        },
18706        {
18707          "group": "imagepolicy.k8s.io",
18708          "kind": "DeleteOptions",
18709          "version": "v1alpha1"
18710        },
18711        {
18712          "group": "internal.apiserver.k8s.io",
18713          "kind": "DeleteOptions",
18714          "version": "v1alpha1"
18715        },
18716        {
18717          "group": "networking.k8s.io",
18718          "kind": "DeleteOptions",
18719          "version": "v1"
18720        },
18721        {
18722          "group": "networking.k8s.io",
18723          "kind": "DeleteOptions",
18724          "version": "v1beta1"
18725        },
18726        {
18727          "group": "node.k8s.io",
18728          "kind": "DeleteOptions",
18729          "version": "v1"
18730        },
18731        {
18732          "group": "node.k8s.io",
18733          "kind": "DeleteOptions",
18734          "version": "v1alpha1"
18735        },
18736        {
18737          "group": "node.k8s.io",
18738          "kind": "DeleteOptions",
18739          "version": "v1beta1"
18740        },
18741        {
18742          "group": "policy",
18743          "kind": "DeleteOptions",
18744          "version": "v1beta1"
18745        },
18746        {
18747          "group": "rbac.authorization.k8s.io",
18748          "kind": "DeleteOptions",
18749          "version": "v1"
18750        },
18751        {
18752          "group": "rbac.authorization.k8s.io",
18753          "kind": "DeleteOptions",
18754          "version": "v1alpha1"
18755        },
18756        {
18757          "group": "rbac.authorization.k8s.io",
18758          "kind": "DeleteOptions",
18759          "version": "v1beta1"
18760        },
18761        {
18762          "group": "scheduling.k8s.io",
18763          "kind": "DeleteOptions",
18764          "version": "v1"
18765        },
18766        {
18767          "group": "scheduling.k8s.io",
18768          "kind": "DeleteOptions",
18769          "version": "v1alpha1"
18770        },
18771        {
18772          "group": "scheduling.k8s.io",
18773          "kind": "DeleteOptions",
18774          "version": "v1beta1"
18775        },
18776        {
18777          "group": "storage.k8s.io",
18778          "kind": "DeleteOptions",
18779          "version": "v1"
18780        },
18781        {
18782          "group": "storage.k8s.io",
18783          "kind": "DeleteOptions",
18784          "version": "v1alpha1"
18785        },
18786        {
18787          "group": "storage.k8s.io",
18788          "kind": "DeleteOptions",
18789          "version": "v1beta1"
18790        }
18791      ]
18792    },
18793    "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
18794      "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
18795      "type": "object"
18796    },
18797    "io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery": {
18798      "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.",
18799      "properties": {
18800        "groupVersion": {
18801          "description": "groupVersion specifies the API group and version in the form \"group/version\"",
18802          "type": "string"
18803        },
18804        "version": {
18805          "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
18806          "type": "string"
18807        }
18808      },
18809      "required": [
18810        "groupVersion",
18811        "version"
18812      ],
18813      "type": "object"
18814    },
18815    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": {
18816      "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.",
18817      "properties": {
18818        "matchExpressions": {
18819          "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
18820          "items": {
18821            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement"
18822          },
18823          "type": "array"
18824        },
18825        "matchLabels": {
18826          "additionalProperties": {
18827            "type": "string"
18828          },
18829          "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.",
18830          "type": "object"
18831        }
18832      },
18833      "type": "object",
18834      "x-kubernetes-map-type": "atomic"
18835    },
18836    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": {
18837      "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
18838      "properties": {
18839        "key": {
18840          "description": "key is the label key that the selector applies to.",
18841          "type": "string",
18842          "x-kubernetes-patch-merge-key": "key",
18843          "x-kubernetes-patch-strategy": "merge"
18844        },
18845        "operator": {
18846          "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
18847          "type": "string"
18848        },
18849        "values": {
18850          "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.",
18851          "items": {
18852            "type": "string"
18853          },
18854          "type": "array"
18855        }
18856      },
18857      "required": [
18858        "key",
18859        "operator"
18860      ],
18861      "type": "object"
18862    },
18863    "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
18864      "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
18865      "properties": {
18866        "continue": {
18867          "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.",
18868          "type": "string"
18869        },
18870        "remainingItemCount": {
18871          "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.",
18872          "format": "int64",
18873          "type": "integer"
18874        },
18875        "resourceVersion": {
18876          "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
18877          "type": "string"
18878        },
18879        "selfLink": {
18880          "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
18881          "type": "string"
18882        }
18883      },
18884      "type": "object"
18885    },
18886    "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
18887      "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
18888      "properties": {
18889        "apiVersion": {
18890          "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.",
18891          "type": "string"
18892        },
18893        "fieldsType": {
18894          "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
18895          "type": "string"
18896        },
18897        "fieldsV1": {
18898          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1",
18899          "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
18900        },
18901        "manager": {
18902          "description": "Manager is an identifier of the workflow managing these fields.",
18903          "type": "string"
18904        },
18905        "operation": {
18906          "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'.",
18907          "type": "string"
18908        },
18909        "time": {
18910          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18911          "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
18912        }
18913      },
18914      "type": "object"
18915    },
18916    "io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime": {
18917      "description": "MicroTime is version of Time with microsecond level precision.",
18918      "format": "date-time",
18919      "type": "string"
18920    },
18921    "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
18922      "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
18923      "properties": {
18924        "annotations": {
18925          "additionalProperties": {
18926            "type": "string"
18927          },
18928          "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",
18929          "type": "object"
18930        },
18931        "clusterName": {
18932          "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.",
18933          "type": "string"
18934        },
18935        "creationTimestamp": {
18936          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18937          "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
18938        },
18939        "deletionGracePeriodSeconds": {
18940          "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.",
18941          "format": "int64",
18942          "type": "integer"
18943        },
18944        "deletionTimestamp": {
18945          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18946          "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
18947        },
18948        "finalizers": {
18949          "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
18950          "items": {
18951            "type": "string"
18952          },
18953          "type": "array",
18954          "x-kubernetes-patch-strategy": "merge"
18955        },
18956        "generateName": {
18957          "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
18958          "type": "string"
18959        },
18960        "generation": {
18961          "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
18962          "format": "int64",
18963          "type": "integer"
18964        },
18965        "labels": {
18966          "additionalProperties": {
18967            "type": "string"
18968          },
18969          "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",
18970          "type": "object"
18971        },
18972        "managedFields": {
18973          "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.",
18974          "items": {
18975            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry"
18976          },
18977          "type": "array"
18978        },
18979        "name": {
18980          "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",
18981          "type": "string"
18982        },
18983        "namespace": {
18984          "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
18985          "type": "string"
18986        },
18987        "ownerReferences": {
18988          "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.",
18989          "items": {
18990            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference"
18991          },
18992          "type": "array",
18993          "x-kubernetes-patch-merge-key": "uid",
18994          "x-kubernetes-patch-strategy": "merge"
18995        },
18996        "resourceVersion": {
18997          "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
18998          "type": "string"
18999        },
19000        "selfLink": {
19001          "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
19002          "type": "string"
19003        },
19004        "uid": {
19005          "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",
19006          "type": "string"
19007        }
19008      },
19009      "type": "object"
19010    },
19011    "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
19012      "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.",
19013      "properties": {
19014        "apiVersion": {
19015          "description": "API version of the referent.",
19016          "type": "string"
19017        },
19018        "blockOwnerDeletion": {
19019          "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.",
19020          "type": "boolean"
19021        },
19022        "controller": {
19023          "description": "If true, this reference points to the managing controller.",
19024          "type": "boolean"
19025        },
19026        "kind": {
19027          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19028          "type": "string"
19029        },
19030        "name": {
19031          "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
19032          "type": "string"
19033        },
19034        "uid": {
19035          "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
19036          "type": "string"
19037        }
19038      },
19039      "required": [
19040        "apiVersion",
19041        "kind",
19042        "name",
19043        "uid"
19044      ],
19045      "type": "object"
19046    },
19047    "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": {
19048      "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.",
19049      "type": "object"
19050    },
19051    "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": {
19052      "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
19053      "properties": {
19054        "resourceVersion": {
19055          "description": "Specifies the target ResourceVersion",
19056          "type": "string"
19057        },
19058        "uid": {
19059          "description": "Specifies the target UID.",
19060          "type": "string"
19061        }
19062      },
19063      "type": "object"
19064    },
19065    "io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR": {
19066      "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
19067      "properties": {
19068        "clientCIDR": {
19069          "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
19070          "type": "string"
19071        },
19072        "serverAddress": {
19073          "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.",
19074          "type": "string"
19075        }
19076      },
19077      "required": [
19078        "clientCIDR",
19079        "serverAddress"
19080      ],
19081      "type": "object"
19082    },
19083    "io.k8s.apimachinery.pkg.apis.meta.v1.Status": {
19084      "description": "Status is a return value for calls that don't return other objects.",
19085      "properties": {
19086        "apiVersion": {
19087          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19088          "type": "string"
19089        },
19090        "code": {
19091          "description": "Suggested HTTP return code for this status, 0 if not set.",
19092          "format": "int32",
19093          "type": "integer"
19094        },
19095        "details": {
19096          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails",
19097          "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."
19098        },
19099        "kind": {
19100          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19101          "type": "string"
19102        },
19103        "message": {
19104          "description": "A human-readable description of the status of this operation.",
19105          "type": "string"
19106        },
19107        "metadata": {
19108          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
19109          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
19110        },
19111        "reason": {
19112          "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.",
19113          "type": "string"
19114        },
19115        "status": {
19116          "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status",
19117          "type": "string"
19118        }
19119      },
19120      "type": "object",
19121      "x-kubernetes-group-version-kind": [
19122        {
19123          "group": "",
19124          "kind": "Status",
19125          "version": "v1"
19126        }
19127      ]
19128    },
19129    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": {
19130      "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
19131      "properties": {
19132        "field": {
19133          "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\"",
19134          "type": "string"
19135        },
19136        "message": {
19137          "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
19138          "type": "string"
19139        },
19140        "reason": {
19141          "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
19142          "type": "string"
19143        }
19144      },
19145      "type": "object"
19146    },
19147    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": {
19148      "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.",
19149      "properties": {
19150        "causes": {
19151          "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
19152          "items": {
19153            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause"
19154          },
19155          "type": "array"
19156        },
19157        "group": {
19158          "description": "The group attribute of the resource associated with the status StatusReason.",
19159          "type": "string"
19160        },
19161        "kind": {
19162          "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19163          "type": "string"
19164        },
19165        "name": {
19166          "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
19167          "type": "string"
19168        },
19169        "retryAfterSeconds": {
19170          "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.",
19171          "format": "int32",
19172          "type": "integer"
19173        },
19174        "uid": {
19175          "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",
19176          "type": "string"
19177        }
19178      },
19179      "type": "object"
19180    },
19181    "io.k8s.apimachinery.pkg.apis.meta.v1.Time": {
19182      "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.",
19183      "format": "date-time",
19184      "type": "string"
19185    },
19186    "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": {
19187      "description": "Event represents a single event to a watched resource.",
19188      "properties": {
19189        "object": {
19190          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
19191          "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."
19192        },
19193        "type": {
19194          "type": "string"
19195        }
19196      },
19197      "required": [
19198        "type",
19199        "object"
19200      ],
19201      "type": "object",
19202      "x-kubernetes-group-version-kind": [
19203        {
19204          "group": "",
19205          "kind": "WatchEvent",
19206          "version": "v1"
19207        },
19208        {
19209          "group": "admission.k8s.io",
19210          "kind": "WatchEvent",
19211          "version": "v1"
19212        },
19213        {
19214          "group": "admission.k8s.io",
19215          "kind": "WatchEvent",
19216          "version": "v1beta1"
19217        },
19218        {
19219          "group": "admissionregistration.k8s.io",
19220          "kind": "WatchEvent",
19221          "version": "v1"
19222        },
19223        {
19224          "group": "admissionregistration.k8s.io",
19225          "kind": "WatchEvent",
19226          "version": "v1beta1"
19227        },
19228        {
19229          "group": "apiextensions.k8s.io",
19230          "kind": "WatchEvent",
19231          "version": "v1"
19232        },
19233        {
19234          "group": "apiextensions.k8s.io",
19235          "kind": "WatchEvent",
19236          "version": "v1beta1"
19237        },
19238        {
19239          "group": "apiregistration.k8s.io",
19240          "kind": "WatchEvent",
19241          "version": "v1"
19242        },
19243        {
19244          "group": "apiregistration.k8s.io",
19245          "kind": "WatchEvent",
19246          "version": "v1beta1"
19247        },
19248        {
19249          "group": "apps",
19250          "kind": "WatchEvent",
19251          "version": "v1"
19252        },
19253        {
19254          "group": "apps",
19255          "kind": "WatchEvent",
19256          "version": "v1beta1"
19257        },
19258        {
19259          "group": "apps",
19260          "kind": "WatchEvent",
19261          "version": "v1beta2"
19262        },
19263        {
19264          "group": "authentication.k8s.io",
19265          "kind": "WatchEvent",
19266          "version": "v1"
19267        },
19268        {
19269          "group": "authentication.k8s.io",
19270          "kind": "WatchEvent",
19271          "version": "v1beta1"
19272        },
19273        {
19274          "group": "authorization.k8s.io",
19275          "kind": "WatchEvent",
19276          "version": "v1"
19277        },
19278        {
19279          "group": "authorization.k8s.io",
19280          "kind": "WatchEvent",
19281          "version": "v1beta1"
19282        },
19283        {
19284          "group": "autoscaling",
19285          "kind": "WatchEvent",
19286          "version": "v1"
19287        },
19288        {
19289          "group": "autoscaling",
19290          "kind": "WatchEvent",
19291          "version": "v2beta1"
19292        },
19293        {
19294          "group": "autoscaling",
19295          "kind": "WatchEvent",
19296          "version": "v2beta2"
19297        },
19298        {
19299          "group": "batch",
19300          "kind": "WatchEvent",
19301          "version": "v1"
19302        },
19303        {
19304          "group": "batch",
19305          "kind": "WatchEvent",
19306          "version": "v1beta1"
19307        },
19308        {
19309          "group": "batch",
19310          "kind": "WatchEvent",
19311          "version": "v2alpha1"
19312        },
19313        {
19314          "group": "certificates.k8s.io",
19315          "kind": "WatchEvent",
19316          "version": "v1"
19317        },
19318        {
19319          "group": "certificates.k8s.io",
19320          "kind": "WatchEvent",
19321          "version": "v1beta1"
19322        },
19323        {
19324          "group": "coordination.k8s.io",
19325          "kind": "WatchEvent",
19326          "version": "v1"
19327        },
19328        {
19329          "group": "coordination.k8s.io",
19330          "kind": "WatchEvent",
19331          "version": "v1beta1"
19332        },
19333        {
19334          "group": "discovery.k8s.io",
19335          "kind": "WatchEvent",
19336          "version": "v1alpha1"
19337        },
19338        {
19339          "group": "discovery.k8s.io",
19340          "kind": "WatchEvent",
19341          "version": "v1beta1"
19342        },
19343        {
19344          "group": "events.k8s.io",
19345          "kind": "WatchEvent",
19346          "version": "v1"
19347        },
19348        {
19349          "group": "events.k8s.io",
19350          "kind": "WatchEvent",
19351          "version": "v1beta1"
19352        },
19353        {
19354          "group": "extensions",
19355          "kind": "WatchEvent",
19356          "version": "v1beta1"
19357        },
19358        {
19359          "group": "flowcontrol.apiserver.k8s.io",
19360          "kind": "WatchEvent",
19361          "version": "v1alpha1"
19362        },
19363        {
19364          "group": "flowcontrol.apiserver.k8s.io",
19365          "kind": "WatchEvent",
19366          "version": "v1beta1"
19367        },
19368        {
19369          "group": "imagepolicy.k8s.io",
19370          "kind": "WatchEvent",
19371          "version": "v1alpha1"
19372        },
19373        {
19374          "group": "internal.apiserver.k8s.io",
19375          "kind": "WatchEvent",
19376          "version": "v1alpha1"
19377        },
19378        {
19379          "group": "networking.k8s.io",
19380          "kind": "WatchEvent",
19381          "version": "v1"
19382        },
19383        {
19384          "group": "networking.k8s.io",
19385          "kind": "WatchEvent",
19386          "version": "v1beta1"
19387        },
19388        {
19389          "group": "node.k8s.io",
19390          "kind": "WatchEvent",
19391          "version": "v1"
19392        },
19393        {
19394          "group": "node.k8s.io",
19395          "kind": "WatchEvent",
19396          "version": "v1alpha1"
19397        },
19398        {
19399          "group": "node.k8s.io",
19400          "kind": "WatchEvent",
19401          "version": "v1beta1"
19402        },
19403        {
19404          "group": "policy",
19405          "kind": "WatchEvent",
19406          "version": "v1beta1"
19407        },
19408        {
19409          "group": "rbac.authorization.k8s.io",
19410          "kind": "WatchEvent",
19411          "version": "v1"
19412        },
19413        {
19414          "group": "rbac.authorization.k8s.io",
19415          "kind": "WatchEvent",
19416          "version": "v1alpha1"
19417        },
19418        {
19419          "group": "rbac.authorization.k8s.io",
19420          "kind": "WatchEvent",
19421          "version": "v1beta1"
19422        },
19423        {
19424          "group": "scheduling.k8s.io",
19425          "kind": "WatchEvent",
19426          "version": "v1"
19427        },
19428        {
19429          "group": "scheduling.k8s.io",
19430          "kind": "WatchEvent",
19431          "version": "v1alpha1"
19432        },
19433        {
19434          "group": "scheduling.k8s.io",
19435          "kind": "WatchEvent",
19436          "version": "v1beta1"
19437        },
19438        {
19439          "group": "storage.k8s.io",
19440          "kind": "WatchEvent",
19441          "version": "v1"
19442        },
19443        {
19444          "group": "storage.k8s.io",
19445          "kind": "WatchEvent",
19446          "version": "v1alpha1"
19447        },
19448        {
19449          "group": "storage.k8s.io",
19450          "kind": "WatchEvent",
19451          "version": "v1beta1"
19452        }
19453      ]
19454    },
19455    "io.k8s.apimachinery.pkg.runtime.RawExtension": {
19456      "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.)",
19457      "type": "object"
19458    },
19459    "io.k8s.apimachinery.pkg.util.intstr.IntOrString": {
19460      "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.",
19461      "format": "int-or-string",
19462      "type": "string"
19463    },
19464    "io.k8s.apimachinery.pkg.version.Info": {
19465      "description": "Info contains versioning information. how we'll want to distribute that information.",
19466      "properties": {
19467        "buildDate": {
19468          "type": "string"
19469        },
19470        "compiler": {
19471          "type": "string"
19472        },
19473        "gitCommit": {
19474          "type": "string"
19475        },
19476        "gitTreeState": {
19477          "type": "string"
19478        },
19479        "gitVersion": {
19480          "type": "string"
19481        },
19482        "goVersion": {
19483          "type": "string"
19484        },
19485        "major": {
19486          "type": "string"
19487        },
19488        "minor": {
19489          "type": "string"
19490        },
19491        "platform": {
19492          "type": "string"
19493        }
19494      },
19495      "required": [
19496        "major",
19497        "minor",
19498        "gitVersion",
19499        "gitCommit",
19500        "gitTreeState",
19501        "buildDate",
19502        "goVersion",
19503        "compiler",
19504        "platform"
19505      ],
19506      "type": "object"
19507    },
19508    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService": {
19509      "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
19510      "properties": {
19511        "apiVersion": {
19512          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19513          "type": "string"
19514        },
19515        "kind": {
19516          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19517          "type": "string"
19518        },
19519        "metadata": {
19520          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
19521        },
19522        "spec": {
19523          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec",
19524          "description": "Spec contains information for locating and communicating with a server"
19525        },
19526        "status": {
19527          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus",
19528          "description": "Status contains derived information about an API server"
19529        }
19530      },
19531      "type": "object",
19532      "x-kubernetes-group-version-kind": [
19533        {
19534          "group": "apiregistration.k8s.io",
19535          "kind": "APIService",
19536          "version": "v1"
19537        }
19538      ]
19539    },
19540    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition": {
19541      "description": "APIServiceCondition describes the state of an APIService at a particular point",
19542      "properties": {
19543        "lastTransitionTime": {
19544          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
19545          "description": "Last time the condition transitioned from one status to another."
19546        },
19547        "message": {
19548          "description": "Human-readable message indicating details about last transition.",
19549          "type": "string"
19550        },
19551        "reason": {
19552          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
19553          "type": "string"
19554        },
19555        "status": {
19556          "description": "Status is the status of the condition. Can be True, False, Unknown.",
19557          "type": "string"
19558        },
19559        "type": {
19560          "description": "Type is the type of the condition.",
19561          "type": "string"
19562        }
19563      },
19564      "required": [
19565        "type",
19566        "status"
19567      ],
19568      "type": "object"
19569    },
19570    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList": {
19571      "description": "APIServiceList is a list of APIService objects.",
19572      "properties": {
19573        "apiVersion": {
19574          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19575          "type": "string"
19576        },
19577        "items": {
19578          "items": {
19579            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
19580          },
19581          "type": "array"
19582        },
19583        "kind": {
19584          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19585          "type": "string"
19586        },
19587        "metadata": {
19588          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
19589        }
19590      },
19591      "required": [
19592        "items"
19593      ],
19594      "type": "object",
19595      "x-kubernetes-group-version-kind": [
19596        {
19597          "group": "apiregistration.k8s.io",
19598          "kind": "APIServiceList",
19599          "version": "v1"
19600        }
19601      ]
19602    },
19603    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
19604      "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
19605      "properties": {
19606        "caBundle": {
19607          "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.",
19608          "format": "byte",
19609          "type": "string",
19610          "x-kubernetes-list-type": "atomic"
19611        },
19612        "group": {
19613          "description": "Group is the API group name this server hosts",
19614          "type": "string"
19615        },
19616        "groupPriorityMinimum": {
19617          "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",
19618          "format": "int32",
19619          "type": "integer"
19620        },
19621        "insecureSkipTLSVerify": {
19622          "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged.  You should use the CABundle instead.",
19623          "type": "boolean"
19624        },
19625        "service": {
19626          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference",
19627          "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."
19628        },
19629        "version": {
19630          "description": "Version is the API version this server hosts.  For example, \"v1\"",
19631          "type": "string"
19632        },
19633        "versionPriority": {
19634          "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.",
19635          "format": "int32",
19636          "type": "integer"
19637        }
19638      },
19639      "required": [
19640        "groupPriorityMinimum",
19641        "versionPriority"
19642      ],
19643      "type": "object"
19644    },
19645    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus": {
19646      "description": "APIServiceStatus contains derived information about an API server",
19647      "properties": {
19648        "conditions": {
19649          "description": "Current service state of apiService.",
19650          "items": {
19651            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition"
19652          },
19653          "type": "array",
19654          "x-kubernetes-list-map-keys": [
19655            "type"
19656          ],
19657          "x-kubernetes-list-type": "map",
19658          "x-kubernetes-patch-merge-key": "type",
19659          "x-kubernetes-patch-strategy": "merge"
19660        }
19661      },
19662      "type": "object"
19663    },
19664    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference": {
19665      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
19666      "properties": {
19667        "name": {
19668          "description": "Name is the name of the service",
19669          "type": "string"
19670        },
19671        "namespace": {
19672          "description": "Namespace is the namespace of the service",
19673          "type": "string"
19674        },
19675        "port": {
19676          "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).",
19677          "format": "int32",
19678          "type": "integer"
19679        }
19680      },
19681      "type": "object"
19682    },
19683    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService": {
19684      "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
19685      "properties": {
19686        "apiVersion": {
19687          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19688          "type": "string"
19689        },
19690        "kind": {
19691          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19692          "type": "string"
19693        },
19694        "metadata": {
19695          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
19696        },
19697        "spec": {
19698          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec",
19699          "description": "Spec contains information for locating and communicating with a server"
19700        },
19701        "status": {
19702          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus",
19703          "description": "Status contains derived information about an API server"
19704        }
19705      },
19706      "type": "object",
19707      "x-kubernetes-group-version-kind": [
19708        {
19709          "group": "apiregistration.k8s.io",
19710          "kind": "APIService",
19711          "version": "v1beta1"
19712        }
19713      ]
19714    },
19715    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition": {
19716      "description": "APIServiceCondition describes the state of an APIService at a particular point",
19717      "properties": {
19718        "lastTransitionTime": {
19719          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
19720          "description": "Last time the condition transitioned from one status to another."
19721        },
19722        "message": {
19723          "description": "Human-readable message indicating details about last transition.",
19724          "type": "string"
19725        },
19726        "reason": {
19727          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
19728          "type": "string"
19729        },
19730        "status": {
19731          "description": "Status is the status of the condition. Can be True, False, Unknown.",
19732          "type": "string"
19733        },
19734        "type": {
19735          "description": "Type is the type of the condition.",
19736          "type": "string"
19737        }
19738      },
19739      "required": [
19740        "type",
19741        "status"
19742      ],
19743      "type": "object"
19744    },
19745    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList": {
19746      "description": "APIServiceList is a list of APIService objects.",
19747      "properties": {
19748        "apiVersion": {
19749          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19750          "type": "string"
19751        },
19752        "items": {
19753          "items": {
19754            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
19755          },
19756          "type": "array"
19757        },
19758        "kind": {
19759          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19760          "type": "string"
19761        },
19762        "metadata": {
19763          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
19764        }
19765      },
19766      "required": [
19767        "items"
19768      ],
19769      "type": "object",
19770      "x-kubernetes-group-version-kind": [
19771        {
19772          "group": "apiregistration.k8s.io",
19773          "kind": "APIServiceList",
19774          "version": "v1beta1"
19775        }
19776      ]
19777    },
19778    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec": {
19779      "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
19780      "properties": {
19781        "caBundle": {
19782          "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.",
19783          "format": "byte",
19784          "type": "string",
19785          "x-kubernetes-list-type": "atomic"
19786        },
19787        "group": {
19788          "description": "Group is the API group name this server hosts",
19789          "type": "string"
19790        },
19791        "groupPriorityMinimum": {
19792          "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",
19793          "format": "int32",
19794          "type": "integer"
19795        },
19796        "insecureSkipTLSVerify": {
19797          "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged.  You should use the CABundle instead.",
19798          "type": "boolean"
19799        },
19800        "service": {
19801          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference",
19802          "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."
19803        },
19804        "version": {
19805          "description": "Version is the API version this server hosts.  For example, \"v1\"",
19806          "type": "string"
19807        },
19808        "versionPriority": {
19809          "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.",
19810          "format": "int32",
19811          "type": "integer"
19812        }
19813      },
19814      "required": [
19815        "groupPriorityMinimum",
19816        "versionPriority"
19817      ],
19818      "type": "object"
19819    },
19820    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus": {
19821      "description": "APIServiceStatus contains derived information about an API server",
19822      "properties": {
19823        "conditions": {
19824          "description": "Current service state of apiService.",
19825          "items": {
19826            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition"
19827          },
19828          "type": "array",
19829          "x-kubernetes-list-map-keys": [
19830            "type"
19831          ],
19832          "x-kubernetes-list-type": "map",
19833          "x-kubernetes-patch-merge-key": "type",
19834          "x-kubernetes-patch-strategy": "merge"
19835        }
19836      },
19837      "type": "object"
19838    },
19839    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference": {
19840      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
19841      "properties": {
19842        "name": {
19843          "description": "Name is the name of the service",
19844          "type": "string"
19845        },
19846        "namespace": {
19847          "description": "Namespace is the namespace of the service",
19848          "type": "string"
19849        },
19850        "port": {
19851          "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).",
19852          "format": "int32",
19853          "type": "integer"
19854        }
19855      },
19856      "type": "object"
19857    }
19858  },
19859  "info": {
19860    "title": "Kubernetes",
19861    "version": "unversioned"
19862  },
19863  "paths": {
19864    "/.well-known/openid-configuration/": {
19865      "get": {
19866        "description": "get service account issuer OpenID configuration, also known as the 'OIDC discovery doc'",
19867        "operationId": "getServiceAccountIssuerOpenIDConfiguration",
19868        "produces": [
19869          "application/json"
19870        ],
19871        "responses": {
19872          "200": {
19873            "description": "OK",
19874            "schema": {
19875              "type": "string"
19876            }
19877          },
19878          "401": {
19879            "description": "Unauthorized"
19880          }
19881        },
19882        "schemes": [
19883          "https"
19884        ],
19885        "tags": [
19886          "WellKnown"
19887        ]
19888      }
19889    },
19890    "/api/": {
19891      "get": {
19892        "consumes": [
19893          "application/json",
19894          "application/yaml",
19895          "application/vnd.kubernetes.protobuf"
19896        ],
19897        "description": "get available API versions",
19898        "operationId": "getCoreAPIVersions",
19899        "produces": [
19900          "application/json",
19901          "application/yaml",
19902          "application/vnd.kubernetes.protobuf"
19903        ],
19904        "responses": {
19905          "200": {
19906            "description": "OK",
19907            "schema": {
19908              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions"
19909            }
19910          },
19911          "401": {
19912            "description": "Unauthorized"
19913          }
19914        },
19915        "schemes": [
19916          "https"
19917        ],
19918        "tags": [
19919          "core"
19920        ]
19921      }
19922    },
19923    "/api/v1/": {
19924      "get": {
19925        "consumes": [
19926          "application/json",
19927          "application/yaml",
19928          "application/vnd.kubernetes.protobuf"
19929        ],
19930        "description": "get available resources",
19931        "operationId": "getCoreV1APIResources",
19932        "produces": [
19933          "application/json",
19934          "application/yaml",
19935          "application/vnd.kubernetes.protobuf"
19936        ],
19937        "responses": {
19938          "200": {
19939            "description": "OK",
19940            "schema": {
19941              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
19942            }
19943          },
19944          "401": {
19945            "description": "Unauthorized"
19946          }
19947        },
19948        "schemes": [
19949          "https"
19950        ],
19951        "tags": [
19952          "core_v1"
19953        ]
19954      }
19955    },
19956    "/api/v1/componentstatuses": {
19957      "get": {
19958        "consumes": [
19959          "*/*"
19960        ],
19961        "description": "list objects of kind ComponentStatus",
19962        "operationId": "listCoreV1ComponentStatus",
19963        "produces": [
19964          "application/json",
19965          "application/yaml",
19966          "application/vnd.kubernetes.protobuf",
19967          "application/json;stream=watch",
19968          "application/vnd.kubernetes.protobuf;stream=watch"
19969        ],
19970        "responses": {
19971          "200": {
19972            "description": "OK",
19973            "schema": {
19974              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatusList"
19975            }
19976          },
19977          "401": {
19978            "description": "Unauthorized"
19979          }
19980        },
19981        "schemes": [
19982          "https"
19983        ],
19984        "tags": [
19985          "core_v1"
19986        ],
19987        "x-kubernetes-action": "list",
19988        "x-kubernetes-group-version-kind": {
19989          "group": "",
19990          "kind": "ComponentStatus",
19991          "version": "v1"
19992        }
19993      },
19994      "parameters": [
19995        {
19996          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
19997          "in": "query",
19998          "name": "allowWatchBookmarks",
19999          "type": "boolean",
20000          "uniqueItems": true
20001        },
20002        {
20003          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20004          "in": "query",
20005          "name": "continue",
20006          "type": "string",
20007          "uniqueItems": true
20008        },
20009        {
20010          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20011          "in": "query",
20012          "name": "fieldSelector",
20013          "type": "string",
20014          "uniqueItems": true
20015        },
20016        {
20017          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20018          "in": "query",
20019          "name": "labelSelector",
20020          "type": "string",
20021          "uniqueItems": true
20022        },
20023        {
20024          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20025          "in": "query",
20026          "name": "limit",
20027          "type": "integer",
20028          "uniqueItems": true
20029        },
20030        {
20031          "description": "If 'true', then the output is pretty printed.",
20032          "in": "query",
20033          "name": "pretty",
20034          "type": "string",
20035          "uniqueItems": true
20036        },
20037        {
20038          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20039          "in": "query",
20040          "name": "resourceVersion",
20041          "type": "string",
20042          "uniqueItems": true
20043        },
20044        {
20045          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20046          "in": "query",
20047          "name": "resourceVersionMatch",
20048          "type": "string",
20049          "uniqueItems": true
20050        },
20051        {
20052          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20053          "in": "query",
20054          "name": "timeoutSeconds",
20055          "type": "integer",
20056          "uniqueItems": true
20057        },
20058        {
20059          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20060          "in": "query",
20061          "name": "watch",
20062          "type": "boolean",
20063          "uniqueItems": true
20064        }
20065      ]
20066    },
20067    "/api/v1/componentstatuses/{name}": {
20068      "get": {
20069        "consumes": [
20070          "*/*"
20071        ],
20072        "description": "read the specified ComponentStatus",
20073        "operationId": "readCoreV1ComponentStatus",
20074        "produces": [
20075          "application/json",
20076          "application/yaml",
20077          "application/vnd.kubernetes.protobuf"
20078        ],
20079        "responses": {
20080          "200": {
20081            "description": "OK",
20082            "schema": {
20083              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
20084            }
20085          },
20086          "401": {
20087            "description": "Unauthorized"
20088          }
20089        },
20090        "schemes": [
20091          "https"
20092        ],
20093        "tags": [
20094          "core_v1"
20095        ],
20096        "x-kubernetes-action": "get",
20097        "x-kubernetes-group-version-kind": {
20098          "group": "",
20099          "kind": "ComponentStatus",
20100          "version": "v1"
20101        }
20102      },
20103      "parameters": [
20104        {
20105          "description": "name of the ComponentStatus",
20106          "in": "path",
20107          "name": "name",
20108          "required": true,
20109          "type": "string",
20110          "uniqueItems": true
20111        },
20112        {
20113          "description": "If 'true', then the output is pretty printed.",
20114          "in": "query",
20115          "name": "pretty",
20116          "type": "string",
20117          "uniqueItems": true
20118        }
20119      ]
20120    },
20121    "/api/v1/configmaps": {
20122      "get": {
20123        "consumes": [
20124          "*/*"
20125        ],
20126        "description": "list or watch objects of kind ConfigMap",
20127        "operationId": "listCoreV1ConfigMapForAllNamespaces",
20128        "produces": [
20129          "application/json",
20130          "application/yaml",
20131          "application/vnd.kubernetes.protobuf",
20132          "application/json;stream=watch",
20133          "application/vnd.kubernetes.protobuf;stream=watch"
20134        ],
20135        "responses": {
20136          "200": {
20137            "description": "OK",
20138            "schema": {
20139              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
20140            }
20141          },
20142          "401": {
20143            "description": "Unauthorized"
20144          }
20145        },
20146        "schemes": [
20147          "https"
20148        ],
20149        "tags": [
20150          "core_v1"
20151        ],
20152        "x-kubernetes-action": "list",
20153        "x-kubernetes-group-version-kind": {
20154          "group": "",
20155          "kind": "ConfigMap",
20156          "version": "v1"
20157        }
20158      },
20159      "parameters": [
20160        {
20161          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20162          "in": "query",
20163          "name": "allowWatchBookmarks",
20164          "type": "boolean",
20165          "uniqueItems": true
20166        },
20167        {
20168          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20169          "in": "query",
20170          "name": "continue",
20171          "type": "string",
20172          "uniqueItems": true
20173        },
20174        {
20175          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20176          "in": "query",
20177          "name": "fieldSelector",
20178          "type": "string",
20179          "uniqueItems": true
20180        },
20181        {
20182          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20183          "in": "query",
20184          "name": "labelSelector",
20185          "type": "string",
20186          "uniqueItems": true
20187        },
20188        {
20189          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20190          "in": "query",
20191          "name": "limit",
20192          "type": "integer",
20193          "uniqueItems": true
20194        },
20195        {
20196          "description": "If 'true', then the output is pretty printed.",
20197          "in": "query",
20198          "name": "pretty",
20199          "type": "string",
20200          "uniqueItems": true
20201        },
20202        {
20203          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20204          "in": "query",
20205          "name": "resourceVersion",
20206          "type": "string",
20207          "uniqueItems": true
20208        },
20209        {
20210          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20211          "in": "query",
20212          "name": "resourceVersionMatch",
20213          "type": "string",
20214          "uniqueItems": true
20215        },
20216        {
20217          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20218          "in": "query",
20219          "name": "timeoutSeconds",
20220          "type": "integer",
20221          "uniqueItems": true
20222        },
20223        {
20224          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20225          "in": "query",
20226          "name": "watch",
20227          "type": "boolean",
20228          "uniqueItems": true
20229        }
20230      ]
20231    },
20232    "/api/v1/endpoints": {
20233      "get": {
20234        "consumes": [
20235          "*/*"
20236        ],
20237        "description": "list or watch objects of kind Endpoints",
20238        "operationId": "listCoreV1EndpointsForAllNamespaces",
20239        "produces": [
20240          "application/json",
20241          "application/yaml",
20242          "application/vnd.kubernetes.protobuf",
20243          "application/json;stream=watch",
20244          "application/vnd.kubernetes.protobuf;stream=watch"
20245        ],
20246        "responses": {
20247          "200": {
20248            "description": "OK",
20249            "schema": {
20250              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
20251            }
20252          },
20253          "401": {
20254            "description": "Unauthorized"
20255          }
20256        },
20257        "schemes": [
20258          "https"
20259        ],
20260        "tags": [
20261          "core_v1"
20262        ],
20263        "x-kubernetes-action": "list",
20264        "x-kubernetes-group-version-kind": {
20265          "group": "",
20266          "kind": "Endpoints",
20267          "version": "v1"
20268        }
20269      },
20270      "parameters": [
20271        {
20272          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20273          "in": "query",
20274          "name": "allowWatchBookmarks",
20275          "type": "boolean",
20276          "uniqueItems": true
20277        },
20278        {
20279          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20280          "in": "query",
20281          "name": "continue",
20282          "type": "string",
20283          "uniqueItems": true
20284        },
20285        {
20286          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20287          "in": "query",
20288          "name": "fieldSelector",
20289          "type": "string",
20290          "uniqueItems": true
20291        },
20292        {
20293          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20294          "in": "query",
20295          "name": "labelSelector",
20296          "type": "string",
20297          "uniqueItems": true
20298        },
20299        {
20300          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20301          "in": "query",
20302          "name": "limit",
20303          "type": "integer",
20304          "uniqueItems": true
20305        },
20306        {
20307          "description": "If 'true', then the output is pretty printed.",
20308          "in": "query",
20309          "name": "pretty",
20310          "type": "string",
20311          "uniqueItems": true
20312        },
20313        {
20314          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20315          "in": "query",
20316          "name": "resourceVersion",
20317          "type": "string",
20318          "uniqueItems": true
20319        },
20320        {
20321          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20322          "in": "query",
20323          "name": "resourceVersionMatch",
20324          "type": "string",
20325          "uniqueItems": true
20326        },
20327        {
20328          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20329          "in": "query",
20330          "name": "timeoutSeconds",
20331          "type": "integer",
20332          "uniqueItems": true
20333        },
20334        {
20335          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20336          "in": "query",
20337          "name": "watch",
20338          "type": "boolean",
20339          "uniqueItems": true
20340        }
20341      ]
20342    },
20343    "/api/v1/events": {
20344      "get": {
20345        "consumes": [
20346          "*/*"
20347        ],
20348        "description": "list or watch objects of kind Event",
20349        "operationId": "listCoreV1EventForAllNamespaces",
20350        "produces": [
20351          "application/json",
20352          "application/yaml",
20353          "application/vnd.kubernetes.protobuf",
20354          "application/json;stream=watch",
20355          "application/vnd.kubernetes.protobuf;stream=watch"
20356        ],
20357        "responses": {
20358          "200": {
20359            "description": "OK",
20360            "schema": {
20361              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
20362            }
20363          },
20364          "401": {
20365            "description": "Unauthorized"
20366          }
20367        },
20368        "schemes": [
20369          "https"
20370        ],
20371        "tags": [
20372          "core_v1"
20373        ],
20374        "x-kubernetes-action": "list",
20375        "x-kubernetes-group-version-kind": {
20376          "group": "",
20377          "kind": "Event",
20378          "version": "v1"
20379        }
20380      },
20381      "parameters": [
20382        {
20383          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20384          "in": "query",
20385          "name": "allowWatchBookmarks",
20386          "type": "boolean",
20387          "uniqueItems": true
20388        },
20389        {
20390          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20391          "in": "query",
20392          "name": "continue",
20393          "type": "string",
20394          "uniqueItems": true
20395        },
20396        {
20397          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20398          "in": "query",
20399          "name": "fieldSelector",
20400          "type": "string",
20401          "uniqueItems": true
20402        },
20403        {
20404          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20405          "in": "query",
20406          "name": "labelSelector",
20407          "type": "string",
20408          "uniqueItems": true
20409        },
20410        {
20411          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20412          "in": "query",
20413          "name": "limit",
20414          "type": "integer",
20415          "uniqueItems": true
20416        },
20417        {
20418          "description": "If 'true', then the output is pretty printed.",
20419          "in": "query",
20420          "name": "pretty",
20421          "type": "string",
20422          "uniqueItems": true
20423        },
20424        {
20425          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20426          "in": "query",
20427          "name": "resourceVersion",
20428          "type": "string",
20429          "uniqueItems": true
20430        },
20431        {
20432          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20433          "in": "query",
20434          "name": "resourceVersionMatch",
20435          "type": "string",
20436          "uniqueItems": true
20437        },
20438        {
20439          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20440          "in": "query",
20441          "name": "timeoutSeconds",
20442          "type": "integer",
20443          "uniqueItems": true
20444        },
20445        {
20446          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20447          "in": "query",
20448          "name": "watch",
20449          "type": "boolean",
20450          "uniqueItems": true
20451        }
20452      ]
20453    },
20454    "/api/v1/limitranges": {
20455      "get": {
20456        "consumes": [
20457          "*/*"
20458        ],
20459        "description": "list or watch objects of kind LimitRange",
20460        "operationId": "listCoreV1LimitRangeForAllNamespaces",
20461        "produces": [
20462          "application/json",
20463          "application/yaml",
20464          "application/vnd.kubernetes.protobuf",
20465          "application/json;stream=watch",
20466          "application/vnd.kubernetes.protobuf;stream=watch"
20467        ],
20468        "responses": {
20469          "200": {
20470            "description": "OK",
20471            "schema": {
20472              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
20473            }
20474          },
20475          "401": {
20476            "description": "Unauthorized"
20477          }
20478        },
20479        "schemes": [
20480          "https"
20481        ],
20482        "tags": [
20483          "core_v1"
20484        ],
20485        "x-kubernetes-action": "list",
20486        "x-kubernetes-group-version-kind": {
20487          "group": "",
20488          "kind": "LimitRange",
20489          "version": "v1"
20490        }
20491      },
20492      "parameters": [
20493        {
20494          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20495          "in": "query",
20496          "name": "allowWatchBookmarks",
20497          "type": "boolean",
20498          "uniqueItems": true
20499        },
20500        {
20501          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20502          "in": "query",
20503          "name": "continue",
20504          "type": "string",
20505          "uniqueItems": true
20506        },
20507        {
20508          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20509          "in": "query",
20510          "name": "fieldSelector",
20511          "type": "string",
20512          "uniqueItems": true
20513        },
20514        {
20515          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20516          "in": "query",
20517          "name": "labelSelector",
20518          "type": "string",
20519          "uniqueItems": true
20520        },
20521        {
20522          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20523          "in": "query",
20524          "name": "limit",
20525          "type": "integer",
20526          "uniqueItems": true
20527        },
20528        {
20529          "description": "If 'true', then the output is pretty printed.",
20530          "in": "query",
20531          "name": "pretty",
20532          "type": "string",
20533          "uniqueItems": true
20534        },
20535        {
20536          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20537          "in": "query",
20538          "name": "resourceVersion",
20539          "type": "string",
20540          "uniqueItems": true
20541        },
20542        {
20543          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20544          "in": "query",
20545          "name": "resourceVersionMatch",
20546          "type": "string",
20547          "uniqueItems": true
20548        },
20549        {
20550          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20551          "in": "query",
20552          "name": "timeoutSeconds",
20553          "type": "integer",
20554          "uniqueItems": true
20555        },
20556        {
20557          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20558          "in": "query",
20559          "name": "watch",
20560          "type": "boolean",
20561          "uniqueItems": true
20562        }
20563      ]
20564    },
20565    "/api/v1/namespaces": {
20566      "get": {
20567        "consumes": [
20568          "*/*"
20569        ],
20570        "description": "list or watch objects of kind Namespace",
20571        "operationId": "listCoreV1Namespace",
20572        "parameters": [
20573          {
20574            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20575            "in": "query",
20576            "name": "allowWatchBookmarks",
20577            "type": "boolean",
20578            "uniqueItems": true
20579          },
20580          {
20581            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20582            "in": "query",
20583            "name": "continue",
20584            "type": "string",
20585            "uniqueItems": true
20586          },
20587          {
20588            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20589            "in": "query",
20590            "name": "fieldSelector",
20591            "type": "string",
20592            "uniqueItems": true
20593          },
20594          {
20595            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20596            "in": "query",
20597            "name": "labelSelector",
20598            "type": "string",
20599            "uniqueItems": true
20600          },
20601          {
20602            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20603            "in": "query",
20604            "name": "limit",
20605            "type": "integer",
20606            "uniqueItems": true
20607          },
20608          {
20609            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20610            "in": "query",
20611            "name": "resourceVersion",
20612            "type": "string",
20613            "uniqueItems": true
20614          },
20615          {
20616            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20617            "in": "query",
20618            "name": "resourceVersionMatch",
20619            "type": "string",
20620            "uniqueItems": true
20621          },
20622          {
20623            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20624            "in": "query",
20625            "name": "timeoutSeconds",
20626            "type": "integer",
20627            "uniqueItems": true
20628          },
20629          {
20630            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20631            "in": "query",
20632            "name": "watch",
20633            "type": "boolean",
20634            "uniqueItems": true
20635          }
20636        ],
20637        "produces": [
20638          "application/json",
20639          "application/yaml",
20640          "application/vnd.kubernetes.protobuf",
20641          "application/json;stream=watch",
20642          "application/vnd.kubernetes.protobuf;stream=watch"
20643        ],
20644        "responses": {
20645          "200": {
20646            "description": "OK",
20647            "schema": {
20648              "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceList"
20649            }
20650          },
20651          "401": {
20652            "description": "Unauthorized"
20653          }
20654        },
20655        "schemes": [
20656          "https"
20657        ],
20658        "tags": [
20659          "core_v1"
20660        ],
20661        "x-kubernetes-action": "list",
20662        "x-kubernetes-group-version-kind": {
20663          "group": "",
20664          "kind": "Namespace",
20665          "version": "v1"
20666        }
20667      },
20668      "parameters": [
20669        {
20670          "description": "If 'true', then the output is pretty printed.",
20671          "in": "query",
20672          "name": "pretty",
20673          "type": "string",
20674          "uniqueItems": true
20675        }
20676      ],
20677      "post": {
20678        "consumes": [
20679          "*/*"
20680        ],
20681        "description": "create a Namespace",
20682        "operationId": "createCoreV1Namespace",
20683        "parameters": [
20684          {
20685            "in": "body",
20686            "name": "body",
20687            "required": true,
20688            "schema": {
20689              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20690            }
20691          },
20692          {
20693            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20694            "in": "query",
20695            "name": "dryRun",
20696            "type": "string",
20697            "uniqueItems": true
20698          },
20699          {
20700            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20701            "in": "query",
20702            "name": "fieldManager",
20703            "type": "string",
20704            "uniqueItems": true
20705          }
20706        ],
20707        "produces": [
20708          "application/json",
20709          "application/yaml",
20710          "application/vnd.kubernetes.protobuf"
20711        ],
20712        "responses": {
20713          "200": {
20714            "description": "OK",
20715            "schema": {
20716              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20717            }
20718          },
20719          "201": {
20720            "description": "Created",
20721            "schema": {
20722              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20723            }
20724          },
20725          "202": {
20726            "description": "Accepted",
20727            "schema": {
20728              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20729            }
20730          },
20731          "401": {
20732            "description": "Unauthorized"
20733          }
20734        },
20735        "schemes": [
20736          "https"
20737        ],
20738        "tags": [
20739          "core_v1"
20740        ],
20741        "x-kubernetes-action": "post",
20742        "x-kubernetes-group-version-kind": {
20743          "group": "",
20744          "kind": "Namespace",
20745          "version": "v1"
20746        }
20747      }
20748    },
20749    "/api/v1/namespaces/{namespace}/bindings": {
20750      "parameters": [
20751        {
20752          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20753          "in": "query",
20754          "name": "dryRun",
20755          "type": "string",
20756          "uniqueItems": true
20757        },
20758        {
20759          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20760          "in": "query",
20761          "name": "fieldManager",
20762          "type": "string",
20763          "uniqueItems": true
20764        },
20765        {
20766          "description": "object name and auth scope, such as for teams and projects",
20767          "in": "path",
20768          "name": "namespace",
20769          "required": true,
20770          "type": "string",
20771          "uniqueItems": true
20772        },
20773        {
20774          "description": "If 'true', then the output is pretty printed.",
20775          "in": "query",
20776          "name": "pretty",
20777          "type": "string",
20778          "uniqueItems": true
20779        }
20780      ],
20781      "post": {
20782        "consumes": [
20783          "*/*"
20784        ],
20785        "description": "create a Binding",
20786        "operationId": "createCoreV1NamespacedBinding",
20787        "parameters": [
20788          {
20789            "in": "body",
20790            "name": "body",
20791            "required": true,
20792            "schema": {
20793              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20794            }
20795          }
20796        ],
20797        "produces": [
20798          "application/json",
20799          "application/yaml",
20800          "application/vnd.kubernetes.protobuf"
20801        ],
20802        "responses": {
20803          "200": {
20804            "description": "OK",
20805            "schema": {
20806              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20807            }
20808          },
20809          "201": {
20810            "description": "Created",
20811            "schema": {
20812              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20813            }
20814          },
20815          "202": {
20816            "description": "Accepted",
20817            "schema": {
20818              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20819            }
20820          },
20821          "401": {
20822            "description": "Unauthorized"
20823          }
20824        },
20825        "schemes": [
20826          "https"
20827        ],
20828        "tags": [
20829          "core_v1"
20830        ],
20831        "x-kubernetes-action": "post",
20832        "x-kubernetes-group-version-kind": {
20833          "group": "",
20834          "kind": "Binding",
20835          "version": "v1"
20836        }
20837      }
20838    },
20839    "/api/v1/namespaces/{namespace}/configmaps": {
20840      "delete": {
20841        "consumes": [
20842          "*/*"
20843        ],
20844        "description": "delete collection of ConfigMap",
20845        "operationId": "deleteCoreV1CollectionNamespacedConfigMap",
20846        "parameters": [
20847          {
20848            "in": "body",
20849            "name": "body",
20850            "schema": {
20851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20852            }
20853          },
20854          {
20855            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20856            "in": "query",
20857            "name": "continue",
20858            "type": "string",
20859            "uniqueItems": true
20860          },
20861          {
20862            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20863            "in": "query",
20864            "name": "dryRun",
20865            "type": "string",
20866            "uniqueItems": true
20867          },
20868          {
20869            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20870            "in": "query",
20871            "name": "fieldSelector",
20872            "type": "string",
20873            "uniqueItems": true
20874          },
20875          {
20876            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
20877            "in": "query",
20878            "name": "gracePeriodSeconds",
20879            "type": "integer",
20880            "uniqueItems": true
20881          },
20882          {
20883            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20884            "in": "query",
20885            "name": "labelSelector",
20886            "type": "string",
20887            "uniqueItems": true
20888          },
20889          {
20890            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20891            "in": "query",
20892            "name": "limit",
20893            "type": "integer",
20894            "uniqueItems": true
20895          },
20896          {
20897            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
20898            "in": "query",
20899            "name": "orphanDependents",
20900            "type": "boolean",
20901            "uniqueItems": true
20902          },
20903          {
20904            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
20905            "in": "query",
20906            "name": "propagationPolicy",
20907            "type": "string",
20908            "uniqueItems": true
20909          },
20910          {
20911            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20912            "in": "query",
20913            "name": "resourceVersion",
20914            "type": "string",
20915            "uniqueItems": true
20916          },
20917          {
20918            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20919            "in": "query",
20920            "name": "resourceVersionMatch",
20921            "type": "string",
20922            "uniqueItems": true
20923          },
20924          {
20925            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20926            "in": "query",
20927            "name": "timeoutSeconds",
20928            "type": "integer",
20929            "uniqueItems": true
20930          }
20931        ],
20932        "produces": [
20933          "application/json",
20934          "application/yaml",
20935          "application/vnd.kubernetes.protobuf"
20936        ],
20937        "responses": {
20938          "200": {
20939            "description": "OK",
20940            "schema": {
20941              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20942            }
20943          },
20944          "401": {
20945            "description": "Unauthorized"
20946          }
20947        },
20948        "schemes": [
20949          "https"
20950        ],
20951        "tags": [
20952          "core_v1"
20953        ],
20954        "x-kubernetes-action": "deletecollection",
20955        "x-kubernetes-group-version-kind": {
20956          "group": "",
20957          "kind": "ConfigMap",
20958          "version": "v1"
20959        }
20960      },
20961      "get": {
20962        "consumes": [
20963          "*/*"
20964        ],
20965        "description": "list or watch objects of kind ConfigMap",
20966        "operationId": "listCoreV1NamespacedConfigMap",
20967        "parameters": [
20968          {
20969            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20970            "in": "query",
20971            "name": "allowWatchBookmarks",
20972            "type": "boolean",
20973            "uniqueItems": true
20974          },
20975          {
20976            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20977            "in": "query",
20978            "name": "continue",
20979            "type": "string",
20980            "uniqueItems": true
20981          },
20982          {
20983            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20984            "in": "query",
20985            "name": "fieldSelector",
20986            "type": "string",
20987            "uniqueItems": true
20988          },
20989          {
20990            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20991            "in": "query",
20992            "name": "labelSelector",
20993            "type": "string",
20994            "uniqueItems": true
20995          },
20996          {
20997            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20998            "in": "query",
20999            "name": "limit",
21000            "type": "integer",
21001            "uniqueItems": true
21002          },
21003          {
21004            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21005            "in": "query",
21006            "name": "resourceVersion",
21007            "type": "string",
21008            "uniqueItems": true
21009          },
21010          {
21011            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21012            "in": "query",
21013            "name": "resourceVersionMatch",
21014            "type": "string",
21015            "uniqueItems": true
21016          },
21017          {
21018            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21019            "in": "query",
21020            "name": "timeoutSeconds",
21021            "type": "integer",
21022            "uniqueItems": true
21023          },
21024          {
21025            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
21026            "in": "query",
21027            "name": "watch",
21028            "type": "boolean",
21029            "uniqueItems": true
21030          }
21031        ],
21032        "produces": [
21033          "application/json",
21034          "application/yaml",
21035          "application/vnd.kubernetes.protobuf",
21036          "application/json;stream=watch",
21037          "application/vnd.kubernetes.protobuf;stream=watch"
21038        ],
21039        "responses": {
21040          "200": {
21041            "description": "OK",
21042            "schema": {
21043              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
21044            }
21045          },
21046          "401": {
21047            "description": "Unauthorized"
21048          }
21049        },
21050        "schemes": [
21051          "https"
21052        ],
21053        "tags": [
21054          "core_v1"
21055        ],
21056        "x-kubernetes-action": "list",
21057        "x-kubernetes-group-version-kind": {
21058          "group": "",
21059          "kind": "ConfigMap",
21060          "version": "v1"
21061        }
21062      },
21063      "parameters": [
21064        {
21065          "description": "object name and auth scope, such as for teams and projects",
21066          "in": "path",
21067          "name": "namespace",
21068          "required": true,
21069          "type": "string",
21070          "uniqueItems": true
21071        },
21072        {
21073          "description": "If 'true', then the output is pretty printed.",
21074          "in": "query",
21075          "name": "pretty",
21076          "type": "string",
21077          "uniqueItems": true
21078        }
21079      ],
21080      "post": {
21081        "consumes": [
21082          "*/*"
21083        ],
21084        "description": "create a ConfigMap",
21085        "operationId": "createCoreV1NamespacedConfigMap",
21086        "parameters": [
21087          {
21088            "in": "body",
21089            "name": "body",
21090            "required": true,
21091            "schema": {
21092              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21093            }
21094          },
21095          {
21096            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21097            "in": "query",
21098            "name": "dryRun",
21099            "type": "string",
21100            "uniqueItems": true
21101          },
21102          {
21103            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21104            "in": "query",
21105            "name": "fieldManager",
21106            "type": "string",
21107            "uniqueItems": true
21108          }
21109        ],
21110        "produces": [
21111          "application/json",
21112          "application/yaml",
21113          "application/vnd.kubernetes.protobuf"
21114        ],
21115        "responses": {
21116          "200": {
21117            "description": "OK",
21118            "schema": {
21119              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21120            }
21121          },
21122          "201": {
21123            "description": "Created",
21124            "schema": {
21125              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21126            }
21127          },
21128          "202": {
21129            "description": "Accepted",
21130            "schema": {
21131              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21132            }
21133          },
21134          "401": {
21135            "description": "Unauthorized"
21136          }
21137        },
21138        "schemes": [
21139          "https"
21140        ],
21141        "tags": [
21142          "core_v1"
21143        ],
21144        "x-kubernetes-action": "post",
21145        "x-kubernetes-group-version-kind": {
21146          "group": "",
21147          "kind": "ConfigMap",
21148          "version": "v1"
21149        }
21150      }
21151    },
21152    "/api/v1/namespaces/{namespace}/configmaps/{name}": {
21153      "delete": {
21154        "consumes": [
21155          "*/*"
21156        ],
21157        "description": "delete a ConfigMap",
21158        "operationId": "deleteCoreV1NamespacedConfigMap",
21159        "parameters": [
21160          {
21161            "in": "body",
21162            "name": "body",
21163            "schema": {
21164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21165            }
21166          },
21167          {
21168            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21169            "in": "query",
21170            "name": "dryRun",
21171            "type": "string",
21172            "uniqueItems": true
21173          },
21174          {
21175            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21176            "in": "query",
21177            "name": "gracePeriodSeconds",
21178            "type": "integer",
21179            "uniqueItems": true
21180          },
21181          {
21182            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21183            "in": "query",
21184            "name": "orphanDependents",
21185            "type": "boolean",
21186            "uniqueItems": true
21187          },
21188          {
21189            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21190            "in": "query",
21191            "name": "propagationPolicy",
21192            "type": "string",
21193            "uniqueItems": true
21194          }
21195        ],
21196        "produces": [
21197          "application/json",
21198          "application/yaml",
21199          "application/vnd.kubernetes.protobuf"
21200        ],
21201        "responses": {
21202          "200": {
21203            "description": "OK",
21204            "schema": {
21205              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21206            }
21207          },
21208          "202": {
21209            "description": "Accepted",
21210            "schema": {
21211              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21212            }
21213          },
21214          "401": {
21215            "description": "Unauthorized"
21216          }
21217        },
21218        "schemes": [
21219          "https"
21220        ],
21221        "tags": [
21222          "core_v1"
21223        ],
21224        "x-kubernetes-action": "delete",
21225        "x-kubernetes-group-version-kind": {
21226          "group": "",
21227          "kind": "ConfigMap",
21228          "version": "v1"
21229        }
21230      },
21231      "get": {
21232        "consumes": [
21233          "*/*"
21234        ],
21235        "description": "read the specified ConfigMap",
21236        "operationId": "readCoreV1NamespacedConfigMap",
21237        "produces": [
21238          "application/json",
21239          "application/yaml",
21240          "application/vnd.kubernetes.protobuf"
21241        ],
21242        "responses": {
21243          "200": {
21244            "description": "OK",
21245            "schema": {
21246              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21247            }
21248          },
21249          "401": {
21250            "description": "Unauthorized"
21251          }
21252        },
21253        "schemes": [
21254          "https"
21255        ],
21256        "tags": [
21257          "core_v1"
21258        ],
21259        "x-kubernetes-action": "get",
21260        "x-kubernetes-group-version-kind": {
21261          "group": "",
21262          "kind": "ConfigMap",
21263          "version": "v1"
21264        }
21265      },
21266      "parameters": [
21267        {
21268          "description": "name of the ConfigMap",
21269          "in": "path",
21270          "name": "name",
21271          "required": true,
21272          "type": "string",
21273          "uniqueItems": true
21274        },
21275        {
21276          "description": "object name and auth scope, such as for teams and projects",
21277          "in": "path",
21278          "name": "namespace",
21279          "required": true,
21280          "type": "string",
21281          "uniqueItems": true
21282        },
21283        {
21284          "description": "If 'true', then the output is pretty printed.",
21285          "in": "query",
21286          "name": "pretty",
21287          "type": "string",
21288          "uniqueItems": true
21289        }
21290      ],
21291      "patch": {
21292        "consumes": [
21293          "application/json-patch+json",
21294          "application/merge-patch+json",
21295          "application/strategic-merge-patch+json",
21296          "application/apply-patch+yaml"
21297        ],
21298        "description": "partially update the specified ConfigMap",
21299        "operationId": "patchCoreV1NamespacedConfigMap",
21300        "parameters": [
21301          {
21302            "in": "body",
21303            "name": "body",
21304            "required": true,
21305            "schema": {
21306              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21307            }
21308          },
21309          {
21310            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21311            "in": "query",
21312            "name": "dryRun",
21313            "type": "string",
21314            "uniqueItems": true
21315          },
21316          {
21317            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
21318            "in": "query",
21319            "name": "fieldManager",
21320            "type": "string",
21321            "uniqueItems": true
21322          },
21323          {
21324            "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.",
21325            "in": "query",
21326            "name": "force",
21327            "type": "boolean",
21328            "uniqueItems": true
21329          }
21330        ],
21331        "produces": [
21332          "application/json",
21333          "application/yaml",
21334          "application/vnd.kubernetes.protobuf"
21335        ],
21336        "responses": {
21337          "200": {
21338            "description": "OK",
21339            "schema": {
21340              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21341            }
21342          },
21343          "401": {
21344            "description": "Unauthorized"
21345          }
21346        },
21347        "schemes": [
21348          "https"
21349        ],
21350        "tags": [
21351          "core_v1"
21352        ],
21353        "x-kubernetes-action": "patch",
21354        "x-kubernetes-group-version-kind": {
21355          "group": "",
21356          "kind": "ConfigMap",
21357          "version": "v1"
21358        }
21359      },
21360      "put": {
21361        "consumes": [
21362          "*/*"
21363        ],
21364        "description": "replace the specified ConfigMap",
21365        "operationId": "replaceCoreV1NamespacedConfigMap",
21366        "parameters": [
21367          {
21368            "in": "body",
21369            "name": "body",
21370            "required": true,
21371            "schema": {
21372              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21373            }
21374          },
21375          {
21376            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21377            "in": "query",
21378            "name": "dryRun",
21379            "type": "string",
21380            "uniqueItems": true
21381          },
21382          {
21383            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21384            "in": "query",
21385            "name": "fieldManager",
21386            "type": "string",
21387            "uniqueItems": true
21388          }
21389        ],
21390        "produces": [
21391          "application/json",
21392          "application/yaml",
21393          "application/vnd.kubernetes.protobuf"
21394        ],
21395        "responses": {
21396          "200": {
21397            "description": "OK",
21398            "schema": {
21399              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21400            }
21401          },
21402          "201": {
21403            "description": "Created",
21404            "schema": {
21405              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21406            }
21407          },
21408          "401": {
21409            "description": "Unauthorized"
21410          }
21411        },
21412        "schemes": [
21413          "https"
21414        ],
21415        "tags": [
21416          "core_v1"
21417        ],
21418        "x-kubernetes-action": "put",
21419        "x-kubernetes-group-version-kind": {
21420          "group": "",
21421          "kind": "ConfigMap",
21422          "version": "v1"
21423        }
21424      }
21425    },
21426    "/api/v1/namespaces/{namespace}/endpoints": {
21427      "delete": {
21428        "consumes": [
21429          "*/*"
21430        ],
21431        "description": "delete collection of Endpoints",
21432        "operationId": "deleteCoreV1CollectionNamespacedEndpoints",
21433        "parameters": [
21434          {
21435            "in": "body",
21436            "name": "body",
21437            "schema": {
21438              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21439            }
21440          },
21441          {
21442            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21443            "in": "query",
21444            "name": "continue",
21445            "type": "string",
21446            "uniqueItems": true
21447          },
21448          {
21449            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21450            "in": "query",
21451            "name": "dryRun",
21452            "type": "string",
21453            "uniqueItems": true
21454          },
21455          {
21456            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21457            "in": "query",
21458            "name": "fieldSelector",
21459            "type": "string",
21460            "uniqueItems": true
21461          },
21462          {
21463            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21464            "in": "query",
21465            "name": "gracePeriodSeconds",
21466            "type": "integer",
21467            "uniqueItems": true
21468          },
21469          {
21470            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21471            "in": "query",
21472            "name": "labelSelector",
21473            "type": "string",
21474            "uniqueItems": true
21475          },
21476          {
21477            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21478            "in": "query",
21479            "name": "limit",
21480            "type": "integer",
21481            "uniqueItems": true
21482          },
21483          {
21484            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21485            "in": "query",
21486            "name": "orphanDependents",
21487            "type": "boolean",
21488            "uniqueItems": true
21489          },
21490          {
21491            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21492            "in": "query",
21493            "name": "propagationPolicy",
21494            "type": "string",
21495            "uniqueItems": true
21496          },
21497          {
21498            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21499            "in": "query",
21500            "name": "resourceVersion",
21501            "type": "string",
21502            "uniqueItems": true
21503          },
21504          {
21505            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21506            "in": "query",
21507            "name": "resourceVersionMatch",
21508            "type": "string",
21509            "uniqueItems": true
21510          },
21511          {
21512            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21513            "in": "query",
21514            "name": "timeoutSeconds",
21515            "type": "integer",
21516            "uniqueItems": true
21517          }
21518        ],
21519        "produces": [
21520          "application/json",
21521          "application/yaml",
21522          "application/vnd.kubernetes.protobuf"
21523        ],
21524        "responses": {
21525          "200": {
21526            "description": "OK",
21527            "schema": {
21528              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21529            }
21530          },
21531          "401": {
21532            "description": "Unauthorized"
21533          }
21534        },
21535        "schemes": [
21536          "https"
21537        ],
21538        "tags": [
21539          "core_v1"
21540        ],
21541        "x-kubernetes-action": "deletecollection",
21542        "x-kubernetes-group-version-kind": {
21543          "group": "",
21544          "kind": "Endpoints",
21545          "version": "v1"
21546        }
21547      },
21548      "get": {
21549        "consumes": [
21550          "*/*"
21551        ],
21552        "description": "list or watch objects of kind Endpoints",
21553        "operationId": "listCoreV1NamespacedEndpoints",
21554        "parameters": [
21555          {
21556            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
21557            "in": "query",
21558            "name": "allowWatchBookmarks",
21559            "type": "boolean",
21560            "uniqueItems": true
21561          },
21562          {
21563            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21564            "in": "query",
21565            "name": "continue",
21566            "type": "string",
21567            "uniqueItems": true
21568          },
21569          {
21570            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21571            "in": "query",
21572            "name": "fieldSelector",
21573            "type": "string",
21574            "uniqueItems": true
21575          },
21576          {
21577            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21578            "in": "query",
21579            "name": "labelSelector",
21580            "type": "string",
21581            "uniqueItems": true
21582          },
21583          {
21584            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21585            "in": "query",
21586            "name": "limit",
21587            "type": "integer",
21588            "uniqueItems": true
21589          },
21590          {
21591            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21592            "in": "query",
21593            "name": "resourceVersion",
21594            "type": "string",
21595            "uniqueItems": true
21596          },
21597          {
21598            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21599            "in": "query",
21600            "name": "resourceVersionMatch",
21601            "type": "string",
21602            "uniqueItems": true
21603          },
21604          {
21605            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21606            "in": "query",
21607            "name": "timeoutSeconds",
21608            "type": "integer",
21609            "uniqueItems": true
21610          },
21611          {
21612            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
21613            "in": "query",
21614            "name": "watch",
21615            "type": "boolean",
21616            "uniqueItems": true
21617          }
21618        ],
21619        "produces": [
21620          "application/json",
21621          "application/yaml",
21622          "application/vnd.kubernetes.protobuf",
21623          "application/json;stream=watch",
21624          "application/vnd.kubernetes.protobuf;stream=watch"
21625        ],
21626        "responses": {
21627          "200": {
21628            "description": "OK",
21629            "schema": {
21630              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
21631            }
21632          },
21633          "401": {
21634            "description": "Unauthorized"
21635          }
21636        },
21637        "schemes": [
21638          "https"
21639        ],
21640        "tags": [
21641          "core_v1"
21642        ],
21643        "x-kubernetes-action": "list",
21644        "x-kubernetes-group-version-kind": {
21645          "group": "",
21646          "kind": "Endpoints",
21647          "version": "v1"
21648        }
21649      },
21650      "parameters": [
21651        {
21652          "description": "object name and auth scope, such as for teams and projects",
21653          "in": "path",
21654          "name": "namespace",
21655          "required": true,
21656          "type": "string",
21657          "uniqueItems": true
21658        },
21659        {
21660          "description": "If 'true', then the output is pretty printed.",
21661          "in": "query",
21662          "name": "pretty",
21663          "type": "string",
21664          "uniqueItems": true
21665        }
21666      ],
21667      "post": {
21668        "consumes": [
21669          "*/*"
21670        ],
21671        "description": "create Endpoints",
21672        "operationId": "createCoreV1NamespacedEndpoints",
21673        "parameters": [
21674          {
21675            "in": "body",
21676            "name": "body",
21677            "required": true,
21678            "schema": {
21679              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21680            }
21681          },
21682          {
21683            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21684            "in": "query",
21685            "name": "dryRun",
21686            "type": "string",
21687            "uniqueItems": true
21688          },
21689          {
21690            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21691            "in": "query",
21692            "name": "fieldManager",
21693            "type": "string",
21694            "uniqueItems": true
21695          }
21696        ],
21697        "produces": [
21698          "application/json",
21699          "application/yaml",
21700          "application/vnd.kubernetes.protobuf"
21701        ],
21702        "responses": {
21703          "200": {
21704            "description": "OK",
21705            "schema": {
21706              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21707            }
21708          },
21709          "201": {
21710            "description": "Created",
21711            "schema": {
21712              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21713            }
21714          },
21715          "202": {
21716            "description": "Accepted",
21717            "schema": {
21718              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21719            }
21720          },
21721          "401": {
21722            "description": "Unauthorized"
21723          }
21724        },
21725        "schemes": [
21726          "https"
21727        ],
21728        "tags": [
21729          "core_v1"
21730        ],
21731        "x-kubernetes-action": "post",
21732        "x-kubernetes-group-version-kind": {
21733          "group": "",
21734          "kind": "Endpoints",
21735          "version": "v1"
21736        }
21737      }
21738    },
21739    "/api/v1/namespaces/{namespace}/endpoints/{name}": {
21740      "delete": {
21741        "consumes": [
21742          "*/*"
21743        ],
21744        "description": "delete Endpoints",
21745        "operationId": "deleteCoreV1NamespacedEndpoints",
21746        "parameters": [
21747          {
21748            "in": "body",
21749            "name": "body",
21750            "schema": {
21751              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21752            }
21753          },
21754          {
21755            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21756            "in": "query",
21757            "name": "dryRun",
21758            "type": "string",
21759            "uniqueItems": true
21760          },
21761          {
21762            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21763            "in": "query",
21764            "name": "gracePeriodSeconds",
21765            "type": "integer",
21766            "uniqueItems": true
21767          },
21768          {
21769            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21770            "in": "query",
21771            "name": "orphanDependents",
21772            "type": "boolean",
21773            "uniqueItems": true
21774          },
21775          {
21776            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21777            "in": "query",
21778            "name": "propagationPolicy",
21779            "type": "string",
21780            "uniqueItems": true
21781          }
21782        ],
21783        "produces": [
21784          "application/json",
21785          "application/yaml",
21786          "application/vnd.kubernetes.protobuf"
21787        ],
21788        "responses": {
21789          "200": {
21790            "description": "OK",
21791            "schema": {
21792              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21793            }
21794          },
21795          "202": {
21796            "description": "Accepted",
21797            "schema": {
21798              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21799            }
21800          },
21801          "401": {
21802            "description": "Unauthorized"
21803          }
21804        },
21805        "schemes": [
21806          "https"
21807        ],
21808        "tags": [
21809          "core_v1"
21810        ],
21811        "x-kubernetes-action": "delete",
21812        "x-kubernetes-group-version-kind": {
21813          "group": "",
21814          "kind": "Endpoints",
21815          "version": "v1"
21816        }
21817      },
21818      "get": {
21819        "consumes": [
21820          "*/*"
21821        ],
21822        "description": "read the specified Endpoints",
21823        "operationId": "readCoreV1NamespacedEndpoints",
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.Endpoints"
21834            }
21835          },
21836          "401": {
21837            "description": "Unauthorized"
21838          }
21839        },
21840        "schemes": [
21841          "https"
21842        ],
21843        "tags": [
21844          "core_v1"
21845        ],
21846        "x-kubernetes-action": "get",
21847        "x-kubernetes-group-version-kind": {
21848          "group": "",
21849          "kind": "Endpoints",
21850          "version": "v1"
21851        }
21852      },
21853      "parameters": [
21854        {
21855          "description": "name of the Endpoints",
21856          "in": "path",
21857          "name": "name",
21858          "required": true,
21859          "type": "string",
21860          "uniqueItems": true
21861        },
21862        {
21863          "description": "object name and auth scope, such as for teams and projects",
21864          "in": "path",
21865          "name": "namespace",
21866          "required": true,
21867          "type": "string",
21868          "uniqueItems": true
21869        },
21870        {
21871          "description": "If 'true', then the output is pretty printed.",
21872          "in": "query",
21873          "name": "pretty",
21874          "type": "string",
21875          "uniqueItems": true
21876        }
21877      ],
21878      "patch": {
21879        "consumes": [
21880          "application/json-patch+json",
21881          "application/merge-patch+json",
21882          "application/strategic-merge-patch+json",
21883          "application/apply-patch+yaml"
21884        ],
21885        "description": "partially update the specified Endpoints",
21886        "operationId": "patchCoreV1NamespacedEndpoints",
21887        "parameters": [
21888          {
21889            "in": "body",
21890            "name": "body",
21891            "required": true,
21892            "schema": {
21893              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21894            }
21895          },
21896          {
21897            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21898            "in": "query",
21899            "name": "dryRun",
21900            "type": "string",
21901            "uniqueItems": true
21902          },
21903          {
21904            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
21905            "in": "query",
21906            "name": "fieldManager",
21907            "type": "string",
21908            "uniqueItems": true
21909          },
21910          {
21911            "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.",
21912            "in": "query",
21913            "name": "force",
21914            "type": "boolean",
21915            "uniqueItems": true
21916          }
21917        ],
21918        "produces": [
21919          "application/json",
21920          "application/yaml",
21921          "application/vnd.kubernetes.protobuf"
21922        ],
21923        "responses": {
21924          "200": {
21925            "description": "OK",
21926            "schema": {
21927              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21928            }
21929          },
21930          "401": {
21931            "description": "Unauthorized"
21932          }
21933        },
21934        "schemes": [
21935          "https"
21936        ],
21937        "tags": [
21938          "core_v1"
21939        ],
21940        "x-kubernetes-action": "patch",
21941        "x-kubernetes-group-version-kind": {
21942          "group": "",
21943          "kind": "Endpoints",
21944          "version": "v1"
21945        }
21946      },
21947      "put": {
21948        "consumes": [
21949          "*/*"
21950        ],
21951        "description": "replace the specified Endpoints",
21952        "operationId": "replaceCoreV1NamespacedEndpoints",
21953        "parameters": [
21954          {
21955            "in": "body",
21956            "name": "body",
21957            "required": true,
21958            "schema": {
21959              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21960            }
21961          },
21962          {
21963            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21964            "in": "query",
21965            "name": "dryRun",
21966            "type": "string",
21967            "uniqueItems": true
21968          },
21969          {
21970            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21971            "in": "query",
21972            "name": "fieldManager",
21973            "type": "string",
21974            "uniqueItems": true
21975          }
21976        ],
21977        "produces": [
21978          "application/json",
21979          "application/yaml",
21980          "application/vnd.kubernetes.protobuf"
21981        ],
21982        "responses": {
21983          "200": {
21984            "description": "OK",
21985            "schema": {
21986              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21987            }
21988          },
21989          "201": {
21990            "description": "Created",
21991            "schema": {
21992              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21993            }
21994          },
21995          "401": {
21996            "description": "Unauthorized"
21997          }
21998        },
21999        "schemes": [
22000          "https"
22001        ],
22002        "tags": [
22003          "core_v1"
22004        ],
22005        "x-kubernetes-action": "put",
22006        "x-kubernetes-group-version-kind": {
22007          "group": "",
22008          "kind": "Endpoints",
22009          "version": "v1"
22010        }
22011      }
22012    },
22013    "/api/v1/namespaces/{namespace}/events": {
22014      "delete": {
22015        "consumes": [
22016          "*/*"
22017        ],
22018        "description": "delete collection of Event",
22019        "operationId": "deleteCoreV1CollectionNamespacedEvent",
22020        "parameters": [
22021          {
22022            "in": "body",
22023            "name": "body",
22024            "schema": {
22025              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22026            }
22027          },
22028          {
22029            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22030            "in": "query",
22031            "name": "continue",
22032            "type": "string",
22033            "uniqueItems": true
22034          },
22035          {
22036            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22037            "in": "query",
22038            "name": "dryRun",
22039            "type": "string",
22040            "uniqueItems": true
22041          },
22042          {
22043            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22044            "in": "query",
22045            "name": "fieldSelector",
22046            "type": "string",
22047            "uniqueItems": true
22048          },
22049          {
22050            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22051            "in": "query",
22052            "name": "gracePeriodSeconds",
22053            "type": "integer",
22054            "uniqueItems": true
22055          },
22056          {
22057            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22058            "in": "query",
22059            "name": "labelSelector",
22060            "type": "string",
22061            "uniqueItems": true
22062          },
22063          {
22064            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22065            "in": "query",
22066            "name": "limit",
22067            "type": "integer",
22068            "uniqueItems": true
22069          },
22070          {
22071            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22072            "in": "query",
22073            "name": "orphanDependents",
22074            "type": "boolean",
22075            "uniqueItems": true
22076          },
22077          {
22078            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22079            "in": "query",
22080            "name": "propagationPolicy",
22081            "type": "string",
22082            "uniqueItems": true
22083          },
22084          {
22085            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22086            "in": "query",
22087            "name": "resourceVersion",
22088            "type": "string",
22089            "uniqueItems": true
22090          },
22091          {
22092            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22093            "in": "query",
22094            "name": "resourceVersionMatch",
22095            "type": "string",
22096            "uniqueItems": true
22097          },
22098          {
22099            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22100            "in": "query",
22101            "name": "timeoutSeconds",
22102            "type": "integer",
22103            "uniqueItems": true
22104          }
22105        ],
22106        "produces": [
22107          "application/json",
22108          "application/yaml",
22109          "application/vnd.kubernetes.protobuf"
22110        ],
22111        "responses": {
22112          "200": {
22113            "description": "OK",
22114            "schema": {
22115              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22116            }
22117          },
22118          "401": {
22119            "description": "Unauthorized"
22120          }
22121        },
22122        "schemes": [
22123          "https"
22124        ],
22125        "tags": [
22126          "core_v1"
22127        ],
22128        "x-kubernetes-action": "deletecollection",
22129        "x-kubernetes-group-version-kind": {
22130          "group": "",
22131          "kind": "Event",
22132          "version": "v1"
22133        }
22134      },
22135      "get": {
22136        "consumes": [
22137          "*/*"
22138        ],
22139        "description": "list or watch objects of kind Event",
22140        "operationId": "listCoreV1NamespacedEvent",
22141        "parameters": [
22142          {
22143            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
22144            "in": "query",
22145            "name": "allowWatchBookmarks",
22146            "type": "boolean",
22147            "uniqueItems": true
22148          },
22149          {
22150            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22151            "in": "query",
22152            "name": "continue",
22153            "type": "string",
22154            "uniqueItems": true
22155          },
22156          {
22157            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22158            "in": "query",
22159            "name": "fieldSelector",
22160            "type": "string",
22161            "uniqueItems": true
22162          },
22163          {
22164            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22165            "in": "query",
22166            "name": "labelSelector",
22167            "type": "string",
22168            "uniqueItems": true
22169          },
22170          {
22171            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22172            "in": "query",
22173            "name": "limit",
22174            "type": "integer",
22175            "uniqueItems": true
22176          },
22177          {
22178            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22179            "in": "query",
22180            "name": "resourceVersion",
22181            "type": "string",
22182            "uniqueItems": true
22183          },
22184          {
22185            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22186            "in": "query",
22187            "name": "resourceVersionMatch",
22188            "type": "string",
22189            "uniqueItems": true
22190          },
22191          {
22192            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22193            "in": "query",
22194            "name": "timeoutSeconds",
22195            "type": "integer",
22196            "uniqueItems": true
22197          },
22198          {
22199            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22200            "in": "query",
22201            "name": "watch",
22202            "type": "boolean",
22203            "uniqueItems": true
22204          }
22205        ],
22206        "produces": [
22207          "application/json",
22208          "application/yaml",
22209          "application/vnd.kubernetes.protobuf",
22210          "application/json;stream=watch",
22211          "application/vnd.kubernetes.protobuf;stream=watch"
22212        ],
22213        "responses": {
22214          "200": {
22215            "description": "OK",
22216            "schema": {
22217              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
22218            }
22219          },
22220          "401": {
22221            "description": "Unauthorized"
22222          }
22223        },
22224        "schemes": [
22225          "https"
22226        ],
22227        "tags": [
22228          "core_v1"
22229        ],
22230        "x-kubernetes-action": "list",
22231        "x-kubernetes-group-version-kind": {
22232          "group": "",
22233          "kind": "Event",
22234          "version": "v1"
22235        }
22236      },
22237      "parameters": [
22238        {
22239          "description": "object name and auth scope, such as for teams and projects",
22240          "in": "path",
22241          "name": "namespace",
22242          "required": true,
22243          "type": "string",
22244          "uniqueItems": true
22245        },
22246        {
22247          "description": "If 'true', then the output is pretty printed.",
22248          "in": "query",
22249          "name": "pretty",
22250          "type": "string",
22251          "uniqueItems": true
22252        }
22253      ],
22254      "post": {
22255        "consumes": [
22256          "*/*"
22257        ],
22258        "description": "create an Event",
22259        "operationId": "createCoreV1NamespacedEvent",
22260        "parameters": [
22261          {
22262            "in": "body",
22263            "name": "body",
22264            "required": true,
22265            "schema": {
22266              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22267            }
22268          },
22269          {
22270            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22271            "in": "query",
22272            "name": "dryRun",
22273            "type": "string",
22274            "uniqueItems": true
22275          },
22276          {
22277            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22278            "in": "query",
22279            "name": "fieldManager",
22280            "type": "string",
22281            "uniqueItems": true
22282          }
22283        ],
22284        "produces": [
22285          "application/json",
22286          "application/yaml",
22287          "application/vnd.kubernetes.protobuf"
22288        ],
22289        "responses": {
22290          "200": {
22291            "description": "OK",
22292            "schema": {
22293              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22294            }
22295          },
22296          "201": {
22297            "description": "Created",
22298            "schema": {
22299              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22300            }
22301          },
22302          "202": {
22303            "description": "Accepted",
22304            "schema": {
22305              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22306            }
22307          },
22308          "401": {
22309            "description": "Unauthorized"
22310          }
22311        },
22312        "schemes": [
22313          "https"
22314        ],
22315        "tags": [
22316          "core_v1"
22317        ],
22318        "x-kubernetes-action": "post",
22319        "x-kubernetes-group-version-kind": {
22320          "group": "",
22321          "kind": "Event",
22322          "version": "v1"
22323        }
22324      }
22325    },
22326    "/api/v1/namespaces/{namespace}/events/{name}": {
22327      "delete": {
22328        "consumes": [
22329          "*/*"
22330        ],
22331        "description": "delete an Event",
22332        "operationId": "deleteCoreV1NamespacedEvent",
22333        "parameters": [
22334          {
22335            "in": "body",
22336            "name": "body",
22337            "schema": {
22338              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22339            }
22340          },
22341          {
22342            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22343            "in": "query",
22344            "name": "dryRun",
22345            "type": "string",
22346            "uniqueItems": true
22347          },
22348          {
22349            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22350            "in": "query",
22351            "name": "gracePeriodSeconds",
22352            "type": "integer",
22353            "uniqueItems": true
22354          },
22355          {
22356            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22357            "in": "query",
22358            "name": "orphanDependents",
22359            "type": "boolean",
22360            "uniqueItems": true
22361          },
22362          {
22363            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22364            "in": "query",
22365            "name": "propagationPolicy",
22366            "type": "string",
22367            "uniqueItems": true
22368          }
22369        ],
22370        "produces": [
22371          "application/json",
22372          "application/yaml",
22373          "application/vnd.kubernetes.protobuf"
22374        ],
22375        "responses": {
22376          "200": {
22377            "description": "OK",
22378            "schema": {
22379              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22380            }
22381          },
22382          "202": {
22383            "description": "Accepted",
22384            "schema": {
22385              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22386            }
22387          },
22388          "401": {
22389            "description": "Unauthorized"
22390          }
22391        },
22392        "schemes": [
22393          "https"
22394        ],
22395        "tags": [
22396          "core_v1"
22397        ],
22398        "x-kubernetes-action": "delete",
22399        "x-kubernetes-group-version-kind": {
22400          "group": "",
22401          "kind": "Event",
22402          "version": "v1"
22403        }
22404      },
22405      "get": {
22406        "consumes": [
22407          "*/*"
22408        ],
22409        "description": "read the specified Event",
22410        "operationId": "readCoreV1NamespacedEvent",
22411        "produces": [
22412          "application/json",
22413          "application/yaml",
22414          "application/vnd.kubernetes.protobuf"
22415        ],
22416        "responses": {
22417          "200": {
22418            "description": "OK",
22419            "schema": {
22420              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22421            }
22422          },
22423          "401": {
22424            "description": "Unauthorized"
22425          }
22426        },
22427        "schemes": [
22428          "https"
22429        ],
22430        "tags": [
22431          "core_v1"
22432        ],
22433        "x-kubernetes-action": "get",
22434        "x-kubernetes-group-version-kind": {
22435          "group": "",
22436          "kind": "Event",
22437          "version": "v1"
22438        }
22439      },
22440      "parameters": [
22441        {
22442          "description": "name of the Event",
22443          "in": "path",
22444          "name": "name",
22445          "required": true,
22446          "type": "string",
22447          "uniqueItems": true
22448        },
22449        {
22450          "description": "object name and auth scope, such as for teams and projects",
22451          "in": "path",
22452          "name": "namespace",
22453          "required": true,
22454          "type": "string",
22455          "uniqueItems": true
22456        },
22457        {
22458          "description": "If 'true', then the output is pretty printed.",
22459          "in": "query",
22460          "name": "pretty",
22461          "type": "string",
22462          "uniqueItems": true
22463        }
22464      ],
22465      "patch": {
22466        "consumes": [
22467          "application/json-patch+json",
22468          "application/merge-patch+json",
22469          "application/strategic-merge-patch+json",
22470          "application/apply-patch+yaml"
22471        ],
22472        "description": "partially update the specified Event",
22473        "operationId": "patchCoreV1NamespacedEvent",
22474        "parameters": [
22475          {
22476            "in": "body",
22477            "name": "body",
22478            "required": true,
22479            "schema": {
22480              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22481            }
22482          },
22483          {
22484            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22485            "in": "query",
22486            "name": "dryRun",
22487            "type": "string",
22488            "uniqueItems": true
22489          },
22490          {
22491            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
22492            "in": "query",
22493            "name": "fieldManager",
22494            "type": "string",
22495            "uniqueItems": true
22496          },
22497          {
22498            "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.",
22499            "in": "query",
22500            "name": "force",
22501            "type": "boolean",
22502            "uniqueItems": true
22503          }
22504        ],
22505        "produces": [
22506          "application/json",
22507          "application/yaml",
22508          "application/vnd.kubernetes.protobuf"
22509        ],
22510        "responses": {
22511          "200": {
22512            "description": "OK",
22513            "schema": {
22514              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22515            }
22516          },
22517          "401": {
22518            "description": "Unauthorized"
22519          }
22520        },
22521        "schemes": [
22522          "https"
22523        ],
22524        "tags": [
22525          "core_v1"
22526        ],
22527        "x-kubernetes-action": "patch",
22528        "x-kubernetes-group-version-kind": {
22529          "group": "",
22530          "kind": "Event",
22531          "version": "v1"
22532        }
22533      },
22534      "put": {
22535        "consumes": [
22536          "*/*"
22537        ],
22538        "description": "replace the specified Event",
22539        "operationId": "replaceCoreV1NamespacedEvent",
22540        "parameters": [
22541          {
22542            "in": "body",
22543            "name": "body",
22544            "required": true,
22545            "schema": {
22546              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22547            }
22548          },
22549          {
22550            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22551            "in": "query",
22552            "name": "dryRun",
22553            "type": "string",
22554            "uniqueItems": true
22555          },
22556          {
22557            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22558            "in": "query",
22559            "name": "fieldManager",
22560            "type": "string",
22561            "uniqueItems": true
22562          }
22563        ],
22564        "produces": [
22565          "application/json",
22566          "application/yaml",
22567          "application/vnd.kubernetes.protobuf"
22568        ],
22569        "responses": {
22570          "200": {
22571            "description": "OK",
22572            "schema": {
22573              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22574            }
22575          },
22576          "201": {
22577            "description": "Created",
22578            "schema": {
22579              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22580            }
22581          },
22582          "401": {
22583            "description": "Unauthorized"
22584          }
22585        },
22586        "schemes": [
22587          "https"
22588        ],
22589        "tags": [
22590          "core_v1"
22591        ],
22592        "x-kubernetes-action": "put",
22593        "x-kubernetes-group-version-kind": {
22594          "group": "",
22595          "kind": "Event",
22596          "version": "v1"
22597        }
22598      }
22599    },
22600    "/api/v1/namespaces/{namespace}/limitranges": {
22601      "delete": {
22602        "consumes": [
22603          "*/*"
22604        ],
22605        "description": "delete collection of LimitRange",
22606        "operationId": "deleteCoreV1CollectionNamespacedLimitRange",
22607        "parameters": [
22608          {
22609            "in": "body",
22610            "name": "body",
22611            "schema": {
22612              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22613            }
22614          },
22615          {
22616            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22617            "in": "query",
22618            "name": "continue",
22619            "type": "string",
22620            "uniqueItems": true
22621          },
22622          {
22623            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22624            "in": "query",
22625            "name": "dryRun",
22626            "type": "string",
22627            "uniqueItems": true
22628          },
22629          {
22630            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22631            "in": "query",
22632            "name": "fieldSelector",
22633            "type": "string",
22634            "uniqueItems": true
22635          },
22636          {
22637            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22638            "in": "query",
22639            "name": "gracePeriodSeconds",
22640            "type": "integer",
22641            "uniqueItems": true
22642          },
22643          {
22644            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22645            "in": "query",
22646            "name": "labelSelector",
22647            "type": "string",
22648            "uniqueItems": true
22649          },
22650          {
22651            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22652            "in": "query",
22653            "name": "limit",
22654            "type": "integer",
22655            "uniqueItems": true
22656          },
22657          {
22658            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22659            "in": "query",
22660            "name": "orphanDependents",
22661            "type": "boolean",
22662            "uniqueItems": true
22663          },
22664          {
22665            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22666            "in": "query",
22667            "name": "propagationPolicy",
22668            "type": "string",
22669            "uniqueItems": true
22670          },
22671          {
22672            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22673            "in": "query",
22674            "name": "resourceVersion",
22675            "type": "string",
22676            "uniqueItems": true
22677          },
22678          {
22679            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22680            "in": "query",
22681            "name": "resourceVersionMatch",
22682            "type": "string",
22683            "uniqueItems": true
22684          },
22685          {
22686            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22687            "in": "query",
22688            "name": "timeoutSeconds",
22689            "type": "integer",
22690            "uniqueItems": true
22691          }
22692        ],
22693        "produces": [
22694          "application/json",
22695          "application/yaml",
22696          "application/vnd.kubernetes.protobuf"
22697        ],
22698        "responses": {
22699          "200": {
22700            "description": "OK",
22701            "schema": {
22702              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22703            }
22704          },
22705          "401": {
22706            "description": "Unauthorized"
22707          }
22708        },
22709        "schemes": [
22710          "https"
22711        ],
22712        "tags": [
22713          "core_v1"
22714        ],
22715        "x-kubernetes-action": "deletecollection",
22716        "x-kubernetes-group-version-kind": {
22717          "group": "",
22718          "kind": "LimitRange",
22719          "version": "v1"
22720        }
22721      },
22722      "get": {
22723        "consumes": [
22724          "*/*"
22725        ],
22726        "description": "list or watch objects of kind LimitRange",
22727        "operationId": "listCoreV1NamespacedLimitRange",
22728        "parameters": [
22729          {
22730            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
22731            "in": "query",
22732            "name": "allowWatchBookmarks",
22733            "type": "boolean",
22734            "uniqueItems": true
22735          },
22736          {
22737            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22738            "in": "query",
22739            "name": "continue",
22740            "type": "string",
22741            "uniqueItems": true
22742          },
22743          {
22744            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22745            "in": "query",
22746            "name": "fieldSelector",
22747            "type": "string",
22748            "uniqueItems": true
22749          },
22750          {
22751            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22752            "in": "query",
22753            "name": "labelSelector",
22754            "type": "string",
22755            "uniqueItems": true
22756          },
22757          {
22758            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22759            "in": "query",
22760            "name": "limit",
22761            "type": "integer",
22762            "uniqueItems": true
22763          },
22764          {
22765            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22766            "in": "query",
22767            "name": "resourceVersion",
22768            "type": "string",
22769            "uniqueItems": true
22770          },
22771          {
22772            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22773            "in": "query",
22774            "name": "resourceVersionMatch",
22775            "type": "string",
22776            "uniqueItems": true
22777          },
22778          {
22779            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22780            "in": "query",
22781            "name": "timeoutSeconds",
22782            "type": "integer",
22783            "uniqueItems": true
22784          },
22785          {
22786            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22787            "in": "query",
22788            "name": "watch",
22789            "type": "boolean",
22790            "uniqueItems": true
22791          }
22792        ],
22793        "produces": [
22794          "application/json",
22795          "application/yaml",
22796          "application/vnd.kubernetes.protobuf",
22797          "application/json;stream=watch",
22798          "application/vnd.kubernetes.protobuf;stream=watch"
22799        ],
22800        "responses": {
22801          "200": {
22802            "description": "OK",
22803            "schema": {
22804              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
22805            }
22806          },
22807          "401": {
22808            "description": "Unauthorized"
22809          }
22810        },
22811        "schemes": [
22812          "https"
22813        ],
22814        "tags": [
22815          "core_v1"
22816        ],
22817        "x-kubernetes-action": "list",
22818        "x-kubernetes-group-version-kind": {
22819          "group": "",
22820          "kind": "LimitRange",
22821          "version": "v1"
22822        }
22823      },
22824      "parameters": [
22825        {
22826          "description": "object name and auth scope, such as for teams and projects",
22827          "in": "path",
22828          "name": "namespace",
22829          "required": true,
22830          "type": "string",
22831          "uniqueItems": true
22832        },
22833        {
22834          "description": "If 'true', then the output is pretty printed.",
22835          "in": "query",
22836          "name": "pretty",
22837          "type": "string",
22838          "uniqueItems": true
22839        }
22840      ],
22841      "post": {
22842        "consumes": [
22843          "*/*"
22844        ],
22845        "description": "create a LimitRange",
22846        "operationId": "createCoreV1NamespacedLimitRange",
22847        "parameters": [
22848          {
22849            "in": "body",
22850            "name": "body",
22851            "required": true,
22852            "schema": {
22853              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22854            }
22855          },
22856          {
22857            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22858            "in": "query",
22859            "name": "dryRun",
22860            "type": "string",
22861            "uniqueItems": true
22862          },
22863          {
22864            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22865            "in": "query",
22866            "name": "fieldManager",
22867            "type": "string",
22868            "uniqueItems": true
22869          }
22870        ],
22871        "produces": [
22872          "application/json",
22873          "application/yaml",
22874          "application/vnd.kubernetes.protobuf"
22875        ],
22876        "responses": {
22877          "200": {
22878            "description": "OK",
22879            "schema": {
22880              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22881            }
22882          },
22883          "201": {
22884            "description": "Created",
22885            "schema": {
22886              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22887            }
22888          },
22889          "202": {
22890            "description": "Accepted",
22891            "schema": {
22892              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22893            }
22894          },
22895          "401": {
22896            "description": "Unauthorized"
22897          }
22898        },
22899        "schemes": [
22900          "https"
22901        ],
22902        "tags": [
22903          "core_v1"
22904        ],
22905        "x-kubernetes-action": "post",
22906        "x-kubernetes-group-version-kind": {
22907          "group": "",
22908          "kind": "LimitRange",
22909          "version": "v1"
22910        }
22911      }
22912    },
22913    "/api/v1/namespaces/{namespace}/limitranges/{name}": {
22914      "delete": {
22915        "consumes": [
22916          "*/*"
22917        ],
22918        "description": "delete a LimitRange",
22919        "operationId": "deleteCoreV1NamespacedLimitRange",
22920        "parameters": [
22921          {
22922            "in": "body",
22923            "name": "body",
22924            "schema": {
22925              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22926            }
22927          },
22928          {
22929            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22930            "in": "query",
22931            "name": "dryRun",
22932            "type": "string",
22933            "uniqueItems": true
22934          },
22935          {
22936            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22937            "in": "query",
22938            "name": "gracePeriodSeconds",
22939            "type": "integer",
22940            "uniqueItems": true
22941          },
22942          {
22943            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22944            "in": "query",
22945            "name": "orphanDependents",
22946            "type": "boolean",
22947            "uniqueItems": true
22948          },
22949          {
22950            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22951            "in": "query",
22952            "name": "propagationPolicy",
22953            "type": "string",
22954            "uniqueItems": true
22955          }
22956        ],
22957        "produces": [
22958          "application/json",
22959          "application/yaml",
22960          "application/vnd.kubernetes.protobuf"
22961        ],
22962        "responses": {
22963          "200": {
22964            "description": "OK",
22965            "schema": {
22966              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22967            }
22968          },
22969          "202": {
22970            "description": "Accepted",
22971            "schema": {
22972              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22973            }
22974          },
22975          "401": {
22976            "description": "Unauthorized"
22977          }
22978        },
22979        "schemes": [
22980          "https"
22981        ],
22982        "tags": [
22983          "core_v1"
22984        ],
22985        "x-kubernetes-action": "delete",
22986        "x-kubernetes-group-version-kind": {
22987          "group": "",
22988          "kind": "LimitRange",
22989          "version": "v1"
22990        }
22991      },
22992      "get": {
22993        "consumes": [
22994          "*/*"
22995        ],
22996        "description": "read the specified LimitRange",
22997        "operationId": "readCoreV1NamespacedLimitRange",
22998        "produces": [
22999          "application/json",
23000          "application/yaml",
23001          "application/vnd.kubernetes.protobuf"
23002        ],
23003        "responses": {
23004          "200": {
23005            "description": "OK",
23006            "schema": {
23007              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23008            }
23009          },
23010          "401": {
23011            "description": "Unauthorized"
23012          }
23013        },
23014        "schemes": [
23015          "https"
23016        ],
23017        "tags": [
23018          "core_v1"
23019        ],
23020        "x-kubernetes-action": "get",
23021        "x-kubernetes-group-version-kind": {
23022          "group": "",
23023          "kind": "LimitRange",
23024          "version": "v1"
23025        }
23026      },
23027      "parameters": [
23028        {
23029          "description": "name of the LimitRange",
23030          "in": "path",
23031          "name": "name",
23032          "required": true,
23033          "type": "string",
23034          "uniqueItems": true
23035        },
23036        {
23037          "description": "object name and auth scope, such as for teams and projects",
23038          "in": "path",
23039          "name": "namespace",
23040          "required": true,
23041          "type": "string",
23042          "uniqueItems": true
23043        },
23044        {
23045          "description": "If 'true', then the output is pretty printed.",
23046          "in": "query",
23047          "name": "pretty",
23048          "type": "string",
23049          "uniqueItems": true
23050        }
23051      ],
23052      "patch": {
23053        "consumes": [
23054          "application/json-patch+json",
23055          "application/merge-patch+json",
23056          "application/strategic-merge-patch+json",
23057          "application/apply-patch+yaml"
23058        ],
23059        "description": "partially update the specified LimitRange",
23060        "operationId": "patchCoreV1NamespacedLimitRange",
23061        "parameters": [
23062          {
23063            "in": "body",
23064            "name": "body",
23065            "required": true,
23066            "schema": {
23067              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23068            }
23069          },
23070          {
23071            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23072            "in": "query",
23073            "name": "dryRun",
23074            "type": "string",
23075            "uniqueItems": true
23076          },
23077          {
23078            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
23079            "in": "query",
23080            "name": "fieldManager",
23081            "type": "string",
23082            "uniqueItems": true
23083          },
23084          {
23085            "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.",
23086            "in": "query",
23087            "name": "force",
23088            "type": "boolean",
23089            "uniqueItems": true
23090          }
23091        ],
23092        "produces": [
23093          "application/json",
23094          "application/yaml",
23095          "application/vnd.kubernetes.protobuf"
23096        ],
23097        "responses": {
23098          "200": {
23099            "description": "OK",
23100            "schema": {
23101              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23102            }
23103          },
23104          "401": {
23105            "description": "Unauthorized"
23106          }
23107        },
23108        "schemes": [
23109          "https"
23110        ],
23111        "tags": [
23112          "core_v1"
23113        ],
23114        "x-kubernetes-action": "patch",
23115        "x-kubernetes-group-version-kind": {
23116          "group": "",
23117          "kind": "LimitRange",
23118          "version": "v1"
23119        }
23120      },
23121      "put": {
23122        "consumes": [
23123          "*/*"
23124        ],
23125        "description": "replace the specified LimitRange",
23126        "operationId": "replaceCoreV1NamespacedLimitRange",
23127        "parameters": [
23128          {
23129            "in": "body",
23130            "name": "body",
23131            "required": true,
23132            "schema": {
23133              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23134            }
23135          },
23136          {
23137            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23138            "in": "query",
23139            "name": "dryRun",
23140            "type": "string",
23141            "uniqueItems": true
23142          },
23143          {
23144            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23145            "in": "query",
23146            "name": "fieldManager",
23147            "type": "string",
23148            "uniqueItems": true
23149          }
23150        ],
23151        "produces": [
23152          "application/json",
23153          "application/yaml",
23154          "application/vnd.kubernetes.protobuf"
23155        ],
23156        "responses": {
23157          "200": {
23158            "description": "OK",
23159            "schema": {
23160              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23161            }
23162          },
23163          "201": {
23164            "description": "Created",
23165            "schema": {
23166              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23167            }
23168          },
23169          "401": {
23170            "description": "Unauthorized"
23171          }
23172        },
23173        "schemes": [
23174          "https"
23175        ],
23176        "tags": [
23177          "core_v1"
23178        ],
23179        "x-kubernetes-action": "put",
23180        "x-kubernetes-group-version-kind": {
23181          "group": "",
23182          "kind": "LimitRange",
23183          "version": "v1"
23184        }
23185      }
23186    },
23187    "/api/v1/namespaces/{namespace}/persistentvolumeclaims": {
23188      "delete": {
23189        "consumes": [
23190          "*/*"
23191        ],
23192        "description": "delete collection of PersistentVolumeClaim",
23193        "operationId": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim",
23194        "parameters": [
23195          {
23196            "in": "body",
23197            "name": "body",
23198            "schema": {
23199              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23200            }
23201          },
23202          {
23203            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23204            "in": "query",
23205            "name": "continue",
23206            "type": "string",
23207            "uniqueItems": true
23208          },
23209          {
23210            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23211            "in": "query",
23212            "name": "dryRun",
23213            "type": "string",
23214            "uniqueItems": true
23215          },
23216          {
23217            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23218            "in": "query",
23219            "name": "fieldSelector",
23220            "type": "string",
23221            "uniqueItems": true
23222          },
23223          {
23224            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23225            "in": "query",
23226            "name": "gracePeriodSeconds",
23227            "type": "integer",
23228            "uniqueItems": true
23229          },
23230          {
23231            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23232            "in": "query",
23233            "name": "labelSelector",
23234            "type": "string",
23235            "uniqueItems": true
23236          },
23237          {
23238            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23239            "in": "query",
23240            "name": "limit",
23241            "type": "integer",
23242            "uniqueItems": true
23243          },
23244          {
23245            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23246            "in": "query",
23247            "name": "orphanDependents",
23248            "type": "boolean",
23249            "uniqueItems": true
23250          },
23251          {
23252            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23253            "in": "query",
23254            "name": "propagationPolicy",
23255            "type": "string",
23256            "uniqueItems": true
23257          },
23258          {
23259            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23260            "in": "query",
23261            "name": "resourceVersion",
23262            "type": "string",
23263            "uniqueItems": true
23264          },
23265          {
23266            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23267            "in": "query",
23268            "name": "resourceVersionMatch",
23269            "type": "string",
23270            "uniqueItems": true
23271          },
23272          {
23273            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23274            "in": "query",
23275            "name": "timeoutSeconds",
23276            "type": "integer",
23277            "uniqueItems": true
23278          }
23279        ],
23280        "produces": [
23281          "application/json",
23282          "application/yaml",
23283          "application/vnd.kubernetes.protobuf"
23284        ],
23285        "responses": {
23286          "200": {
23287            "description": "OK",
23288            "schema": {
23289              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23290            }
23291          },
23292          "401": {
23293            "description": "Unauthorized"
23294          }
23295        },
23296        "schemes": [
23297          "https"
23298        ],
23299        "tags": [
23300          "core_v1"
23301        ],
23302        "x-kubernetes-action": "deletecollection",
23303        "x-kubernetes-group-version-kind": {
23304          "group": "",
23305          "kind": "PersistentVolumeClaim",
23306          "version": "v1"
23307        }
23308      },
23309      "get": {
23310        "consumes": [
23311          "*/*"
23312        ],
23313        "description": "list or watch objects of kind PersistentVolumeClaim",
23314        "operationId": "listCoreV1NamespacedPersistentVolumeClaim",
23315        "parameters": [
23316          {
23317            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
23318            "in": "query",
23319            "name": "allowWatchBookmarks",
23320            "type": "boolean",
23321            "uniqueItems": true
23322          },
23323          {
23324            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23325            "in": "query",
23326            "name": "continue",
23327            "type": "string",
23328            "uniqueItems": true
23329          },
23330          {
23331            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23332            "in": "query",
23333            "name": "fieldSelector",
23334            "type": "string",
23335            "uniqueItems": true
23336          },
23337          {
23338            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23339            "in": "query",
23340            "name": "labelSelector",
23341            "type": "string",
23342            "uniqueItems": true
23343          },
23344          {
23345            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23346            "in": "query",
23347            "name": "limit",
23348            "type": "integer",
23349            "uniqueItems": true
23350          },
23351          {
23352            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23353            "in": "query",
23354            "name": "resourceVersion",
23355            "type": "string",
23356            "uniqueItems": true
23357          },
23358          {
23359            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23360            "in": "query",
23361            "name": "resourceVersionMatch",
23362            "type": "string",
23363            "uniqueItems": true
23364          },
23365          {
23366            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23367            "in": "query",
23368            "name": "timeoutSeconds",
23369            "type": "integer",
23370            "uniqueItems": true
23371          },
23372          {
23373            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
23374            "in": "query",
23375            "name": "watch",
23376            "type": "boolean",
23377            "uniqueItems": true
23378          }
23379        ],
23380        "produces": [
23381          "application/json",
23382          "application/yaml",
23383          "application/vnd.kubernetes.protobuf",
23384          "application/json;stream=watch",
23385          "application/vnd.kubernetes.protobuf;stream=watch"
23386        ],
23387        "responses": {
23388          "200": {
23389            "description": "OK",
23390            "schema": {
23391              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
23392            }
23393          },
23394          "401": {
23395            "description": "Unauthorized"
23396          }
23397        },
23398        "schemes": [
23399          "https"
23400        ],
23401        "tags": [
23402          "core_v1"
23403        ],
23404        "x-kubernetes-action": "list",
23405        "x-kubernetes-group-version-kind": {
23406          "group": "",
23407          "kind": "PersistentVolumeClaim",
23408          "version": "v1"
23409        }
23410      },
23411      "parameters": [
23412        {
23413          "description": "object name and auth scope, such as for teams and projects",
23414          "in": "path",
23415          "name": "namespace",
23416          "required": true,
23417          "type": "string",
23418          "uniqueItems": true
23419        },
23420        {
23421          "description": "If 'true', then the output is pretty printed.",
23422          "in": "query",
23423          "name": "pretty",
23424          "type": "string",
23425          "uniqueItems": true
23426        }
23427      ],
23428      "post": {
23429        "consumes": [
23430          "*/*"
23431        ],
23432        "description": "create a PersistentVolumeClaim",
23433        "operationId": "createCoreV1NamespacedPersistentVolumeClaim",
23434        "parameters": [
23435          {
23436            "in": "body",
23437            "name": "body",
23438            "required": true,
23439            "schema": {
23440              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23441            }
23442          },
23443          {
23444            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23445            "in": "query",
23446            "name": "dryRun",
23447            "type": "string",
23448            "uniqueItems": true
23449          },
23450          {
23451            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23452            "in": "query",
23453            "name": "fieldManager",
23454            "type": "string",
23455            "uniqueItems": true
23456          }
23457        ],
23458        "produces": [
23459          "application/json",
23460          "application/yaml",
23461          "application/vnd.kubernetes.protobuf"
23462        ],
23463        "responses": {
23464          "200": {
23465            "description": "OK",
23466            "schema": {
23467              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23468            }
23469          },
23470          "201": {
23471            "description": "Created",
23472            "schema": {
23473              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23474            }
23475          },
23476          "202": {
23477            "description": "Accepted",
23478            "schema": {
23479              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23480            }
23481          },
23482          "401": {
23483            "description": "Unauthorized"
23484          }
23485        },
23486        "schemes": [
23487          "https"
23488        ],
23489        "tags": [
23490          "core_v1"
23491        ],
23492        "x-kubernetes-action": "post",
23493        "x-kubernetes-group-version-kind": {
23494          "group": "",
23495          "kind": "PersistentVolumeClaim",
23496          "version": "v1"
23497        }
23498      }
23499    },
23500    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": {
23501      "delete": {
23502        "consumes": [
23503          "*/*"
23504        ],
23505        "description": "delete a PersistentVolumeClaim",
23506        "operationId": "deleteCoreV1NamespacedPersistentVolumeClaim",
23507        "parameters": [
23508          {
23509            "in": "body",
23510            "name": "body",
23511            "schema": {
23512              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23513            }
23514          },
23515          {
23516            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23517            "in": "query",
23518            "name": "dryRun",
23519            "type": "string",
23520            "uniqueItems": true
23521          },
23522          {
23523            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23524            "in": "query",
23525            "name": "gracePeriodSeconds",
23526            "type": "integer",
23527            "uniqueItems": true
23528          },
23529          {
23530            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23531            "in": "query",
23532            "name": "orphanDependents",
23533            "type": "boolean",
23534            "uniqueItems": true
23535          },
23536          {
23537            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23538            "in": "query",
23539            "name": "propagationPolicy",
23540            "type": "string",
23541            "uniqueItems": true
23542          }
23543        ],
23544        "produces": [
23545          "application/json",
23546          "application/yaml",
23547          "application/vnd.kubernetes.protobuf"
23548        ],
23549        "responses": {
23550          "200": {
23551            "description": "OK",
23552            "schema": {
23553              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23554            }
23555          },
23556          "202": {
23557            "description": "Accepted",
23558            "schema": {
23559              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23560            }
23561          },
23562          "401": {
23563            "description": "Unauthorized"
23564          }
23565        },
23566        "schemes": [
23567          "https"
23568        ],
23569        "tags": [
23570          "core_v1"
23571        ],
23572        "x-kubernetes-action": "delete",
23573        "x-kubernetes-group-version-kind": {
23574          "group": "",
23575          "kind": "PersistentVolumeClaim",
23576          "version": "v1"
23577        }
23578      },
23579      "get": {
23580        "consumes": [
23581          "*/*"
23582        ],
23583        "description": "read the specified PersistentVolumeClaim",
23584        "operationId": "readCoreV1NamespacedPersistentVolumeClaim",
23585        "produces": [
23586          "application/json",
23587          "application/yaml",
23588          "application/vnd.kubernetes.protobuf"
23589        ],
23590        "responses": {
23591          "200": {
23592            "description": "OK",
23593            "schema": {
23594              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23595            }
23596          },
23597          "401": {
23598            "description": "Unauthorized"
23599          }
23600        },
23601        "schemes": [
23602          "https"
23603        ],
23604        "tags": [
23605          "core_v1"
23606        ],
23607        "x-kubernetes-action": "get",
23608        "x-kubernetes-group-version-kind": {
23609          "group": "",
23610          "kind": "PersistentVolumeClaim",
23611          "version": "v1"
23612        }
23613      },
23614      "parameters": [
23615        {
23616          "description": "name of the PersistentVolumeClaim",
23617          "in": "path",
23618          "name": "name",
23619          "required": true,
23620          "type": "string",
23621          "uniqueItems": true
23622        },
23623        {
23624          "description": "object name and auth scope, such as for teams and projects",
23625          "in": "path",
23626          "name": "namespace",
23627          "required": true,
23628          "type": "string",
23629          "uniqueItems": true
23630        },
23631        {
23632          "description": "If 'true', then the output is pretty printed.",
23633          "in": "query",
23634          "name": "pretty",
23635          "type": "string",
23636          "uniqueItems": true
23637        }
23638      ],
23639      "patch": {
23640        "consumes": [
23641          "application/json-patch+json",
23642          "application/merge-patch+json",
23643          "application/strategic-merge-patch+json",
23644          "application/apply-patch+yaml"
23645        ],
23646        "description": "partially update the specified PersistentVolumeClaim",
23647        "operationId": "patchCoreV1NamespacedPersistentVolumeClaim",
23648        "parameters": [
23649          {
23650            "in": "body",
23651            "name": "body",
23652            "required": true,
23653            "schema": {
23654              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23655            }
23656          },
23657          {
23658            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23659            "in": "query",
23660            "name": "dryRun",
23661            "type": "string",
23662            "uniqueItems": true
23663          },
23664          {
23665            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
23666            "in": "query",
23667            "name": "fieldManager",
23668            "type": "string",
23669            "uniqueItems": true
23670          },
23671          {
23672            "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.",
23673            "in": "query",
23674            "name": "force",
23675            "type": "boolean",
23676            "uniqueItems": true
23677          }
23678        ],
23679        "produces": [
23680          "application/json",
23681          "application/yaml",
23682          "application/vnd.kubernetes.protobuf"
23683        ],
23684        "responses": {
23685          "200": {
23686            "description": "OK",
23687            "schema": {
23688              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23689            }
23690          },
23691          "401": {
23692            "description": "Unauthorized"
23693          }
23694        },
23695        "schemes": [
23696          "https"
23697        ],
23698        "tags": [
23699          "core_v1"
23700        ],
23701        "x-kubernetes-action": "patch",
23702        "x-kubernetes-group-version-kind": {
23703          "group": "",
23704          "kind": "PersistentVolumeClaim",
23705          "version": "v1"
23706        }
23707      },
23708      "put": {
23709        "consumes": [
23710          "*/*"
23711        ],
23712        "description": "replace the specified PersistentVolumeClaim",
23713        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaim",
23714        "parameters": [
23715          {
23716            "in": "body",
23717            "name": "body",
23718            "required": true,
23719            "schema": {
23720              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23721            }
23722          },
23723          {
23724            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23725            "in": "query",
23726            "name": "dryRun",
23727            "type": "string",
23728            "uniqueItems": true
23729          },
23730          {
23731            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23732            "in": "query",
23733            "name": "fieldManager",
23734            "type": "string",
23735            "uniqueItems": true
23736          }
23737        ],
23738        "produces": [
23739          "application/json",
23740          "application/yaml",
23741          "application/vnd.kubernetes.protobuf"
23742        ],
23743        "responses": {
23744          "200": {
23745            "description": "OK",
23746            "schema": {
23747              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23748            }
23749          },
23750          "201": {
23751            "description": "Created",
23752            "schema": {
23753              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23754            }
23755          },
23756          "401": {
23757            "description": "Unauthorized"
23758          }
23759        },
23760        "schemes": [
23761          "https"
23762        ],
23763        "tags": [
23764          "core_v1"
23765        ],
23766        "x-kubernetes-action": "put",
23767        "x-kubernetes-group-version-kind": {
23768          "group": "",
23769          "kind": "PersistentVolumeClaim",
23770          "version": "v1"
23771        }
23772      }
23773    },
23774    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": {
23775      "get": {
23776        "consumes": [
23777          "*/*"
23778        ],
23779        "description": "read status of the specified PersistentVolumeClaim",
23780        "operationId": "readCoreV1NamespacedPersistentVolumeClaimStatus",
23781        "produces": [
23782          "application/json",
23783          "application/yaml",
23784          "application/vnd.kubernetes.protobuf"
23785        ],
23786        "responses": {
23787          "200": {
23788            "description": "OK",
23789            "schema": {
23790              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23791            }
23792          },
23793          "401": {
23794            "description": "Unauthorized"
23795          }
23796        },
23797        "schemes": [
23798          "https"
23799        ],
23800        "tags": [
23801          "core_v1"
23802        ],
23803        "x-kubernetes-action": "get",
23804        "x-kubernetes-group-version-kind": {
23805          "group": "",
23806          "kind": "PersistentVolumeClaim",
23807          "version": "v1"
23808        }
23809      },
23810      "parameters": [
23811        {
23812          "description": "name of the PersistentVolumeClaim",
23813          "in": "path",
23814          "name": "name",
23815          "required": true,
23816          "type": "string",
23817          "uniqueItems": true
23818        },
23819        {
23820          "description": "object name and auth scope, such as for teams and projects",
23821          "in": "path",
23822          "name": "namespace",
23823          "required": true,
23824          "type": "string",
23825          "uniqueItems": true
23826        },
23827        {
23828          "description": "If 'true', then the output is pretty printed.",
23829          "in": "query",
23830          "name": "pretty",
23831          "type": "string",
23832          "uniqueItems": true
23833        }
23834      ],
23835      "patch": {
23836        "consumes": [
23837          "application/json-patch+json",
23838          "application/merge-patch+json",
23839          "application/strategic-merge-patch+json",
23840          "application/apply-patch+yaml"
23841        ],
23842        "description": "partially update status of the specified PersistentVolumeClaim",
23843        "operationId": "patchCoreV1NamespacedPersistentVolumeClaimStatus",
23844        "parameters": [
23845          {
23846            "in": "body",
23847            "name": "body",
23848            "required": true,
23849            "schema": {
23850              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23851            }
23852          },
23853          {
23854            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23855            "in": "query",
23856            "name": "dryRun",
23857            "type": "string",
23858            "uniqueItems": true
23859          },
23860          {
23861            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
23862            "in": "query",
23863            "name": "fieldManager",
23864            "type": "string",
23865            "uniqueItems": true
23866          },
23867          {
23868            "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.",
23869            "in": "query",
23870            "name": "force",
23871            "type": "boolean",
23872            "uniqueItems": true
23873          }
23874        ],
23875        "produces": [
23876          "application/json",
23877          "application/yaml",
23878          "application/vnd.kubernetes.protobuf"
23879        ],
23880        "responses": {
23881          "200": {
23882            "description": "OK",
23883            "schema": {
23884              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23885            }
23886          },
23887          "401": {
23888            "description": "Unauthorized"
23889          }
23890        },
23891        "schemes": [
23892          "https"
23893        ],
23894        "tags": [
23895          "core_v1"
23896        ],
23897        "x-kubernetes-action": "patch",
23898        "x-kubernetes-group-version-kind": {
23899          "group": "",
23900          "kind": "PersistentVolumeClaim",
23901          "version": "v1"
23902        }
23903      },
23904      "put": {
23905        "consumes": [
23906          "*/*"
23907        ],
23908        "description": "replace status of the specified PersistentVolumeClaim",
23909        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaimStatus",
23910        "parameters": [
23911          {
23912            "in": "body",
23913            "name": "body",
23914            "required": true,
23915            "schema": {
23916              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23917            }
23918          },
23919          {
23920            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23921            "in": "query",
23922            "name": "dryRun",
23923            "type": "string",
23924            "uniqueItems": true
23925          },
23926          {
23927            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23928            "in": "query",
23929            "name": "fieldManager",
23930            "type": "string",
23931            "uniqueItems": true
23932          }
23933        ],
23934        "produces": [
23935          "application/json",
23936          "application/yaml",
23937          "application/vnd.kubernetes.protobuf"
23938        ],
23939        "responses": {
23940          "200": {
23941            "description": "OK",
23942            "schema": {
23943              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23944            }
23945          },
23946          "201": {
23947            "description": "Created",
23948            "schema": {
23949              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23950            }
23951          },
23952          "401": {
23953            "description": "Unauthorized"
23954          }
23955        },
23956        "schemes": [
23957          "https"
23958        ],
23959        "tags": [
23960          "core_v1"
23961        ],
23962        "x-kubernetes-action": "put",
23963        "x-kubernetes-group-version-kind": {
23964          "group": "",
23965          "kind": "PersistentVolumeClaim",
23966          "version": "v1"
23967        }
23968      }
23969    },
23970    "/api/v1/namespaces/{namespace}/pods": {
23971      "delete": {
23972        "consumes": [
23973          "*/*"
23974        ],
23975        "description": "delete collection of Pod",
23976        "operationId": "deleteCoreV1CollectionNamespacedPod",
23977        "parameters": [
23978          {
23979            "in": "body",
23980            "name": "body",
23981            "schema": {
23982              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23983            }
23984          },
23985          {
23986            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23987            "in": "query",
23988            "name": "continue",
23989            "type": "string",
23990            "uniqueItems": true
23991          },
23992          {
23993            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23994            "in": "query",
23995            "name": "dryRun",
23996            "type": "string",
23997            "uniqueItems": true
23998          },
23999          {
24000            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
24001            "in": "query",
24002            "name": "fieldSelector",
24003            "type": "string",
24004            "uniqueItems": true
24005          },
24006          {
24007            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
24008            "in": "query",
24009            "name": "gracePeriodSeconds",
24010            "type": "integer",
24011            "uniqueItems": true
24012          },
24013          {
24014            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
24015            "in": "query",
24016            "name": "labelSelector",
24017            "type": "string",
24018            "uniqueItems": true
24019          },
24020          {
24021            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
24022            "in": "query",
24023            "name": "limit",
24024            "type": "integer",
24025            "uniqueItems": true
24026          },
24027          {
24028            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
24029            "in": "query",
24030            "name": "orphanDependents",
24031            "type": "boolean",
24032            "uniqueItems": true
24033          },
24034          {
24035            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
24036            "in": "query",
24037            "name": "propagationPolicy",
24038            "type": "string",
24039            "uniqueItems": true
24040          },
24041          {
24042            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24043            "in": "query",
24044            "name": "resourceVersion",
24045            "type": "string",
24046            "uniqueItems": true
24047          },
24048          {
24049            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24050            "in": "query",
24051            "name": "resourceVersionMatch",
24052            "type": "string",
24053            "uniqueItems": true
24054          },
24055          {
24056            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
24057            "in": "query",
24058            "name": "timeoutSeconds",
24059            "type": "integer",
24060            "uniqueItems": true
24061          }
24062        ],
24063        "produces": [
24064          "application/json",
24065          "application/yaml",
24066          "application/vnd.kubernetes.protobuf"
24067        ],
24068        "responses": {
24069          "200": {
24070            "description": "OK",
24071            "schema": {
24072              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24073            }
24074          },
24075          "401": {
24076            "description": "Unauthorized"
24077          }
24078        },
24079        "schemes": [
24080          "https"
24081        ],
24082        "tags": [
24083          "core_v1"
24084        ],
24085        "x-kubernetes-action": "deletecollection",
24086        "x-kubernetes-group-version-kind": {
24087          "group": "",
24088          "kind": "Pod",
24089          "version": "v1"
24090        }
24091      },
24092      "get": {
24093        "consumes": [
24094          "*/*"
24095        ],
24096        "description": "list or watch objects of kind Pod",
24097        "operationId": "listCoreV1NamespacedPod",
24098        "parameters": [
24099          {
24100            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
24101            "in": "query",
24102            "name": "allowWatchBookmarks",
24103            "type": "boolean",
24104            "uniqueItems": true
24105          },
24106          {
24107            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
24108            "in": "query",
24109            "name": "continue",
24110            "type": "string",
24111            "uniqueItems": true
24112          },
24113          {
24114            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
24115            "in": "query",
24116            "name": "fieldSelector",
24117            "type": "string",
24118            "uniqueItems": true
24119          },
24120          {
24121            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
24122            "in": "query",
24123            "name": "labelSelector",
24124            "type": "string",
24125            "uniqueItems": true
24126          },
24127          {
24128            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
24129            "in": "query",
24130            "name": "limit",
24131            "type": "integer",
24132            "uniqueItems": true
24133          },
24134          {
24135            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24136            "in": "query",
24137            "name": "resourceVersion",
24138            "type": "string",
24139            "uniqueItems": true
24140          },
24141          {
24142            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24143            "in": "query",
24144            "name": "resourceVersionMatch",
24145            "type": "string",
24146            "uniqueItems": true
24147          },
24148          {
24149            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
24150            "in": "query",
24151            "name": "timeoutSeconds",
24152            "type": "integer",
24153            "uniqueItems": true
24154          },
24155          {
24156            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
24157            "in": "query",
24158            "name": "watch",
24159            "type": "boolean",
24160            "uniqueItems": true
24161          }
24162        ],
24163        "produces": [
24164          "application/json",
24165          "application/yaml",
24166          "application/vnd.kubernetes.protobuf",
24167          "application/json;stream=watch",
24168          "application/vnd.kubernetes.protobuf;stream=watch"
24169        ],
24170        "responses": {
24171          "200": {
24172            "description": "OK",
24173            "schema": {
24174              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
24175            }
24176          },
24177          "401": {
24178            "description": "Unauthorized"
24179          }
24180        },
24181        "schemes": [
24182          "https"
24183        ],
24184        "tags": [
24185          "core_v1"
24186        ],
24187        "x-kubernetes-action": "list",
24188        "x-kubernetes-group-version-kind": {
24189          "group": "",
24190          "kind": "Pod",
24191          "version": "v1"
24192        }
24193      },
24194      "parameters": [
24195        {
24196          "description": "object name and auth scope, such as for teams and projects",
24197          "in": "path",
24198          "name": "namespace",
24199          "required": true,
24200          "type": "string",
24201          "uniqueItems": true
24202        },
24203        {
24204          "description": "If 'true', then the output is pretty printed.",
24205          "in": "query",
24206          "name": "pretty",
24207          "type": "string",
24208          "uniqueItems": true
24209        }
24210      ],
24211      "post": {
24212        "consumes": [
24213          "*/*"
24214        ],
24215        "description": "create a Pod",
24216        "operationId": "createCoreV1NamespacedPod",
24217        "parameters": [
24218          {
24219            "in": "body",
24220            "name": "body",
24221            "required": true,
24222            "schema": {
24223              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24224            }
24225          },
24226          {
24227            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24228            "in": "query",
24229            "name": "dryRun",
24230            "type": "string",
24231            "uniqueItems": true
24232          },
24233          {
24234            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24235            "in": "query",
24236            "name": "fieldManager",
24237            "type": "string",
24238            "uniqueItems": true
24239          }
24240        ],
24241        "produces": [
24242          "application/json",
24243          "application/yaml",
24244          "application/vnd.kubernetes.protobuf"
24245        ],
24246        "responses": {
24247          "200": {
24248            "description": "OK",
24249            "schema": {
24250              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24251            }
24252          },
24253          "201": {
24254            "description": "Created",
24255            "schema": {
24256              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24257            }
24258          },
24259          "202": {
24260            "description": "Accepted",
24261            "schema": {
24262              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24263            }
24264          },
24265          "401": {
24266            "description": "Unauthorized"
24267          }
24268        },
24269        "schemes": [
24270          "https"
24271        ],
24272        "tags": [
24273          "core_v1"
24274        ],
24275        "x-kubernetes-action": "post",
24276        "x-kubernetes-group-version-kind": {
24277          "group": "",
24278          "kind": "Pod",
24279          "version": "v1"
24280        }
24281      }
24282    },
24283    "/api/v1/namespaces/{namespace}/pods/{name}": {
24284      "delete": {
24285        "consumes": [
24286          "*/*"
24287        ],
24288        "description": "delete a Pod",
24289        "operationId": "deleteCoreV1NamespacedPod",
24290        "parameters": [
24291          {
24292            "in": "body",
24293            "name": "body",
24294            "schema": {
24295              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
24296            }
24297          },
24298          {
24299            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24300            "in": "query",
24301            "name": "dryRun",
24302            "type": "string",
24303            "uniqueItems": true
24304          },
24305          {
24306            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
24307            "in": "query",
24308            "name": "gracePeriodSeconds",
24309            "type": "integer",
24310            "uniqueItems": true
24311          },
24312          {
24313            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
24314            "in": "query",
24315            "name": "orphanDependents",
24316            "type": "boolean",
24317            "uniqueItems": true
24318          },
24319          {
24320            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
24321            "in": "query",
24322            "name": "propagationPolicy",
24323            "type": "string",
24324            "uniqueItems": true
24325          }
24326        ],
24327        "produces": [
24328          "application/json",
24329          "application/yaml",
24330          "application/vnd.kubernetes.protobuf"
24331        ],
24332        "responses": {
24333          "200": {
24334            "description": "OK",
24335            "schema": {
24336              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24337            }
24338          },
24339          "202": {
24340            "description": "Accepted",
24341            "schema": {
24342              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24343            }
24344          },
24345          "401": {
24346            "description": "Unauthorized"
24347          }
24348        },
24349        "schemes": [
24350          "https"
24351        ],
24352        "tags": [
24353          "core_v1"
24354        ],
24355        "x-kubernetes-action": "delete",
24356        "x-kubernetes-group-version-kind": {
24357          "group": "",
24358          "kind": "Pod",
24359          "version": "v1"
24360        }
24361      },
24362      "get": {
24363        "consumes": [
24364          "*/*"
24365        ],
24366        "description": "read the specified Pod",
24367        "operationId": "readCoreV1NamespacedPod",
24368        "produces": [
24369          "application/json",
24370          "application/yaml",
24371          "application/vnd.kubernetes.protobuf"
24372        ],
24373        "responses": {
24374          "200": {
24375            "description": "OK",
24376            "schema": {
24377              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24378            }
24379          },
24380          "401": {
24381            "description": "Unauthorized"
24382          }
24383        },
24384        "schemes": [
24385          "https"
24386        ],
24387        "tags": [
24388          "core_v1"
24389        ],
24390        "x-kubernetes-action": "get",
24391        "x-kubernetes-group-version-kind": {
24392          "group": "",
24393          "kind": "Pod",
24394          "version": "v1"
24395        }
24396      },
24397      "parameters": [
24398        {
24399          "description": "name of the Pod",
24400          "in": "path",
24401          "name": "name",
24402          "required": true,
24403          "type": "string",
24404          "uniqueItems": true
24405        },
24406        {
24407          "description": "object name and auth scope, such as for teams and projects",
24408          "in": "path",
24409          "name": "namespace",
24410          "required": true,
24411          "type": "string",
24412          "uniqueItems": true
24413        },
24414        {
24415          "description": "If 'true', then the output is pretty printed.",
24416          "in": "query",
24417          "name": "pretty",
24418          "type": "string",
24419          "uniqueItems": true
24420        }
24421      ],
24422      "patch": {
24423        "consumes": [
24424          "application/json-patch+json",
24425          "application/merge-patch+json",
24426          "application/strategic-merge-patch+json",
24427          "application/apply-patch+yaml"
24428        ],
24429        "description": "partially update the specified Pod",
24430        "operationId": "patchCoreV1NamespacedPod",
24431        "parameters": [
24432          {
24433            "in": "body",
24434            "name": "body",
24435            "required": true,
24436            "schema": {
24437              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24438            }
24439          },
24440          {
24441            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24442            "in": "query",
24443            "name": "dryRun",
24444            "type": "string",
24445            "uniqueItems": true
24446          },
24447          {
24448            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
24449            "in": "query",
24450            "name": "fieldManager",
24451            "type": "string",
24452            "uniqueItems": true
24453          },
24454          {
24455            "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.",
24456            "in": "query",
24457            "name": "force",
24458            "type": "boolean",
24459            "uniqueItems": true
24460          }
24461        ],
24462        "produces": [
24463          "application/json",
24464          "application/yaml",
24465          "application/vnd.kubernetes.protobuf"
24466        ],
24467        "responses": {
24468          "200": {
24469            "description": "OK",
24470            "schema": {
24471              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24472            }
24473          },
24474          "401": {
24475            "description": "Unauthorized"
24476          }
24477        },
24478        "schemes": [
24479          "https"
24480        ],
24481        "tags": [
24482          "core_v1"
24483        ],
24484        "x-kubernetes-action": "patch",
24485        "x-kubernetes-group-version-kind": {
24486          "group": "",
24487          "kind": "Pod",
24488          "version": "v1"
24489        }
24490      },
24491      "put": {
24492        "consumes": [
24493          "*/*"
24494        ],
24495        "description": "replace the specified Pod",
24496        "operationId": "replaceCoreV1NamespacedPod",
24497        "parameters": [
24498          {
24499            "in": "body",
24500            "name": "body",
24501            "required": true,
24502            "schema": {
24503              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24504            }
24505          },
24506          {
24507            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24508            "in": "query",
24509            "name": "dryRun",
24510            "type": "string",
24511            "uniqueItems": true
24512          },
24513          {
24514            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24515            "in": "query",
24516            "name": "fieldManager",
24517            "type": "string",
24518            "uniqueItems": true
24519          }
24520        ],
24521        "produces": [
24522          "application/json",
24523          "application/yaml",
24524          "application/vnd.kubernetes.protobuf"
24525        ],
24526        "responses": {
24527          "200": {
24528            "description": "OK",
24529            "schema": {
24530              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24531            }
24532          },
24533          "201": {
24534            "description": "Created",
24535            "schema": {
24536              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24537            }
24538          },
24539          "401": {
24540            "description": "Unauthorized"
24541          }
24542        },
24543        "schemes": [
24544          "https"
24545        ],
24546        "tags": [
24547          "core_v1"
24548        ],
24549        "x-kubernetes-action": "put",
24550        "x-kubernetes-group-version-kind": {
24551          "group": "",
24552          "kind": "Pod",
24553          "version": "v1"
24554        }
24555      }
24556    },
24557    "/api/v1/namespaces/{namespace}/pods/{name}/attach": {
24558      "get": {
24559        "consumes": [
24560          "*/*"
24561        ],
24562        "description": "connect GET requests to attach of Pod",
24563        "operationId": "connectCoreV1GetNamespacedPodAttach",
24564        "produces": [
24565          "*/*"
24566        ],
24567        "responses": {
24568          "200": {
24569            "description": "OK",
24570            "schema": {
24571              "type": "string"
24572            }
24573          },
24574          "401": {
24575            "description": "Unauthorized"
24576          }
24577        },
24578        "schemes": [
24579          "https"
24580        ],
24581        "tags": [
24582          "core_v1"
24583        ],
24584        "x-kubernetes-action": "connect",
24585        "x-kubernetes-group-version-kind": {
24586          "group": "",
24587          "kind": "PodAttachOptions",
24588          "version": "v1"
24589        }
24590      },
24591      "parameters": [
24592        {
24593          "description": "The container in which to execute the command. Defaults to only container if there is only one container in the pod.",
24594          "in": "query",
24595          "name": "container",
24596          "type": "string",
24597          "uniqueItems": true
24598        },
24599        {
24600          "description": "name of the PodAttachOptions",
24601          "in": "path",
24602          "name": "name",
24603          "required": true,
24604          "type": "string",
24605          "uniqueItems": true
24606        },
24607        {
24608          "description": "object name and auth scope, such as for teams and projects",
24609          "in": "path",
24610          "name": "namespace",
24611          "required": true,
24612          "type": "string",
24613          "uniqueItems": true
24614        },
24615        {
24616          "description": "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.",
24617          "in": "query",
24618          "name": "stderr",
24619          "type": "boolean",
24620          "uniqueItems": true
24621        },
24622        {
24623          "description": "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.",
24624          "in": "query",
24625          "name": "stdin",
24626          "type": "boolean",
24627          "uniqueItems": true
24628        },
24629        {
24630          "description": "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.",
24631          "in": "query",
24632          "name": "stdout",
24633          "type": "boolean",
24634          "uniqueItems": true
24635        },
24636        {
24637          "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.",
24638          "in": "query",
24639          "name": "tty",
24640          "type": "boolean",
24641          "uniqueItems": true
24642        }
24643      ],
24644      "post": {
24645        "consumes": [
24646          "*/*"
24647        ],
24648        "description": "connect POST requests to attach of Pod",
24649        "operationId": "connectCoreV1PostNamespacedPodAttach",
24650        "produces": [
24651          "*/*"
24652        ],
24653        "responses": {
24654          "200": {
24655            "description": "OK",
24656            "schema": {
24657              "type": "string"
24658            }
24659          },
24660          "401": {
24661            "description": "Unauthorized"
24662          }
24663        },
24664        "schemes": [
24665          "https"
24666        ],
24667        "tags": [
24668          "core_v1"
24669        ],
24670        "x-kubernetes-action": "connect",
24671        "x-kubernetes-group-version-kind": {
24672          "group": "",
24673          "kind": "PodAttachOptions",
24674          "version": "v1"
24675        }
24676      }
24677    },
24678    "/api/v1/namespaces/{namespace}/pods/{name}/binding": {
24679      "parameters": [
24680        {
24681          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24682          "in": "query",
24683          "name": "dryRun",
24684          "type": "string",
24685          "uniqueItems": true
24686        },
24687        {
24688          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24689          "in": "query",
24690          "name": "fieldManager",
24691          "type": "string",
24692          "uniqueItems": true
24693        },
24694        {
24695          "description": "name of the Binding",
24696          "in": "path",
24697          "name": "name",
24698          "required": true,
24699          "type": "string",
24700          "uniqueItems": true
24701        },
24702        {
24703          "description": "object name and auth scope, such as for teams and projects",
24704          "in": "path",
24705          "name": "namespace",
24706          "required": true,
24707          "type": "string",
24708          "uniqueItems": true
24709        },
24710        {
24711          "description": "If 'true', then the output is pretty printed.",
24712          "in": "query",
24713          "name": "pretty",
24714          "type": "string",
24715          "uniqueItems": true
24716        }
24717      ],
24718      "post": {
24719        "consumes": [
24720          "*/*"
24721        ],
24722        "description": "create binding of a Pod",
24723        "operationId": "createCoreV1NamespacedPodBinding",
24724        "parameters": [
24725          {
24726            "in": "body",
24727            "name": "body",
24728            "required": true,
24729            "schema": {
24730              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24731            }
24732          }
24733        ],
24734        "produces": [
24735          "application/json",
24736          "application/yaml",
24737          "application/vnd.kubernetes.protobuf"
24738        ],
24739        "responses": {
24740          "200": {
24741            "description": "OK",
24742            "schema": {
24743              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24744            }
24745          },
24746          "201": {
24747            "description": "Created",
24748            "schema": {
24749              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24750            }
24751          },
24752          "202": {
24753            "description": "Accepted",
24754            "schema": {
24755              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24756            }
24757          },
24758          "401": {
24759            "description": "Unauthorized"
24760          }
24761        },
24762        "schemes": [
24763          "https"
24764        ],
24765        "tags": [
24766          "core_v1"
24767        ],
24768        "x-kubernetes-action": "post",
24769        "x-kubernetes-group-version-kind": {
24770          "group": "",
24771          "kind": "Binding",
24772          "version": "v1"
24773        }
24774      }
24775    },
24776    "/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers": {
24777      "get": {
24778        "consumes": [
24779          "*/*"
24780        ],
24781        "description": "read ephemeralcontainers of the specified Pod",
24782        "operationId": "readCoreV1NamespacedPodEphemeralcontainers",
24783        "produces": [
24784          "application/json",
24785          "application/yaml",
24786          "application/vnd.kubernetes.protobuf"
24787        ],
24788        "responses": {
24789          "200": {
24790            "description": "OK",
24791            "schema": {
24792              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24793            }
24794          },
24795          "401": {
24796            "description": "Unauthorized"
24797          }
24798        },
24799        "schemes": [
24800          "https"
24801        ],
24802        "tags": [
24803          "core_v1"
24804        ],
24805        "x-kubernetes-action": "get",
24806        "x-kubernetes-group-version-kind": {
24807          "group": "",
24808          "kind": "EphemeralContainers",
24809          "version": "v1"
24810        }
24811      },
24812      "parameters": [
24813        {
24814          "description": "name of the EphemeralContainers",
24815          "in": "path",
24816          "name": "name",
24817          "required": true,
24818          "type": "string",
24819          "uniqueItems": true
24820        },
24821        {
24822          "description": "object name and auth scope, such as for teams and projects",
24823          "in": "path",
24824          "name": "namespace",
24825          "required": true,
24826          "type": "string",
24827          "uniqueItems": true
24828        },
24829        {
24830          "description": "If 'true', then the output is pretty printed.",
24831          "in": "query",
24832          "name": "pretty",
24833          "type": "string",
24834          "uniqueItems": true
24835        }
24836      ],
24837      "patch": {
24838        "consumes": [
24839          "application/json-patch+json",
24840          "application/merge-patch+json",
24841          "application/strategic-merge-patch+json",
24842          "application/apply-patch+yaml"
24843        ],
24844        "description": "partially update ephemeralcontainers of the specified Pod",
24845        "operationId": "patchCoreV1NamespacedPodEphemeralcontainers",
24846        "parameters": [
24847          {
24848            "in": "body",
24849            "name": "body",
24850            "required": true,
24851            "schema": {
24852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24853            }
24854          },
24855          {
24856            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24857            "in": "query",
24858            "name": "dryRun",
24859            "type": "string",
24860            "uniqueItems": true
24861          },
24862          {
24863            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
24864            "in": "query",
24865            "name": "fieldManager",
24866            "type": "string",
24867            "uniqueItems": true
24868          },
24869          {
24870            "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.",
24871            "in": "query",
24872            "name": "force",
24873            "type": "boolean",
24874            "uniqueItems": true
24875          }
24876        ],
24877        "produces": [
24878          "application/json",
24879          "application/yaml",
24880          "application/vnd.kubernetes.protobuf"
24881        ],
24882        "responses": {
24883          "200": {
24884            "description": "OK",
24885            "schema": {
24886              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24887            }
24888          },
24889          "401": {
24890            "description": "Unauthorized"
24891          }
24892        },
24893        "schemes": [
24894          "https"
24895        ],
24896        "tags": [
24897          "core_v1"
24898        ],
24899        "x-kubernetes-action": "patch",
24900        "x-kubernetes-group-version-kind": {
24901          "group": "",
24902          "kind": "EphemeralContainers",
24903          "version": "v1"
24904        }
24905      },
24906      "put": {
24907        "consumes": [
24908          "*/*"
24909        ],
24910        "description": "replace ephemeralcontainers of the specified Pod",
24911        "operationId": "replaceCoreV1NamespacedPodEphemeralcontainers",
24912        "parameters": [
24913          {
24914            "in": "body",
24915            "name": "body",
24916            "required": true,
24917            "schema": {
24918              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24919            }
24920          },
24921          {
24922            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24923            "in": "query",
24924            "name": "dryRun",
24925            "type": "string",
24926            "uniqueItems": true
24927          },
24928          {
24929            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24930            "in": "query",
24931            "name": "fieldManager",
24932            "type": "string",
24933            "uniqueItems": true
24934          }
24935        ],
24936        "produces": [
24937          "application/json",
24938          "application/yaml",
24939          "application/vnd.kubernetes.protobuf"
24940        ],
24941        "responses": {
24942          "200": {
24943            "description": "OK",
24944            "schema": {
24945              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24946            }
24947          },
24948          "201": {
24949            "description": "Created",
24950            "schema": {
24951              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24952            }
24953          },
24954          "401": {
24955            "description": "Unauthorized"
24956          }
24957        },
24958        "schemes": [
24959          "https"
24960        ],
24961        "tags": [
24962          "core_v1"
24963        ],
24964        "x-kubernetes-action": "put",
24965        "x-kubernetes-group-version-kind": {
24966          "group": "",
24967          "kind": "EphemeralContainers",
24968          "version": "v1"
24969        }
24970      }
24971    },
24972    "/api/v1/namespaces/{namespace}/pods/{name}/eviction": {
24973      "parameters": [
24974        {
24975          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24976          "in": "query",
24977          "name": "dryRun",
24978          "type": "string",
24979          "uniqueItems": true
24980        },
24981        {
24982          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24983          "in": "query",
24984          "name": "fieldManager",
24985          "type": "string",
24986          "uniqueItems": true
24987        },
24988        {
24989          "description": "name of the Eviction",
24990          "in": "path",
24991          "name": "name",
24992          "required": true,
24993          "type": "string",
24994          "uniqueItems": true
24995        },
24996        {
24997          "description": "object name and auth scope, such as for teams and projects",
24998          "in": "path",
24999          "name": "namespace",
25000          "required": true,
25001          "type": "string",
25002          "uniqueItems": true
25003        },
25004        {
25005          "description": "If 'true', then the output is pretty printed.",
25006          "in": "query",
25007          "name": "pretty",
25008          "type": "string",
25009          "uniqueItems": true
25010        }
25011      ],
25012      "post": {
25013        "consumes": [
25014          "*/*"
25015        ],
25016        "description": "create eviction of a Pod",
25017        "operationId": "createCoreV1NamespacedPodEviction",
25018        "parameters": [
25019          {
25020            "in": "body",
25021            "name": "body",
25022            "required": true,
25023            "schema": {
25024              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25025            }
25026          }
25027        ],
25028        "produces": [
25029          "application/json",
25030          "application/yaml",
25031          "application/vnd.kubernetes.protobuf"
25032        ],
25033        "responses": {
25034          "200": {
25035            "description": "OK",
25036            "schema": {
25037              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25038            }
25039          },
25040          "201": {
25041            "description": "Created",
25042            "schema": {
25043              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25044            }
25045          },
25046          "202": {
25047            "description": "Accepted",
25048            "schema": {
25049              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25050            }
25051          },
25052          "401": {
25053            "description": "Unauthorized"
25054          }
25055        },
25056        "schemes": [
25057          "https"
25058        ],
25059        "tags": [
25060          "core_v1"
25061        ],
25062        "x-kubernetes-action": "post",
25063        "x-kubernetes-group-version-kind": {
25064          "group": "policy",
25065          "kind": "Eviction",
25066          "version": "v1beta1"
25067        }
25068      }
25069    },
25070    "/api/v1/namespaces/{namespace}/pods/{name}/exec": {
25071      "get": {
25072        "consumes": [
25073          "*/*"
25074        ],
25075        "description": "connect GET requests to exec of Pod",
25076        "operationId": "connectCoreV1GetNamespacedPodExec",
25077        "produces": [
25078          "*/*"
25079        ],
25080        "responses": {
25081          "200": {
25082            "description": "OK",
25083            "schema": {
25084              "type": "string"
25085            }
25086          },
25087          "401": {
25088            "description": "Unauthorized"
25089          }
25090        },
25091        "schemes": [
25092          "https"
25093        ],
25094        "tags": [
25095          "core_v1"
25096        ],
25097        "x-kubernetes-action": "connect",
25098        "x-kubernetes-group-version-kind": {
25099          "group": "",
25100          "kind": "PodExecOptions",
25101          "version": "v1"
25102        }
25103      },
25104      "parameters": [
25105        {
25106          "description": "Command is the remote command to execute. argv array. Not executed within a shell.",
25107          "in": "query",
25108          "name": "command",
25109          "type": "string",
25110          "uniqueItems": true
25111        },
25112        {
25113          "description": "Container in which to execute the command. Defaults to only container if there is only one container in the pod.",
25114          "in": "query",
25115          "name": "container",
25116          "type": "string",
25117          "uniqueItems": true
25118        },
25119        {
25120          "description": "name of the PodExecOptions",
25121          "in": "path",
25122          "name": "name",
25123          "required": true,
25124          "type": "string",
25125          "uniqueItems": true
25126        },
25127        {
25128          "description": "object name and auth scope, such as for teams and projects",
25129          "in": "path",
25130          "name": "namespace",
25131          "required": true,
25132          "type": "string",
25133          "uniqueItems": true
25134        },
25135        {
25136          "description": "Redirect the standard error stream of the pod for this call. Defaults to true.",
25137          "in": "query",
25138          "name": "stderr",
25139          "type": "boolean",
25140          "uniqueItems": true
25141        },
25142        {
25143          "description": "Redirect the standard input stream of the pod for this call. Defaults to false.",
25144          "in": "query",
25145          "name": "stdin",
25146          "type": "boolean",
25147          "uniqueItems": true
25148        },
25149        {
25150          "description": "Redirect the standard output stream of the pod for this call. Defaults to true.",
25151          "in": "query",
25152          "name": "stdout",
25153          "type": "boolean",
25154          "uniqueItems": true
25155        },
25156        {
25157          "description": "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.",
25158          "in": "query",
25159          "name": "tty",
25160          "type": "boolean",
25161          "uniqueItems": true
25162        }
25163      ],
25164      "post": {
25165        "consumes": [
25166          "*/*"
25167        ],
25168        "description": "connect POST requests to exec of Pod",
25169        "operationId": "connectCoreV1PostNamespacedPodExec",
25170        "produces": [
25171          "*/*"
25172        ],
25173        "responses": {
25174          "200": {
25175            "description": "OK",
25176            "schema": {
25177              "type": "string"
25178            }
25179          },
25180          "401": {
25181            "description": "Unauthorized"
25182          }
25183        },
25184        "schemes": [
25185          "https"
25186        ],
25187        "tags": [
25188          "core_v1"
25189        ],
25190        "x-kubernetes-action": "connect",
25191        "x-kubernetes-group-version-kind": {
25192          "group": "",
25193          "kind": "PodExecOptions",
25194          "version": "v1"
25195        }
25196      }
25197    },
25198    "/api/v1/namespaces/{namespace}/pods/{name}/log": {
25199      "get": {
25200        "consumes": [
25201          "*/*"
25202        ],
25203        "description": "read log of the specified Pod",
25204        "operationId": "readCoreV1NamespacedPodLog",
25205        "produces": [
25206          "text/plain",
25207          "application/json",
25208          "application/yaml",
25209          "application/vnd.kubernetes.protobuf"
25210        ],
25211        "responses": {
25212          "200": {
25213            "description": "OK",
25214            "schema": {
25215              "type": "string"
25216            }
25217          },
25218          "401": {
25219            "description": "Unauthorized"
25220          }
25221        },
25222        "schemes": [
25223          "https"
25224        ],
25225        "tags": [
25226          "core_v1"
25227        ],
25228        "x-kubernetes-action": "get",
25229        "x-kubernetes-group-version-kind": {
25230          "group": "",
25231          "kind": "Pod",
25232          "version": "v1"
25233        }
25234      },
25235      "parameters": [
25236        {
25237          "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.",
25238          "in": "query",
25239          "name": "container",
25240          "type": "string",
25241          "uniqueItems": true
25242        },
25243        {
25244          "description": "Follow the log stream of the pod. Defaults to false.",
25245          "in": "query",
25246          "name": "follow",
25247          "type": "boolean",
25248          "uniqueItems": true
25249        },
25250        {
25251          "description": "insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to.  This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet.  If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet).",
25252          "in": "query",
25253          "name": "insecureSkipTLSVerifyBackend",
25254          "type": "boolean",
25255          "uniqueItems": true
25256        },
25257        {
25258          "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.",
25259          "in": "query",
25260          "name": "limitBytes",
25261          "type": "integer",
25262          "uniqueItems": true
25263        },
25264        {
25265          "description": "name of the Pod",
25266          "in": "path",
25267          "name": "name",
25268          "required": true,
25269          "type": "string",
25270          "uniqueItems": true
25271        },
25272        {
25273          "description": "object name and auth scope, such as for teams and projects",
25274          "in": "path",
25275          "name": "namespace",
25276          "required": true,
25277          "type": "string",
25278          "uniqueItems": true
25279        },
25280        {
25281          "description": "If 'true', then the output is pretty printed.",
25282          "in": "query",
25283          "name": "pretty",
25284          "type": "string",
25285          "uniqueItems": true
25286        },
25287        {
25288          "description": "Return previous terminated container logs. Defaults to false.",
25289          "in": "query",
25290          "name": "previous",
25291          "type": "boolean",
25292          "uniqueItems": true
25293        },
25294        {
25295          "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.",
25296          "in": "query",
25297          "name": "sinceSeconds",
25298          "type": "integer",
25299          "uniqueItems": true
25300        },
25301        {
25302          "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",
25303          "in": "query",
25304          "name": "tailLines",
25305          "type": "integer",
25306          "uniqueItems": true
25307        },
25308        {
25309          "description": "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
25310          "in": "query",
25311          "name": "timestamps",
25312          "type": "boolean",
25313          "uniqueItems": true
25314        }
25315      ]
25316    },
25317    "/api/v1/namespaces/{namespace}/pods/{name}/portforward": {
25318      "get": {
25319        "consumes": [
25320          "*/*"
25321        ],
25322        "description": "connect GET requests to portforward of Pod",
25323        "operationId": "connectCoreV1GetNamespacedPodPortforward",
25324        "produces": [
25325          "*/*"
25326        ],
25327        "responses": {
25328          "200": {
25329            "description": "OK",
25330            "schema": {
25331              "type": "string"
25332            }
25333          },
25334          "401": {
25335            "description": "Unauthorized"
25336          }
25337        },
25338        "schemes": [
25339          "https"
25340        ],
25341        "tags": [
25342          "core_v1"
25343        ],
25344        "x-kubernetes-action": "connect",
25345        "x-kubernetes-group-version-kind": {
25346          "group": "",
25347          "kind": "PodPortForwardOptions",
25348          "version": "v1"
25349        }
25350      },
25351      "parameters": [
25352        {
25353          "description": "name of the PodPortForwardOptions",
25354          "in": "path",
25355          "name": "name",
25356          "required": true,
25357          "type": "string",
25358          "uniqueItems": true
25359        },
25360        {
25361          "description": "object name and auth scope, such as for teams and projects",
25362          "in": "path",
25363          "name": "namespace",
25364          "required": true,
25365          "type": "string",
25366          "uniqueItems": true
25367        },
25368        {
25369          "description": "List of ports to forward Required when using WebSockets",
25370          "in": "query",
25371          "name": "ports",
25372          "type": "integer",
25373          "uniqueItems": true
25374        }
25375      ],
25376      "post": {
25377        "consumes": [
25378          "*/*"
25379        ],
25380        "description": "connect POST requests to portforward of Pod",
25381        "operationId": "connectCoreV1PostNamespacedPodPortforward",
25382        "produces": [
25383          "*/*"
25384        ],
25385        "responses": {
25386          "200": {
25387            "description": "OK",
25388            "schema": {
25389              "type": "string"
25390            }
25391          },
25392          "401": {
25393            "description": "Unauthorized"
25394          }
25395        },
25396        "schemes": [
25397          "https"
25398        ],
25399        "tags": [
25400          "core_v1"
25401        ],
25402        "x-kubernetes-action": "connect",
25403        "x-kubernetes-group-version-kind": {
25404          "group": "",
25405          "kind": "PodPortForwardOptions",
25406          "version": "v1"
25407        }
25408      }
25409    },
25410    "/api/v1/namespaces/{namespace}/pods/{name}/proxy": {
25411      "delete": {
25412        "consumes": [
25413          "*/*"
25414        ],
25415        "description": "connect DELETE requests to proxy of Pod",
25416        "operationId": "connectCoreV1DeleteNamespacedPodProxy",
25417        "produces": [
25418          "*/*"
25419        ],
25420        "responses": {
25421          "200": {
25422            "description": "OK",
25423            "schema": {
25424              "type": "string"
25425            }
25426          },
25427          "401": {
25428            "description": "Unauthorized"
25429          }
25430        },
25431        "schemes": [
25432          "https"
25433        ],
25434        "tags": [
25435          "core_v1"
25436        ],
25437        "x-kubernetes-action": "connect",
25438        "x-kubernetes-group-version-kind": {
25439          "group": "",
25440          "kind": "PodProxyOptions",
25441          "version": "v1"
25442        }
25443      },
25444      "get": {
25445        "consumes": [
25446          "*/*"
25447        ],
25448        "description": "connect GET requests to proxy of Pod",
25449        "operationId": "connectCoreV1GetNamespacedPodProxy",
25450        "produces": [
25451          "*/*"
25452        ],
25453        "responses": {
25454          "200": {
25455            "description": "OK",
25456            "schema": {
25457              "type": "string"
25458            }
25459          },
25460          "401": {
25461            "description": "Unauthorized"
25462          }
25463        },
25464        "schemes": [
25465          "https"
25466        ],
25467        "tags": [
25468          "core_v1"
25469        ],
25470        "x-kubernetes-action": "connect",
25471        "x-kubernetes-group-version-kind": {
25472          "group": "",
25473          "kind": "PodProxyOptions",
25474          "version": "v1"
25475        }
25476      },
25477      "head": {
25478        "consumes": [
25479          "*/*"
25480        ],
25481        "description": "connect HEAD requests to proxy of Pod",
25482        "operationId": "connectCoreV1HeadNamespacedPodProxy",
25483        "produces": [
25484          "*/*"
25485        ],
25486        "responses": {
25487          "200": {
25488            "description": "OK",
25489            "schema": {
25490              "type": "string"
25491            }
25492          },
25493          "401": {
25494            "description": "Unauthorized"
25495          }
25496        },
25497        "schemes": [
25498          "https"
25499        ],
25500        "tags": [
25501          "core_v1"
25502        ],
25503        "x-kubernetes-action": "connect",
25504        "x-kubernetes-group-version-kind": {
25505          "group": "",
25506          "kind": "PodProxyOptions",
25507          "version": "v1"
25508        }
25509      },
25510      "options": {
25511        "consumes": [
25512          "*/*"
25513        ],
25514        "description": "connect OPTIONS requests to proxy of Pod",
25515        "operationId": "connectCoreV1OptionsNamespacedPodProxy",
25516        "produces": [
25517          "*/*"
25518        ],
25519        "responses": {
25520          "200": {
25521            "description": "OK",
25522            "schema": {
25523              "type": "string"
25524            }
25525          },
25526          "401": {
25527            "description": "Unauthorized"
25528          }
25529        },
25530        "schemes": [
25531          "https"
25532        ],
25533        "tags": [
25534          "core_v1"
25535        ],
25536        "x-kubernetes-action": "connect",
25537        "x-kubernetes-group-version-kind": {
25538          "group": "",
25539          "kind": "PodProxyOptions",
25540          "version": "v1"
25541        }
25542      },
25543      "parameters": [
25544        {
25545          "description": "name of the PodProxyOptions",
25546          "in": "path",
25547          "name": "name",
25548          "required": true,
25549          "type": "string",
25550          "uniqueItems": true
25551        },
25552        {
25553          "description": "object name and auth scope, such as for teams and projects",
25554          "in": "path",
25555          "name": "namespace",
25556          "required": true,
25557          "type": "string",
25558          "uniqueItems": true
25559        },
25560        {
25561          "description": "Path is the URL path to use for the current proxy request to pod.",
25562          "in": "query",
25563          "name": "path",
25564          "type": "string",
25565          "uniqueItems": true
25566        }
25567      ],
25568      "patch": {
25569        "consumes": [
25570          "*/*"
25571        ],
25572        "description": "connect PATCH requests to proxy of Pod",
25573        "operationId": "connectCoreV1PatchNamespacedPodProxy",
25574        "produces": [
25575          "*/*"
25576        ],
25577        "responses": {
25578          "200": {
25579            "description": "OK",
25580            "schema": {
25581              "type": "string"
25582            }
25583          },
25584          "401": {
25585            "description": "Unauthorized"
25586          }
25587        },
25588        "schemes": [
25589          "https"
25590        ],
25591        "tags": [
25592          "core_v1"
25593        ],
25594        "x-kubernetes-action": "connect",
25595        "x-kubernetes-group-version-kind": {
25596          "group": "",
25597          "kind": "PodProxyOptions",
25598          "version": "v1"
25599        }
25600      },
25601      "post": {
25602        "consumes": [
25603          "*/*"
25604        ],
25605        "description": "connect POST requests to proxy of Pod",
25606        "operationId": "connectCoreV1PostNamespacedPodProxy",
25607        "produces": [
25608          "*/*"
25609        ],
25610        "responses": {
25611          "200": {
25612            "description": "OK",
25613            "schema": {
25614              "type": "string"
25615            }
25616          },
25617          "401": {
25618            "description": "Unauthorized"
25619          }
25620        },
25621        "schemes": [
25622          "https"
25623        ],
25624        "tags": [
25625          "core_v1"
25626        ],
25627        "x-kubernetes-action": "connect",
25628        "x-kubernetes-group-version-kind": {
25629          "group": "",
25630          "kind": "PodProxyOptions",
25631          "version": "v1"
25632        }
25633      },
25634      "put": {
25635        "consumes": [
25636          "*/*"
25637        ],
25638        "description": "connect PUT requests to proxy of Pod",
25639        "operationId": "connectCoreV1PutNamespacedPodProxy",
25640        "produces": [
25641          "*/*"
25642        ],
25643        "responses": {
25644          "200": {
25645            "description": "OK",
25646            "schema": {
25647              "type": "string"
25648            }
25649          },
25650          "401": {
25651            "description": "Unauthorized"
25652          }
25653        },
25654        "schemes": [
25655          "https"
25656        ],
25657        "tags": [
25658          "core_v1"
25659        ],
25660        "x-kubernetes-action": "connect",
25661        "x-kubernetes-group-version-kind": {
25662          "group": "",
25663          "kind": "PodProxyOptions",
25664          "version": "v1"
25665        }
25666      }
25667    },
25668    "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": {
25669      "delete": {
25670        "consumes": [
25671          "*/*"
25672        ],
25673        "description": "connect DELETE requests to proxy of Pod",
25674        "operationId": "connectCoreV1DeleteNamespacedPodProxyWithPath",
25675        "produces": [
25676          "*/*"
25677        ],
25678        "responses": {
25679          "200": {
25680            "description": "OK",
25681            "schema": {
25682              "type": "string"
25683            }
25684          },
25685          "401": {
25686            "description": "Unauthorized"
25687          }
25688        },
25689        "schemes": [
25690          "https"
25691        ],
25692        "tags": [
25693          "core_v1"
25694        ],
25695        "x-kubernetes-action": "connect",
25696        "x-kubernetes-group-version-kind": {
25697          "group": "",
25698          "kind": "PodProxyOptions",
25699          "version": "v1"
25700        }
25701      },
25702      "get": {
25703        "consumes": [
25704          "*/*"
25705        ],
25706        "description": "connect GET requests to proxy of Pod",
25707        "operationId": "connectCoreV1GetNamespacedPodProxyWithPath",
25708        "produces": [
25709          "*/*"
25710        ],
25711        "responses": {
25712          "200": {
25713            "description": "OK",
25714            "schema": {
25715              "type": "string"
25716            }
25717          },
25718          "401": {
25719            "description": "Unauthorized"
25720          }
25721        },
25722        "schemes": [
25723          "https"
25724        ],
25725        "tags": [
25726          "core_v1"
25727        ],
25728        "x-kubernetes-action": "connect",
25729        "x-kubernetes-group-version-kind": {
25730          "group": "",
25731          "kind": "PodProxyOptions",
25732          "version": "v1"
25733        }
25734      },
25735      "head": {
25736        "consumes": [
25737          "*/*"
25738        ],
25739        "description": "connect HEAD requests to proxy of Pod",
25740        "operationId": "connectCoreV1HeadNamespacedPodProxyWithPath",
25741        "produces": [
25742          "*/*"
25743        ],
25744        "responses": {
25745          "200": {
25746            "description": "OK",
25747            "schema": {
25748              "type": "string"
25749            }
25750          },
25751          "401": {
25752            "description": "Unauthorized"
25753          }
25754        },
25755        "schemes": [
25756          "https"
25757        ],
25758        "tags": [
25759          "core_v1"
25760        ],
25761        "x-kubernetes-action": "connect",
25762        "x-kubernetes-group-version-kind": {
25763          "group": "",
25764          "kind": "PodProxyOptions",
25765          "version": "v1"
25766        }
25767      },
25768      "options": {
25769        "consumes": [
25770          "*/*"
25771        ],
25772        "description": "connect OPTIONS requests to proxy of Pod",
25773        "operationId": "connectCoreV1OptionsNamespacedPodProxyWithPath",
25774        "produces": [
25775          "*/*"
25776        ],
25777        "responses": {
25778          "200": {
25779            "description": "OK",
25780            "schema": {
25781              "type": "string"
25782            }
25783          },
25784          "401": {
25785            "description": "Unauthorized"
25786          }
25787        },
25788        "schemes": [
25789          "https"
25790        ],
25791        "tags": [
25792          "core_v1"
25793        ],
25794        "x-kubernetes-action": "connect",
25795        "x-kubernetes-group-version-kind": {
25796          "group": "",
25797          "kind": "PodProxyOptions",
25798          "version": "v1"
25799        }
25800      },
25801      "parameters": [
25802        {
25803          "description": "name of the PodProxyOptions",
25804          "in": "path",
25805          "name": "name",
25806          "required": true,
25807          "type": "string",
25808          "uniqueItems": true
25809        },
25810        {
25811          "description": "object name and auth scope, such as for teams and projects",
25812          "in": "path",
25813          "name": "namespace",
25814          "required": true,
25815          "type": "string",
25816          "uniqueItems": true
25817        },
25818        {
25819          "description": "path to the resource",
25820          "in": "path",
25821          "name": "path",
25822          "required": true,
25823          "type": "string",
25824          "uniqueItems": true
25825        },
25826        {
25827          "description": "Path is the URL path to use for the current proxy request to pod.",
25828          "in": "query",
25829          "name": "path",
25830          "type": "string",
25831          "uniqueItems": true
25832        }
25833      ],
25834      "patch": {
25835        "consumes": [
25836          "*/*"
25837        ],
25838        "description": "connect PATCH requests to proxy of Pod",
25839        "operationId": "connectCoreV1PatchNamespacedPodProxyWithPath",
25840        "produces": [
25841          "*/*"
25842        ],
25843        "responses": {
25844          "200": {
25845            "description": "OK",
25846            "schema": {
25847              "type": "string"
25848            }
25849          },
25850          "401": {
25851            "description": "Unauthorized"
25852          }
25853        },
25854        "schemes": [
25855          "https"
25856        ],
25857        "tags": [
25858          "core_v1"
25859        ],
25860        "x-kubernetes-action": "connect",
25861        "x-kubernetes-group-version-kind": {
25862          "group": "",
25863          "kind": "PodProxyOptions",
25864          "version": "v1"
25865        }
25866      },
25867      "post": {
25868        "consumes": [
25869          "*/*"
25870        ],
25871        "description": "connect POST requests to proxy of Pod",
25872        "operationId": "connectCoreV1PostNamespacedPodProxyWithPath",
25873        "produces": [
25874          "*/*"
25875        ],
25876        "responses": {
25877          "200": {
25878            "description": "OK",
25879            "schema": {
25880              "type": "string"
25881            }
25882          },
25883          "401": {
25884            "description": "Unauthorized"
25885          }
25886        },
25887        "schemes": [
25888          "https"
25889        ],
25890        "tags": [
25891          "core_v1"
25892        ],
25893        "x-kubernetes-action": "connect",
25894        "x-kubernetes-group-version-kind": {
25895          "group": "",
25896          "kind": "PodProxyOptions",
25897          "version": "v1"
25898        }
25899      },
25900      "put": {
25901        "consumes": [
25902          "*/*"
25903        ],
25904        "description": "connect PUT requests to proxy of Pod",
25905        "operationId": "connectCoreV1PutNamespacedPodProxyWithPath",
25906        "produces": [
25907          "*/*"
25908        ],
25909        "responses": {
25910          "200": {
25911            "description": "OK",
25912            "schema": {
25913              "type": "string"
25914            }
25915          },
25916          "401": {
25917            "description": "Unauthorized"
25918          }
25919        },
25920        "schemes": [
25921          "https"
25922        ],
25923        "tags": [
25924          "core_v1"
25925        ],
25926        "x-kubernetes-action": "connect",
25927        "x-kubernetes-group-version-kind": {
25928          "group": "",
25929          "kind": "PodProxyOptions",
25930          "version": "v1"
25931        }
25932      }
25933    },
25934    "/api/v1/namespaces/{namespace}/pods/{name}/status": {
25935      "get": {
25936        "consumes": [
25937          "*/*"
25938        ],
25939        "description": "read status of the specified Pod",
25940        "operationId": "readCoreV1NamespacedPodStatus",
25941        "produces": [
25942          "application/json",
25943          "application/yaml",
25944          "application/vnd.kubernetes.protobuf"
25945        ],
25946        "responses": {
25947          "200": {
25948            "description": "OK",
25949            "schema": {
25950              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
25951            }
25952          },
25953          "401": {
25954            "description": "Unauthorized"
25955          }
25956        },
25957        "schemes": [
25958          "https"
25959        ],
25960        "tags": [
25961          "core_v1"
25962        ],
25963        "x-kubernetes-action": "get",
25964        "x-kubernetes-group-version-kind": {
25965          "group": "",
25966          "kind": "Pod",
25967          "version": "v1"
25968        }
25969      },
25970      "parameters": [
25971        {
25972          "description": "name of the Pod",
25973          "in": "path",
25974          "name": "name",
25975          "required": true,
25976          "type": "string",
25977          "uniqueItems": true
25978        },
25979        {
25980          "description": "object name and auth scope, such as for teams and projects",
25981          "in": "path",
25982          "name": "namespace",
25983          "required": true,
25984          "type": "string",
25985          "uniqueItems": true
25986        },
25987        {
25988          "description": "If 'true', then the output is pretty printed.",
25989          "in": "query",
25990          "name": "pretty",
25991          "type": "string",
25992          "uniqueItems": true
25993        }
25994      ],
25995      "patch": {
25996        "consumes": [
25997          "application/json-patch+json",
25998          "application/merge-patch+json",
25999          "application/strategic-merge-patch+json",
26000          "application/apply-patch+yaml"
26001        ],
26002        "description": "partially update status of the specified Pod",
26003        "operationId": "patchCoreV1NamespacedPodStatus",
26004        "parameters": [
26005          {
26006            "in": "body",
26007            "name": "body",
26008            "required": true,
26009            "schema": {
26010              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26011            }
26012          },
26013          {
26014            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26015            "in": "query",
26016            "name": "dryRun",
26017            "type": "string",
26018            "uniqueItems": true
26019          },
26020          {
26021            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
26022            "in": "query",
26023            "name": "fieldManager",
26024            "type": "string",
26025            "uniqueItems": true
26026          },
26027          {
26028            "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.",
26029            "in": "query",
26030            "name": "force",
26031            "type": "boolean",
26032            "uniqueItems": true
26033          }
26034        ],
26035        "produces": [
26036          "application/json",
26037          "application/yaml",
26038          "application/vnd.kubernetes.protobuf"
26039        ],
26040        "responses": {
26041          "200": {
26042            "description": "OK",
26043            "schema": {
26044              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26045            }
26046          },
26047          "401": {
26048            "description": "Unauthorized"
26049          }
26050        },
26051        "schemes": [
26052          "https"
26053        ],
26054        "tags": [
26055          "core_v1"
26056        ],
26057        "x-kubernetes-action": "patch",
26058        "x-kubernetes-group-version-kind": {
26059          "group": "",
26060          "kind": "Pod",
26061          "version": "v1"
26062        }
26063      },
26064      "put": {
26065        "consumes": [
26066          "*/*"
26067        ],
26068        "description": "replace status of the specified Pod",
26069        "operationId": "replaceCoreV1NamespacedPodStatus",
26070        "parameters": [
26071          {
26072            "in": "body",
26073            "name": "body",
26074            "required": true,
26075            "schema": {
26076              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26077            }
26078          },
26079          {
26080            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26081            "in": "query",
26082            "name": "dryRun",
26083            "type": "string",
26084            "uniqueItems": true
26085          },
26086          {
26087            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26088            "in": "query",
26089            "name": "fieldManager",
26090            "type": "string",
26091            "uniqueItems": true
26092          }
26093        ],
26094        "produces": [
26095          "application/json",
26096          "application/yaml",
26097          "application/vnd.kubernetes.protobuf"
26098        ],
26099        "responses": {
26100          "200": {
26101            "description": "OK",
26102            "schema": {
26103              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26104            }
26105          },
26106          "201": {
26107            "description": "Created",
26108            "schema": {
26109              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26110            }
26111          },
26112          "401": {
26113            "description": "Unauthorized"
26114          }
26115        },
26116        "schemes": [
26117          "https"
26118        ],
26119        "tags": [
26120          "core_v1"
26121        ],
26122        "x-kubernetes-action": "put",
26123        "x-kubernetes-group-version-kind": {
26124          "group": "",
26125          "kind": "Pod",
26126          "version": "v1"
26127        }
26128      }
26129    },
26130    "/api/v1/namespaces/{namespace}/podtemplates": {
26131      "delete": {
26132        "consumes": [
26133          "*/*"
26134        ],
26135        "description": "delete collection of PodTemplate",
26136        "operationId": "deleteCoreV1CollectionNamespacedPodTemplate",
26137        "parameters": [
26138          {
26139            "in": "body",
26140            "name": "body",
26141            "schema": {
26142              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26143            }
26144          },
26145          {
26146            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26147            "in": "query",
26148            "name": "continue",
26149            "type": "string",
26150            "uniqueItems": true
26151          },
26152          {
26153            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26154            "in": "query",
26155            "name": "dryRun",
26156            "type": "string",
26157            "uniqueItems": true
26158          },
26159          {
26160            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26161            "in": "query",
26162            "name": "fieldSelector",
26163            "type": "string",
26164            "uniqueItems": true
26165          },
26166          {
26167            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26168            "in": "query",
26169            "name": "gracePeriodSeconds",
26170            "type": "integer",
26171            "uniqueItems": true
26172          },
26173          {
26174            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26175            "in": "query",
26176            "name": "labelSelector",
26177            "type": "string",
26178            "uniqueItems": true
26179          },
26180          {
26181            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26182            "in": "query",
26183            "name": "limit",
26184            "type": "integer",
26185            "uniqueItems": true
26186          },
26187          {
26188            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26189            "in": "query",
26190            "name": "orphanDependents",
26191            "type": "boolean",
26192            "uniqueItems": true
26193          },
26194          {
26195            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26196            "in": "query",
26197            "name": "propagationPolicy",
26198            "type": "string",
26199            "uniqueItems": true
26200          },
26201          {
26202            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26203            "in": "query",
26204            "name": "resourceVersion",
26205            "type": "string",
26206            "uniqueItems": true
26207          },
26208          {
26209            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26210            "in": "query",
26211            "name": "resourceVersionMatch",
26212            "type": "string",
26213            "uniqueItems": true
26214          },
26215          {
26216            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26217            "in": "query",
26218            "name": "timeoutSeconds",
26219            "type": "integer",
26220            "uniqueItems": true
26221          }
26222        ],
26223        "produces": [
26224          "application/json",
26225          "application/yaml",
26226          "application/vnd.kubernetes.protobuf"
26227        ],
26228        "responses": {
26229          "200": {
26230            "description": "OK",
26231            "schema": {
26232              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26233            }
26234          },
26235          "401": {
26236            "description": "Unauthorized"
26237          }
26238        },
26239        "schemes": [
26240          "https"
26241        ],
26242        "tags": [
26243          "core_v1"
26244        ],
26245        "x-kubernetes-action": "deletecollection",
26246        "x-kubernetes-group-version-kind": {
26247          "group": "",
26248          "kind": "PodTemplate",
26249          "version": "v1"
26250        }
26251      },
26252      "get": {
26253        "consumes": [
26254          "*/*"
26255        ],
26256        "description": "list or watch objects of kind PodTemplate",
26257        "operationId": "listCoreV1NamespacedPodTemplate",
26258        "parameters": [
26259          {
26260            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
26261            "in": "query",
26262            "name": "allowWatchBookmarks",
26263            "type": "boolean",
26264            "uniqueItems": true
26265          },
26266          {
26267            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26268            "in": "query",
26269            "name": "continue",
26270            "type": "string",
26271            "uniqueItems": true
26272          },
26273          {
26274            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26275            "in": "query",
26276            "name": "fieldSelector",
26277            "type": "string",
26278            "uniqueItems": true
26279          },
26280          {
26281            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26282            "in": "query",
26283            "name": "labelSelector",
26284            "type": "string",
26285            "uniqueItems": true
26286          },
26287          {
26288            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26289            "in": "query",
26290            "name": "limit",
26291            "type": "integer",
26292            "uniqueItems": true
26293          },
26294          {
26295            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26296            "in": "query",
26297            "name": "resourceVersion",
26298            "type": "string",
26299            "uniqueItems": true
26300          },
26301          {
26302            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26303            "in": "query",
26304            "name": "resourceVersionMatch",
26305            "type": "string",
26306            "uniqueItems": true
26307          },
26308          {
26309            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26310            "in": "query",
26311            "name": "timeoutSeconds",
26312            "type": "integer",
26313            "uniqueItems": true
26314          },
26315          {
26316            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26317            "in": "query",
26318            "name": "watch",
26319            "type": "boolean",
26320            "uniqueItems": true
26321          }
26322        ],
26323        "produces": [
26324          "application/json",
26325          "application/yaml",
26326          "application/vnd.kubernetes.protobuf",
26327          "application/json;stream=watch",
26328          "application/vnd.kubernetes.protobuf;stream=watch"
26329        ],
26330        "responses": {
26331          "200": {
26332            "description": "OK",
26333            "schema": {
26334              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
26335            }
26336          },
26337          "401": {
26338            "description": "Unauthorized"
26339          }
26340        },
26341        "schemes": [
26342          "https"
26343        ],
26344        "tags": [
26345          "core_v1"
26346        ],
26347        "x-kubernetes-action": "list",
26348        "x-kubernetes-group-version-kind": {
26349          "group": "",
26350          "kind": "PodTemplate",
26351          "version": "v1"
26352        }
26353      },
26354      "parameters": [
26355        {
26356          "description": "object name and auth scope, such as for teams and projects",
26357          "in": "path",
26358          "name": "namespace",
26359          "required": true,
26360          "type": "string",
26361          "uniqueItems": true
26362        },
26363        {
26364          "description": "If 'true', then the output is pretty printed.",
26365          "in": "query",
26366          "name": "pretty",
26367          "type": "string",
26368          "uniqueItems": true
26369        }
26370      ],
26371      "post": {
26372        "consumes": [
26373          "*/*"
26374        ],
26375        "description": "create a PodTemplate",
26376        "operationId": "createCoreV1NamespacedPodTemplate",
26377        "parameters": [
26378          {
26379            "in": "body",
26380            "name": "body",
26381            "required": true,
26382            "schema": {
26383              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26384            }
26385          },
26386          {
26387            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26388            "in": "query",
26389            "name": "dryRun",
26390            "type": "string",
26391            "uniqueItems": true
26392          },
26393          {
26394            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26395            "in": "query",
26396            "name": "fieldManager",
26397            "type": "string",
26398            "uniqueItems": true
26399          }
26400        ],
26401        "produces": [
26402          "application/json",
26403          "application/yaml",
26404          "application/vnd.kubernetes.protobuf"
26405        ],
26406        "responses": {
26407          "200": {
26408            "description": "OK",
26409            "schema": {
26410              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26411            }
26412          },
26413          "201": {
26414            "description": "Created",
26415            "schema": {
26416              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26417            }
26418          },
26419          "202": {
26420            "description": "Accepted",
26421            "schema": {
26422              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26423            }
26424          },
26425          "401": {
26426            "description": "Unauthorized"
26427          }
26428        },
26429        "schemes": [
26430          "https"
26431        ],
26432        "tags": [
26433          "core_v1"
26434        ],
26435        "x-kubernetes-action": "post",
26436        "x-kubernetes-group-version-kind": {
26437          "group": "",
26438          "kind": "PodTemplate",
26439          "version": "v1"
26440        }
26441      }
26442    },
26443    "/api/v1/namespaces/{namespace}/podtemplates/{name}": {
26444      "delete": {
26445        "consumes": [
26446          "*/*"
26447        ],
26448        "description": "delete a PodTemplate",
26449        "operationId": "deleteCoreV1NamespacedPodTemplate",
26450        "parameters": [
26451          {
26452            "in": "body",
26453            "name": "body",
26454            "schema": {
26455              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26456            }
26457          },
26458          {
26459            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26460            "in": "query",
26461            "name": "dryRun",
26462            "type": "string",
26463            "uniqueItems": true
26464          },
26465          {
26466            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26467            "in": "query",
26468            "name": "gracePeriodSeconds",
26469            "type": "integer",
26470            "uniqueItems": true
26471          },
26472          {
26473            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26474            "in": "query",
26475            "name": "orphanDependents",
26476            "type": "boolean",
26477            "uniqueItems": true
26478          },
26479          {
26480            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26481            "in": "query",
26482            "name": "propagationPolicy",
26483            "type": "string",
26484            "uniqueItems": true
26485          }
26486        ],
26487        "produces": [
26488          "application/json",
26489          "application/yaml",
26490          "application/vnd.kubernetes.protobuf"
26491        ],
26492        "responses": {
26493          "200": {
26494            "description": "OK",
26495            "schema": {
26496              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26497            }
26498          },
26499          "202": {
26500            "description": "Accepted",
26501            "schema": {
26502              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26503            }
26504          },
26505          "401": {
26506            "description": "Unauthorized"
26507          }
26508        },
26509        "schemes": [
26510          "https"
26511        ],
26512        "tags": [
26513          "core_v1"
26514        ],
26515        "x-kubernetes-action": "delete",
26516        "x-kubernetes-group-version-kind": {
26517          "group": "",
26518          "kind": "PodTemplate",
26519          "version": "v1"
26520        }
26521      },
26522      "get": {
26523        "consumes": [
26524          "*/*"
26525        ],
26526        "description": "read the specified PodTemplate",
26527        "operationId": "readCoreV1NamespacedPodTemplate",
26528        "produces": [
26529          "application/json",
26530          "application/yaml",
26531          "application/vnd.kubernetes.protobuf"
26532        ],
26533        "responses": {
26534          "200": {
26535            "description": "OK",
26536            "schema": {
26537              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26538            }
26539          },
26540          "401": {
26541            "description": "Unauthorized"
26542          }
26543        },
26544        "schemes": [
26545          "https"
26546        ],
26547        "tags": [
26548          "core_v1"
26549        ],
26550        "x-kubernetes-action": "get",
26551        "x-kubernetes-group-version-kind": {
26552          "group": "",
26553          "kind": "PodTemplate",
26554          "version": "v1"
26555        }
26556      },
26557      "parameters": [
26558        {
26559          "description": "name of the PodTemplate",
26560          "in": "path",
26561          "name": "name",
26562          "required": true,
26563          "type": "string",
26564          "uniqueItems": true
26565        },
26566        {
26567          "description": "object name and auth scope, such as for teams and projects",
26568          "in": "path",
26569          "name": "namespace",
26570          "required": true,
26571          "type": "string",
26572          "uniqueItems": true
26573        },
26574        {
26575          "description": "If 'true', then the output is pretty printed.",
26576          "in": "query",
26577          "name": "pretty",
26578          "type": "string",
26579          "uniqueItems": true
26580        }
26581      ],
26582      "patch": {
26583        "consumes": [
26584          "application/json-patch+json",
26585          "application/merge-patch+json",
26586          "application/strategic-merge-patch+json",
26587          "application/apply-patch+yaml"
26588        ],
26589        "description": "partially update the specified PodTemplate",
26590        "operationId": "patchCoreV1NamespacedPodTemplate",
26591        "parameters": [
26592          {
26593            "in": "body",
26594            "name": "body",
26595            "required": true,
26596            "schema": {
26597              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26598            }
26599          },
26600          {
26601            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26602            "in": "query",
26603            "name": "dryRun",
26604            "type": "string",
26605            "uniqueItems": true
26606          },
26607          {
26608            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
26609            "in": "query",
26610            "name": "fieldManager",
26611            "type": "string",
26612            "uniqueItems": true
26613          },
26614          {
26615            "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.",
26616            "in": "query",
26617            "name": "force",
26618            "type": "boolean",
26619            "uniqueItems": true
26620          }
26621        ],
26622        "produces": [
26623          "application/json",
26624          "application/yaml",
26625          "application/vnd.kubernetes.protobuf"
26626        ],
26627        "responses": {
26628          "200": {
26629            "description": "OK",
26630            "schema": {
26631              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26632            }
26633          },
26634          "401": {
26635            "description": "Unauthorized"
26636          }
26637        },
26638        "schemes": [
26639          "https"
26640        ],
26641        "tags": [
26642          "core_v1"
26643        ],
26644        "x-kubernetes-action": "patch",
26645        "x-kubernetes-group-version-kind": {
26646          "group": "",
26647          "kind": "PodTemplate",
26648          "version": "v1"
26649        }
26650      },
26651      "put": {
26652        "consumes": [
26653          "*/*"
26654        ],
26655        "description": "replace the specified PodTemplate",
26656        "operationId": "replaceCoreV1NamespacedPodTemplate",
26657        "parameters": [
26658          {
26659            "in": "body",
26660            "name": "body",
26661            "required": true,
26662            "schema": {
26663              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26664            }
26665          },
26666          {
26667            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26668            "in": "query",
26669            "name": "dryRun",
26670            "type": "string",
26671            "uniqueItems": true
26672          },
26673          {
26674            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26675            "in": "query",
26676            "name": "fieldManager",
26677            "type": "string",
26678            "uniqueItems": true
26679          }
26680        ],
26681        "produces": [
26682          "application/json",
26683          "application/yaml",
26684          "application/vnd.kubernetes.protobuf"
26685        ],
26686        "responses": {
26687          "200": {
26688            "description": "OK",
26689            "schema": {
26690              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26691            }
26692          },
26693          "201": {
26694            "description": "Created",
26695            "schema": {
26696              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26697            }
26698          },
26699          "401": {
26700            "description": "Unauthorized"
26701          }
26702        },
26703        "schemes": [
26704          "https"
26705        ],
26706        "tags": [
26707          "core_v1"
26708        ],
26709        "x-kubernetes-action": "put",
26710        "x-kubernetes-group-version-kind": {
26711          "group": "",
26712          "kind": "PodTemplate",
26713          "version": "v1"
26714        }
26715      }
26716    },
26717    "/api/v1/namespaces/{namespace}/replicationcontrollers": {
26718      "delete": {
26719        "consumes": [
26720          "*/*"
26721        ],
26722        "description": "delete collection of ReplicationController",
26723        "operationId": "deleteCoreV1CollectionNamespacedReplicationController",
26724        "parameters": [
26725          {
26726            "in": "body",
26727            "name": "body",
26728            "schema": {
26729              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26730            }
26731          },
26732          {
26733            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26734            "in": "query",
26735            "name": "continue",
26736            "type": "string",
26737            "uniqueItems": true
26738          },
26739          {
26740            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26741            "in": "query",
26742            "name": "dryRun",
26743            "type": "string",
26744            "uniqueItems": true
26745          },
26746          {
26747            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26748            "in": "query",
26749            "name": "fieldSelector",
26750            "type": "string",
26751            "uniqueItems": true
26752          },
26753          {
26754            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26755            "in": "query",
26756            "name": "gracePeriodSeconds",
26757            "type": "integer",
26758            "uniqueItems": true
26759          },
26760          {
26761            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26762            "in": "query",
26763            "name": "labelSelector",
26764            "type": "string",
26765            "uniqueItems": true
26766          },
26767          {
26768            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26769            "in": "query",
26770            "name": "limit",
26771            "type": "integer",
26772            "uniqueItems": true
26773          },
26774          {
26775            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26776            "in": "query",
26777            "name": "orphanDependents",
26778            "type": "boolean",
26779            "uniqueItems": true
26780          },
26781          {
26782            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26783            "in": "query",
26784            "name": "propagationPolicy",
26785            "type": "string",
26786            "uniqueItems": true
26787          },
26788          {
26789            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26790            "in": "query",
26791            "name": "resourceVersion",
26792            "type": "string",
26793            "uniqueItems": true
26794          },
26795          {
26796            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26797            "in": "query",
26798            "name": "resourceVersionMatch",
26799            "type": "string",
26800            "uniqueItems": true
26801          },
26802          {
26803            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26804            "in": "query",
26805            "name": "timeoutSeconds",
26806            "type": "integer",
26807            "uniqueItems": true
26808          }
26809        ],
26810        "produces": [
26811          "application/json",
26812          "application/yaml",
26813          "application/vnd.kubernetes.protobuf"
26814        ],
26815        "responses": {
26816          "200": {
26817            "description": "OK",
26818            "schema": {
26819              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26820            }
26821          },
26822          "401": {
26823            "description": "Unauthorized"
26824          }
26825        },
26826        "schemes": [
26827          "https"
26828        ],
26829        "tags": [
26830          "core_v1"
26831        ],
26832        "x-kubernetes-action": "deletecollection",
26833        "x-kubernetes-group-version-kind": {
26834          "group": "",
26835          "kind": "ReplicationController",
26836          "version": "v1"
26837        }
26838      },
26839      "get": {
26840        "consumes": [
26841          "*/*"
26842        ],
26843        "description": "list or watch objects of kind ReplicationController",
26844        "operationId": "listCoreV1NamespacedReplicationController",
26845        "parameters": [
26846          {
26847            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
26848            "in": "query",
26849            "name": "allowWatchBookmarks",
26850            "type": "boolean",
26851            "uniqueItems": true
26852          },
26853          {
26854            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26855            "in": "query",
26856            "name": "continue",
26857            "type": "string",
26858            "uniqueItems": true
26859          },
26860          {
26861            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26862            "in": "query",
26863            "name": "fieldSelector",
26864            "type": "string",
26865            "uniqueItems": true
26866          },
26867          {
26868            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26869            "in": "query",
26870            "name": "labelSelector",
26871            "type": "string",
26872            "uniqueItems": true
26873          },
26874          {
26875            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26876            "in": "query",
26877            "name": "limit",
26878            "type": "integer",
26879            "uniqueItems": true
26880          },
26881          {
26882            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26883            "in": "query",
26884            "name": "resourceVersion",
26885            "type": "string",
26886            "uniqueItems": true
26887          },
26888          {
26889            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26890            "in": "query",
26891            "name": "resourceVersionMatch",
26892            "type": "string",
26893            "uniqueItems": true
26894          },
26895          {
26896            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26897            "in": "query",
26898            "name": "timeoutSeconds",
26899            "type": "integer",
26900            "uniqueItems": true
26901          },
26902          {
26903            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26904            "in": "query",
26905            "name": "watch",
26906            "type": "boolean",
26907            "uniqueItems": true
26908          }
26909        ],
26910        "produces": [
26911          "application/json",
26912          "application/yaml",
26913          "application/vnd.kubernetes.protobuf",
26914          "application/json;stream=watch",
26915          "application/vnd.kubernetes.protobuf;stream=watch"
26916        ],
26917        "responses": {
26918          "200": {
26919            "description": "OK",
26920            "schema": {
26921              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
26922            }
26923          },
26924          "401": {
26925            "description": "Unauthorized"
26926          }
26927        },
26928        "schemes": [
26929          "https"
26930        ],
26931        "tags": [
26932          "core_v1"
26933        ],
26934        "x-kubernetes-action": "list",
26935        "x-kubernetes-group-version-kind": {
26936          "group": "",
26937          "kind": "ReplicationController",
26938          "version": "v1"
26939        }
26940      },
26941      "parameters": [
26942        {
26943          "description": "object name and auth scope, such as for teams and projects",
26944          "in": "path",
26945          "name": "namespace",
26946          "required": true,
26947          "type": "string",
26948          "uniqueItems": true
26949        },
26950        {
26951          "description": "If 'true', then the output is pretty printed.",
26952          "in": "query",
26953          "name": "pretty",
26954          "type": "string",
26955          "uniqueItems": true
26956        }
26957      ],
26958      "post": {
26959        "consumes": [
26960          "*/*"
26961        ],
26962        "description": "create a ReplicationController",
26963        "operationId": "createCoreV1NamespacedReplicationController",
26964        "parameters": [
26965          {
26966            "in": "body",
26967            "name": "body",
26968            "required": true,
26969            "schema": {
26970              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26971            }
26972          },
26973          {
26974            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26975            "in": "query",
26976            "name": "dryRun",
26977            "type": "string",
26978            "uniqueItems": true
26979          },
26980          {
26981            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26982            "in": "query",
26983            "name": "fieldManager",
26984            "type": "string",
26985            "uniqueItems": true
26986          }
26987        ],
26988        "produces": [
26989          "application/json",
26990          "application/yaml",
26991          "application/vnd.kubernetes.protobuf"
26992        ],
26993        "responses": {
26994          "200": {
26995            "description": "OK",
26996            "schema": {
26997              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26998            }
26999          },
27000          "201": {
27001            "description": "Created",
27002            "schema": {
27003              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27004            }
27005          },
27006          "202": {
27007            "description": "Accepted",
27008            "schema": {
27009              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27010            }
27011          },
27012          "401": {
27013            "description": "Unauthorized"
27014          }
27015        },
27016        "schemes": [
27017          "https"
27018        ],
27019        "tags": [
27020          "core_v1"
27021        ],
27022        "x-kubernetes-action": "post",
27023        "x-kubernetes-group-version-kind": {
27024          "group": "",
27025          "kind": "ReplicationController",
27026          "version": "v1"
27027        }
27028      }
27029    },
27030    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": {
27031      "delete": {
27032        "consumes": [
27033          "*/*"
27034        ],
27035        "description": "delete a ReplicationController",
27036        "operationId": "deleteCoreV1NamespacedReplicationController",
27037        "parameters": [
27038          {
27039            "in": "body",
27040            "name": "body",
27041            "schema": {
27042              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27043            }
27044          },
27045          {
27046            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27047            "in": "query",
27048            "name": "dryRun",
27049            "type": "string",
27050            "uniqueItems": true
27051          },
27052          {
27053            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
27054            "in": "query",
27055            "name": "gracePeriodSeconds",
27056            "type": "integer",
27057            "uniqueItems": true
27058          },
27059          {
27060            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
27061            "in": "query",
27062            "name": "orphanDependents",
27063            "type": "boolean",
27064            "uniqueItems": true
27065          },
27066          {
27067            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
27068            "in": "query",
27069            "name": "propagationPolicy",
27070            "type": "string",
27071            "uniqueItems": true
27072          }
27073        ],
27074        "produces": [
27075          "application/json",
27076          "application/yaml",
27077          "application/vnd.kubernetes.protobuf"
27078        ],
27079        "responses": {
27080          "200": {
27081            "description": "OK",
27082            "schema": {
27083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27084            }
27085          },
27086          "202": {
27087            "description": "Accepted",
27088            "schema": {
27089              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27090            }
27091          },
27092          "401": {
27093            "description": "Unauthorized"
27094          }
27095        },
27096        "schemes": [
27097          "https"
27098        ],
27099        "tags": [
27100          "core_v1"
27101        ],
27102        "x-kubernetes-action": "delete",
27103        "x-kubernetes-group-version-kind": {
27104          "group": "",
27105          "kind": "ReplicationController",
27106          "version": "v1"
27107        }
27108      },
27109      "get": {
27110        "consumes": [
27111          "*/*"
27112        ],
27113        "description": "read the specified ReplicationController",
27114        "operationId": "readCoreV1NamespacedReplicationController",
27115        "produces": [
27116          "application/json",
27117          "application/yaml",
27118          "application/vnd.kubernetes.protobuf"
27119        ],
27120        "responses": {
27121          "200": {
27122            "description": "OK",
27123            "schema": {
27124              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27125            }
27126          },
27127          "401": {
27128            "description": "Unauthorized"
27129          }
27130        },
27131        "schemes": [
27132          "https"
27133        ],
27134        "tags": [
27135          "core_v1"
27136        ],
27137        "x-kubernetes-action": "get",
27138        "x-kubernetes-group-version-kind": {
27139          "group": "",
27140          "kind": "ReplicationController",
27141          "version": "v1"
27142        }
27143      },
27144      "parameters": [
27145        {
27146          "description": "name of the ReplicationController",
27147          "in": "path",
27148          "name": "name",
27149          "required": true,
27150          "type": "string",
27151          "uniqueItems": true
27152        },
27153        {
27154          "description": "object name and auth scope, such as for teams and projects",
27155          "in": "path",
27156          "name": "namespace",
27157          "required": true,
27158          "type": "string",
27159          "uniqueItems": true
27160        },
27161        {
27162          "description": "If 'true', then the output is pretty printed.",
27163          "in": "query",
27164          "name": "pretty",
27165          "type": "string",
27166          "uniqueItems": true
27167        }
27168      ],
27169      "patch": {
27170        "consumes": [
27171          "application/json-patch+json",
27172          "application/merge-patch+json",
27173          "application/strategic-merge-patch+json",
27174          "application/apply-patch+yaml"
27175        ],
27176        "description": "partially update the specified ReplicationController",
27177        "operationId": "patchCoreV1NamespacedReplicationController",
27178        "parameters": [
27179          {
27180            "in": "body",
27181            "name": "body",
27182            "required": true,
27183            "schema": {
27184              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27185            }
27186          },
27187          {
27188            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27189            "in": "query",
27190            "name": "dryRun",
27191            "type": "string",
27192            "uniqueItems": true
27193          },
27194          {
27195            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
27196            "in": "query",
27197            "name": "fieldManager",
27198            "type": "string",
27199            "uniqueItems": true
27200          },
27201          {
27202            "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.",
27203            "in": "query",
27204            "name": "force",
27205            "type": "boolean",
27206            "uniqueItems": true
27207          }
27208        ],
27209        "produces": [
27210          "application/json",
27211          "application/yaml",
27212          "application/vnd.kubernetes.protobuf"
27213        ],
27214        "responses": {
27215          "200": {
27216            "description": "OK",
27217            "schema": {
27218              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27219            }
27220          },
27221          "401": {
27222            "description": "Unauthorized"
27223          }
27224        },
27225        "schemes": [
27226          "https"
27227        ],
27228        "tags": [
27229          "core_v1"
27230        ],
27231        "x-kubernetes-action": "patch",
27232        "x-kubernetes-group-version-kind": {
27233          "group": "",
27234          "kind": "ReplicationController",
27235          "version": "v1"
27236        }
27237      },
27238      "put": {
27239        "consumes": [
27240          "*/*"
27241        ],
27242        "description": "replace the specified ReplicationController",
27243        "operationId": "replaceCoreV1NamespacedReplicationController",
27244        "parameters": [
27245          {
27246            "in": "body",
27247            "name": "body",
27248            "required": true,
27249            "schema": {
27250              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27251            }
27252          },
27253          {
27254            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27255            "in": "query",
27256            "name": "dryRun",
27257            "type": "string",
27258            "uniqueItems": true
27259          },
27260          {
27261            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27262            "in": "query",
27263            "name": "fieldManager",
27264            "type": "string",
27265            "uniqueItems": true
27266          }
27267        ],
27268        "produces": [
27269          "application/json",
27270          "application/yaml",
27271          "application/vnd.kubernetes.protobuf"
27272        ],
27273        "responses": {
27274          "200": {
27275            "description": "OK",
27276            "schema": {
27277              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27278            }
27279          },
27280          "201": {
27281            "description": "Created",
27282            "schema": {
27283              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27284            }
27285          },
27286          "401": {
27287            "description": "Unauthorized"
27288          }
27289        },
27290        "schemes": [
27291          "https"
27292        ],
27293        "tags": [
27294          "core_v1"
27295        ],
27296        "x-kubernetes-action": "put",
27297        "x-kubernetes-group-version-kind": {
27298          "group": "",
27299          "kind": "ReplicationController",
27300          "version": "v1"
27301        }
27302      }
27303    },
27304    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
27305      "get": {
27306        "consumes": [
27307          "*/*"
27308        ],
27309        "description": "read scale of the specified ReplicationController",
27310        "operationId": "readCoreV1NamespacedReplicationControllerScale",
27311        "produces": [
27312          "application/json",
27313          "application/yaml",
27314          "application/vnd.kubernetes.protobuf"
27315        ],
27316        "responses": {
27317          "200": {
27318            "description": "OK",
27319            "schema": {
27320              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27321            }
27322          },
27323          "401": {
27324            "description": "Unauthorized"
27325          }
27326        },
27327        "schemes": [
27328          "https"
27329        ],
27330        "tags": [
27331          "core_v1"
27332        ],
27333        "x-kubernetes-action": "get",
27334        "x-kubernetes-group-version-kind": {
27335          "group": "autoscaling",
27336          "kind": "Scale",
27337          "version": "v1"
27338        }
27339      },
27340      "parameters": [
27341        {
27342          "description": "name of the Scale",
27343          "in": "path",
27344          "name": "name",
27345          "required": true,
27346          "type": "string",
27347          "uniqueItems": true
27348        },
27349        {
27350          "description": "object name and auth scope, such as for teams and projects",
27351          "in": "path",
27352          "name": "namespace",
27353          "required": true,
27354          "type": "string",
27355          "uniqueItems": true
27356        },
27357        {
27358          "description": "If 'true', then the output is pretty printed.",
27359          "in": "query",
27360          "name": "pretty",
27361          "type": "string",
27362          "uniqueItems": true
27363        }
27364      ],
27365      "patch": {
27366        "consumes": [
27367          "application/json-patch+json",
27368          "application/merge-patch+json",
27369          "application/strategic-merge-patch+json",
27370          "application/apply-patch+yaml"
27371        ],
27372        "description": "partially update scale of the specified ReplicationController",
27373        "operationId": "patchCoreV1NamespacedReplicationControllerScale",
27374        "parameters": [
27375          {
27376            "in": "body",
27377            "name": "body",
27378            "required": true,
27379            "schema": {
27380              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27381            }
27382          },
27383          {
27384            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27385            "in": "query",
27386            "name": "dryRun",
27387            "type": "string",
27388            "uniqueItems": true
27389          },
27390          {
27391            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
27392            "in": "query",
27393            "name": "fieldManager",
27394            "type": "string",
27395            "uniqueItems": true
27396          },
27397          {
27398            "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.",
27399            "in": "query",
27400            "name": "force",
27401            "type": "boolean",
27402            "uniqueItems": true
27403          }
27404        ],
27405        "produces": [
27406          "application/json",
27407          "application/yaml",
27408          "application/vnd.kubernetes.protobuf"
27409        ],
27410        "responses": {
27411          "200": {
27412            "description": "OK",
27413            "schema": {
27414              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27415            }
27416          },
27417          "401": {
27418            "description": "Unauthorized"
27419          }
27420        },
27421        "schemes": [
27422          "https"
27423        ],
27424        "tags": [
27425          "core_v1"
27426        ],
27427        "x-kubernetes-action": "patch",
27428        "x-kubernetes-group-version-kind": {
27429          "group": "autoscaling",
27430          "kind": "Scale",
27431          "version": "v1"
27432        }
27433      },
27434      "put": {
27435        "consumes": [
27436          "*/*"
27437        ],
27438        "description": "replace scale of the specified ReplicationController",
27439        "operationId": "replaceCoreV1NamespacedReplicationControllerScale",
27440        "parameters": [
27441          {
27442            "in": "body",
27443            "name": "body",
27444            "required": true,
27445            "schema": {
27446              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27447            }
27448          },
27449          {
27450            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27451            "in": "query",
27452            "name": "dryRun",
27453            "type": "string",
27454            "uniqueItems": true
27455          },
27456          {
27457            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27458            "in": "query",
27459            "name": "fieldManager",
27460            "type": "string",
27461            "uniqueItems": true
27462          }
27463        ],
27464        "produces": [
27465          "application/json",
27466          "application/yaml",
27467          "application/vnd.kubernetes.protobuf"
27468        ],
27469        "responses": {
27470          "200": {
27471            "description": "OK",
27472            "schema": {
27473              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27474            }
27475          },
27476          "201": {
27477            "description": "Created",
27478            "schema": {
27479              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27480            }
27481          },
27482          "401": {
27483            "description": "Unauthorized"
27484          }
27485        },
27486        "schemes": [
27487          "https"
27488        ],
27489        "tags": [
27490          "core_v1"
27491        ],
27492        "x-kubernetes-action": "put",
27493        "x-kubernetes-group-version-kind": {
27494          "group": "autoscaling",
27495          "kind": "Scale",
27496          "version": "v1"
27497        }
27498      }
27499    },
27500    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": {
27501      "get": {
27502        "consumes": [
27503          "*/*"
27504        ],
27505        "description": "read status of the specified ReplicationController",
27506        "operationId": "readCoreV1NamespacedReplicationControllerStatus",
27507        "produces": [
27508          "application/json",
27509          "application/yaml",
27510          "application/vnd.kubernetes.protobuf"
27511        ],
27512        "responses": {
27513          "200": {
27514            "description": "OK",
27515            "schema": {
27516              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27517            }
27518          },
27519          "401": {
27520            "description": "Unauthorized"
27521          }
27522        },
27523        "schemes": [
27524          "https"
27525        ],
27526        "tags": [
27527          "core_v1"
27528        ],
27529        "x-kubernetes-action": "get",
27530        "x-kubernetes-group-version-kind": {
27531          "group": "",
27532          "kind": "ReplicationController",
27533          "version": "v1"
27534        }
27535      },
27536      "parameters": [
27537        {
27538          "description": "name of the ReplicationController",
27539          "in": "path",
27540          "name": "name",
27541          "required": true,
27542          "type": "string",
27543          "uniqueItems": true
27544        },
27545        {
27546          "description": "object name and auth scope, such as for teams and projects",
27547          "in": "path",
27548          "name": "namespace",
27549          "required": true,
27550          "type": "string",
27551          "uniqueItems": true
27552        },
27553        {
27554          "description": "If 'true', then the output is pretty printed.",
27555          "in": "query",
27556          "name": "pretty",
27557          "type": "string",
27558          "uniqueItems": true
27559        }
27560      ],
27561      "patch": {
27562        "consumes": [
27563          "application/json-patch+json",
27564          "application/merge-patch+json",
27565          "application/strategic-merge-patch+json",
27566          "application/apply-patch+yaml"
27567        ],
27568        "description": "partially update status of the specified ReplicationController",
27569        "operationId": "patchCoreV1NamespacedReplicationControllerStatus",
27570        "parameters": [
27571          {
27572            "in": "body",
27573            "name": "body",
27574            "required": true,
27575            "schema": {
27576              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27577            }
27578          },
27579          {
27580            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27581            "in": "query",
27582            "name": "dryRun",
27583            "type": "string",
27584            "uniqueItems": true
27585          },
27586          {
27587            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
27588            "in": "query",
27589            "name": "fieldManager",
27590            "type": "string",
27591            "uniqueItems": true
27592          },
27593          {
27594            "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.",
27595            "in": "query",
27596            "name": "force",
27597            "type": "boolean",
27598            "uniqueItems": true
27599          }
27600        ],
27601        "produces": [
27602          "application/json",
27603          "application/yaml",
27604          "application/vnd.kubernetes.protobuf"
27605        ],
27606        "responses": {
27607          "200": {
27608            "description": "OK",
27609            "schema": {
27610              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27611            }
27612          },
27613          "401": {
27614            "description": "Unauthorized"
27615          }
27616        },
27617        "schemes": [
27618          "https"
27619        ],
27620        "tags": [
27621          "core_v1"
27622        ],
27623        "x-kubernetes-action": "patch",
27624        "x-kubernetes-group-version-kind": {
27625          "group": "",
27626          "kind": "ReplicationController",
27627          "version": "v1"
27628        }
27629      },
27630      "put": {
27631        "consumes": [
27632          "*/*"
27633        ],
27634        "description": "replace status of the specified ReplicationController",
27635        "operationId": "replaceCoreV1NamespacedReplicationControllerStatus",
27636        "parameters": [
27637          {
27638            "in": "body",
27639            "name": "body",
27640            "required": true,
27641            "schema": {
27642              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27643            }
27644          },
27645          {
27646            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27647            "in": "query",
27648            "name": "dryRun",
27649            "type": "string",
27650            "uniqueItems": true
27651          },
27652          {
27653            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27654            "in": "query",
27655            "name": "fieldManager",
27656            "type": "string",
27657            "uniqueItems": true
27658          }
27659        ],
27660        "produces": [
27661          "application/json",
27662          "application/yaml",
27663          "application/vnd.kubernetes.protobuf"
27664        ],
27665        "responses": {
27666          "200": {
27667            "description": "OK",
27668            "schema": {
27669              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27670            }
27671          },
27672          "201": {
27673            "description": "Created",
27674            "schema": {
27675              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27676            }
27677          },
27678          "401": {
27679            "description": "Unauthorized"
27680          }
27681        },
27682        "schemes": [
27683          "https"
27684        ],
27685        "tags": [
27686          "core_v1"
27687        ],
27688        "x-kubernetes-action": "put",
27689        "x-kubernetes-group-version-kind": {
27690          "group": "",
27691          "kind": "ReplicationController",
27692          "version": "v1"
27693        }
27694      }
27695    },
27696    "/api/v1/namespaces/{namespace}/resourcequotas": {
27697      "delete": {
27698        "consumes": [
27699          "*/*"
27700        ],
27701        "description": "delete collection of ResourceQuota",
27702        "operationId": "deleteCoreV1CollectionNamespacedResourceQuota",
27703        "parameters": [
27704          {
27705            "in": "body",
27706            "name": "body",
27707            "schema": {
27708              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27709            }
27710          },
27711          {
27712            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27713            "in": "query",
27714            "name": "continue",
27715            "type": "string",
27716            "uniqueItems": true
27717          },
27718          {
27719            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27720            "in": "query",
27721            "name": "dryRun",
27722            "type": "string",
27723            "uniqueItems": true
27724          },
27725          {
27726            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27727            "in": "query",
27728            "name": "fieldSelector",
27729            "type": "string",
27730            "uniqueItems": true
27731          },
27732          {
27733            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
27734            "in": "query",
27735            "name": "gracePeriodSeconds",
27736            "type": "integer",
27737            "uniqueItems": true
27738          },
27739          {
27740            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27741            "in": "query",
27742            "name": "labelSelector",
27743            "type": "string",
27744            "uniqueItems": true
27745          },
27746          {
27747            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27748            "in": "query",
27749            "name": "limit",
27750            "type": "integer",
27751            "uniqueItems": true
27752          },
27753          {
27754            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
27755            "in": "query",
27756            "name": "orphanDependents",
27757            "type": "boolean",
27758            "uniqueItems": true
27759          },
27760          {
27761            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
27762            "in": "query",
27763            "name": "propagationPolicy",
27764            "type": "string",
27765            "uniqueItems": true
27766          },
27767          {
27768            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27769            "in": "query",
27770            "name": "resourceVersion",
27771            "type": "string",
27772            "uniqueItems": true
27773          },
27774          {
27775            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27776            "in": "query",
27777            "name": "resourceVersionMatch",
27778            "type": "string",
27779            "uniqueItems": true
27780          },
27781          {
27782            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27783            "in": "query",
27784            "name": "timeoutSeconds",
27785            "type": "integer",
27786            "uniqueItems": true
27787          }
27788        ],
27789        "produces": [
27790          "application/json",
27791          "application/yaml",
27792          "application/vnd.kubernetes.protobuf"
27793        ],
27794        "responses": {
27795          "200": {
27796            "description": "OK",
27797            "schema": {
27798              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27799            }
27800          },
27801          "401": {
27802            "description": "Unauthorized"
27803          }
27804        },
27805        "schemes": [
27806          "https"
27807        ],
27808        "tags": [
27809          "core_v1"
27810        ],
27811        "x-kubernetes-action": "deletecollection",
27812        "x-kubernetes-group-version-kind": {
27813          "group": "",
27814          "kind": "ResourceQuota",
27815          "version": "v1"
27816        }
27817      },
27818      "get": {
27819        "consumes": [
27820          "*/*"
27821        ],
27822        "description": "list or watch objects of kind ResourceQuota",
27823        "operationId": "listCoreV1NamespacedResourceQuota",
27824        "parameters": [
27825          {
27826            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
27827            "in": "query",
27828            "name": "allowWatchBookmarks",
27829            "type": "boolean",
27830            "uniqueItems": true
27831          },
27832          {
27833            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27834            "in": "query",
27835            "name": "continue",
27836            "type": "string",
27837            "uniqueItems": true
27838          },
27839          {
27840            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27841            "in": "query",
27842            "name": "fieldSelector",
27843            "type": "string",
27844            "uniqueItems": true
27845          },
27846          {
27847            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27848            "in": "query",
27849            "name": "labelSelector",
27850            "type": "string",
27851            "uniqueItems": true
27852          },
27853          {
27854            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27855            "in": "query",
27856            "name": "limit",
27857            "type": "integer",
27858            "uniqueItems": true
27859          },
27860          {
27861            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27862            "in": "query",
27863            "name": "resourceVersion",
27864            "type": "string",
27865            "uniqueItems": true
27866          },
27867          {
27868            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27869            "in": "query",
27870            "name": "resourceVersionMatch",
27871            "type": "string",
27872            "uniqueItems": true
27873          },
27874          {
27875            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27876            "in": "query",
27877            "name": "timeoutSeconds",
27878            "type": "integer",
27879            "uniqueItems": true
27880          },
27881          {
27882            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
27883            "in": "query",
27884            "name": "watch",
27885            "type": "boolean",
27886            "uniqueItems": true
27887          }
27888        ],
27889        "produces": [
27890          "application/json",
27891          "application/yaml",
27892          "application/vnd.kubernetes.protobuf",
27893          "application/json;stream=watch",
27894          "application/vnd.kubernetes.protobuf;stream=watch"
27895        ],
27896        "responses": {
27897          "200": {
27898            "description": "OK",
27899            "schema": {
27900              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
27901            }
27902          },
27903          "401": {
27904            "description": "Unauthorized"
27905          }
27906        },
27907        "schemes": [
27908          "https"
27909        ],
27910        "tags": [
27911          "core_v1"
27912        ],
27913        "x-kubernetes-action": "list",
27914        "x-kubernetes-group-version-kind": {
27915          "group": "",
27916          "kind": "ResourceQuota",
27917          "version": "v1"
27918        }
27919      },
27920      "parameters": [
27921        {
27922          "description": "object name and auth scope, such as for teams and projects",
27923          "in": "path",
27924          "name": "namespace",
27925          "required": true,
27926          "type": "string",
27927          "uniqueItems": true
27928        },
27929        {
27930          "description": "If 'true', then the output is pretty printed.",
27931          "in": "query",
27932          "name": "pretty",
27933          "type": "string",
27934          "uniqueItems": true
27935        }
27936      ],
27937      "post": {
27938        "consumes": [
27939          "*/*"
27940        ],
27941        "description": "create a ResourceQuota",
27942        "operationId": "createCoreV1NamespacedResourceQuota",
27943        "parameters": [
27944          {
27945            "in": "body",
27946            "name": "body",
27947            "required": true,
27948            "schema": {
27949              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27950            }
27951          },
27952          {
27953            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27954            "in": "query",
27955            "name": "dryRun",
27956            "type": "string",
27957            "uniqueItems": true
27958          },
27959          {
27960            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27961            "in": "query",
27962            "name": "fieldManager",
27963            "type": "string",
27964            "uniqueItems": true
27965          }
27966        ],
27967        "produces": [
27968          "application/json",
27969          "application/yaml",
27970          "application/vnd.kubernetes.protobuf"
27971        ],
27972        "responses": {
27973          "200": {
27974            "description": "OK",
27975            "schema": {
27976              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27977            }
27978          },
27979          "201": {
27980            "description": "Created",
27981            "schema": {
27982              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27983            }
27984          },
27985          "202": {
27986            "description": "Accepted",
27987            "schema": {
27988              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27989            }
27990          },
27991          "401": {
27992            "description": "Unauthorized"
27993          }
27994        },
27995        "schemes": [
27996          "https"
27997        ],
27998        "tags": [
27999          "core_v1"
28000        ],
28001        "x-kubernetes-action": "post",
28002        "x-kubernetes-group-version-kind": {
28003          "group": "",
28004          "kind": "ResourceQuota",
28005          "version": "v1"
28006        }
28007      }
28008    },
28009    "/api/v1/namespaces/{namespace}/resourcequotas/{name}": {
28010      "delete": {
28011        "consumes": [
28012          "*/*"
28013        ],
28014        "description": "delete a ResourceQuota",
28015        "operationId": "deleteCoreV1NamespacedResourceQuota",
28016        "parameters": [
28017          {
28018            "in": "body",
28019            "name": "body",
28020            "schema": {
28021              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28022            }
28023          },
28024          {
28025            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28026            "in": "query",
28027            "name": "dryRun",
28028            "type": "string",
28029            "uniqueItems": true
28030          },
28031          {
28032            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28033            "in": "query",
28034            "name": "gracePeriodSeconds",
28035            "type": "integer",
28036            "uniqueItems": true
28037          },
28038          {
28039            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28040            "in": "query",
28041            "name": "orphanDependents",
28042            "type": "boolean",
28043            "uniqueItems": true
28044          },
28045          {
28046            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28047            "in": "query",
28048            "name": "propagationPolicy",
28049            "type": "string",
28050            "uniqueItems": true
28051          }
28052        ],
28053        "produces": [
28054          "application/json",
28055          "application/yaml",
28056          "application/vnd.kubernetes.protobuf"
28057        ],
28058        "responses": {
28059          "200": {
28060            "description": "OK",
28061            "schema": {
28062              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28063            }
28064          },
28065          "202": {
28066            "description": "Accepted",
28067            "schema": {
28068              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28069            }
28070          },
28071          "401": {
28072            "description": "Unauthorized"
28073          }
28074        },
28075        "schemes": [
28076          "https"
28077        ],
28078        "tags": [
28079          "core_v1"
28080        ],
28081        "x-kubernetes-action": "delete",
28082        "x-kubernetes-group-version-kind": {
28083          "group": "",
28084          "kind": "ResourceQuota",
28085          "version": "v1"
28086        }
28087      },
28088      "get": {
28089        "consumes": [
28090          "*/*"
28091        ],
28092        "description": "read the specified ResourceQuota",
28093        "operationId": "readCoreV1NamespacedResourceQuota",
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.ResourceQuota"
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": "ResourceQuota",
28120          "version": "v1"
28121        }
28122      },
28123      "parameters": [
28124        {
28125          "description": "name of the ResourceQuota",
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          "application/apply-patch+yaml"
28154        ],
28155        "description": "partially update the specified ResourceQuota",
28156        "operationId": "patchCoreV1NamespacedResourceQuota",
28157        "parameters": [
28158          {
28159            "in": "body",
28160            "name": "body",
28161            "required": true,
28162            "schema": {
28163              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28164            }
28165          },
28166          {
28167            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28168            "in": "query",
28169            "name": "dryRun",
28170            "type": "string",
28171            "uniqueItems": true
28172          },
28173          {
28174            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
28175            "in": "query",
28176            "name": "fieldManager",
28177            "type": "string",
28178            "uniqueItems": true
28179          },
28180          {
28181            "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.",
28182            "in": "query",
28183            "name": "force",
28184            "type": "boolean",
28185            "uniqueItems": true
28186          }
28187        ],
28188        "produces": [
28189          "application/json",
28190          "application/yaml",
28191          "application/vnd.kubernetes.protobuf"
28192        ],
28193        "responses": {
28194          "200": {
28195            "description": "OK",
28196            "schema": {
28197              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28198            }
28199          },
28200          "401": {
28201            "description": "Unauthorized"
28202          }
28203        },
28204        "schemes": [
28205          "https"
28206        ],
28207        "tags": [
28208          "core_v1"
28209        ],
28210        "x-kubernetes-action": "patch",
28211        "x-kubernetes-group-version-kind": {
28212          "group": "",
28213          "kind": "ResourceQuota",
28214          "version": "v1"
28215        }
28216      },
28217      "put": {
28218        "consumes": [
28219          "*/*"
28220        ],
28221        "description": "replace the specified ResourceQuota",
28222        "operationId": "replaceCoreV1NamespacedResourceQuota",
28223        "parameters": [
28224          {
28225            "in": "body",
28226            "name": "body",
28227            "required": true,
28228            "schema": {
28229              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28230            }
28231          },
28232          {
28233            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28234            "in": "query",
28235            "name": "dryRun",
28236            "type": "string",
28237            "uniqueItems": true
28238          },
28239          {
28240            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28241            "in": "query",
28242            "name": "fieldManager",
28243            "type": "string",
28244            "uniqueItems": true
28245          }
28246        ],
28247        "produces": [
28248          "application/json",
28249          "application/yaml",
28250          "application/vnd.kubernetes.protobuf"
28251        ],
28252        "responses": {
28253          "200": {
28254            "description": "OK",
28255            "schema": {
28256              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28257            }
28258          },
28259          "201": {
28260            "description": "Created",
28261            "schema": {
28262              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28263            }
28264          },
28265          "401": {
28266            "description": "Unauthorized"
28267          }
28268        },
28269        "schemes": [
28270          "https"
28271        ],
28272        "tags": [
28273          "core_v1"
28274        ],
28275        "x-kubernetes-action": "put",
28276        "x-kubernetes-group-version-kind": {
28277          "group": "",
28278          "kind": "ResourceQuota",
28279          "version": "v1"
28280        }
28281      }
28282    },
28283    "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": {
28284      "get": {
28285        "consumes": [
28286          "*/*"
28287        ],
28288        "description": "read status of the specified ResourceQuota",
28289        "operationId": "readCoreV1NamespacedResourceQuotaStatus",
28290        "produces": [
28291          "application/json",
28292          "application/yaml",
28293          "application/vnd.kubernetes.protobuf"
28294        ],
28295        "responses": {
28296          "200": {
28297            "description": "OK",
28298            "schema": {
28299              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28300            }
28301          },
28302          "401": {
28303            "description": "Unauthorized"
28304          }
28305        },
28306        "schemes": [
28307          "https"
28308        ],
28309        "tags": [
28310          "core_v1"
28311        ],
28312        "x-kubernetes-action": "get",
28313        "x-kubernetes-group-version-kind": {
28314          "group": "",
28315          "kind": "ResourceQuota",
28316          "version": "v1"
28317        }
28318      },
28319      "parameters": [
28320        {
28321          "description": "name of the ResourceQuota",
28322          "in": "path",
28323          "name": "name",
28324          "required": true,
28325          "type": "string",
28326          "uniqueItems": true
28327        },
28328        {
28329          "description": "object name and auth scope, such as for teams and projects",
28330          "in": "path",
28331          "name": "namespace",
28332          "required": true,
28333          "type": "string",
28334          "uniqueItems": true
28335        },
28336        {
28337          "description": "If 'true', then the output is pretty printed.",
28338          "in": "query",
28339          "name": "pretty",
28340          "type": "string",
28341          "uniqueItems": true
28342        }
28343      ],
28344      "patch": {
28345        "consumes": [
28346          "application/json-patch+json",
28347          "application/merge-patch+json",
28348          "application/strategic-merge-patch+json",
28349          "application/apply-patch+yaml"
28350        ],
28351        "description": "partially update status of the specified ResourceQuota",
28352        "operationId": "patchCoreV1NamespacedResourceQuotaStatus",
28353        "parameters": [
28354          {
28355            "in": "body",
28356            "name": "body",
28357            "required": true,
28358            "schema": {
28359              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28360            }
28361          },
28362          {
28363            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28364            "in": "query",
28365            "name": "dryRun",
28366            "type": "string",
28367            "uniqueItems": true
28368          },
28369          {
28370            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
28371            "in": "query",
28372            "name": "fieldManager",
28373            "type": "string",
28374            "uniqueItems": true
28375          },
28376          {
28377            "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.",
28378            "in": "query",
28379            "name": "force",
28380            "type": "boolean",
28381            "uniqueItems": true
28382          }
28383        ],
28384        "produces": [
28385          "application/json",
28386          "application/yaml",
28387          "application/vnd.kubernetes.protobuf"
28388        ],
28389        "responses": {
28390          "200": {
28391            "description": "OK",
28392            "schema": {
28393              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28394            }
28395          },
28396          "401": {
28397            "description": "Unauthorized"
28398          }
28399        },
28400        "schemes": [
28401          "https"
28402        ],
28403        "tags": [
28404          "core_v1"
28405        ],
28406        "x-kubernetes-action": "patch",
28407        "x-kubernetes-group-version-kind": {
28408          "group": "",
28409          "kind": "ResourceQuota",
28410          "version": "v1"
28411        }
28412      },
28413      "put": {
28414        "consumes": [
28415          "*/*"
28416        ],
28417        "description": "replace status of the specified ResourceQuota",
28418        "operationId": "replaceCoreV1NamespacedResourceQuotaStatus",
28419        "parameters": [
28420          {
28421            "in": "body",
28422            "name": "body",
28423            "required": true,
28424            "schema": {
28425              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28426            }
28427          },
28428          {
28429            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28430            "in": "query",
28431            "name": "dryRun",
28432            "type": "string",
28433            "uniqueItems": true
28434          },
28435          {
28436            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28437            "in": "query",
28438            "name": "fieldManager",
28439            "type": "string",
28440            "uniqueItems": true
28441          }
28442        ],
28443        "produces": [
28444          "application/json",
28445          "application/yaml",
28446          "application/vnd.kubernetes.protobuf"
28447        ],
28448        "responses": {
28449          "200": {
28450            "description": "OK",
28451            "schema": {
28452              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28453            }
28454          },
28455          "201": {
28456            "description": "Created",
28457            "schema": {
28458              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28459            }
28460          },
28461          "401": {
28462            "description": "Unauthorized"
28463          }
28464        },
28465        "schemes": [
28466          "https"
28467        ],
28468        "tags": [
28469          "core_v1"
28470        ],
28471        "x-kubernetes-action": "put",
28472        "x-kubernetes-group-version-kind": {
28473          "group": "",
28474          "kind": "ResourceQuota",
28475          "version": "v1"
28476        }
28477      }
28478    },
28479    "/api/v1/namespaces/{namespace}/secrets": {
28480      "delete": {
28481        "consumes": [
28482          "*/*"
28483        ],
28484        "description": "delete collection of Secret",
28485        "operationId": "deleteCoreV1CollectionNamespacedSecret",
28486        "parameters": [
28487          {
28488            "in": "body",
28489            "name": "body",
28490            "schema": {
28491              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28492            }
28493          },
28494          {
28495            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28496            "in": "query",
28497            "name": "continue",
28498            "type": "string",
28499            "uniqueItems": true
28500          },
28501          {
28502            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28503            "in": "query",
28504            "name": "dryRun",
28505            "type": "string",
28506            "uniqueItems": true
28507          },
28508          {
28509            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28510            "in": "query",
28511            "name": "fieldSelector",
28512            "type": "string",
28513            "uniqueItems": true
28514          },
28515          {
28516            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28517            "in": "query",
28518            "name": "gracePeriodSeconds",
28519            "type": "integer",
28520            "uniqueItems": true
28521          },
28522          {
28523            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28524            "in": "query",
28525            "name": "labelSelector",
28526            "type": "string",
28527            "uniqueItems": true
28528          },
28529          {
28530            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28531            "in": "query",
28532            "name": "limit",
28533            "type": "integer",
28534            "uniqueItems": true
28535          },
28536          {
28537            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28538            "in": "query",
28539            "name": "orphanDependents",
28540            "type": "boolean",
28541            "uniqueItems": true
28542          },
28543          {
28544            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28545            "in": "query",
28546            "name": "propagationPolicy",
28547            "type": "string",
28548            "uniqueItems": true
28549          },
28550          {
28551            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28552            "in": "query",
28553            "name": "resourceVersion",
28554            "type": "string",
28555            "uniqueItems": true
28556          },
28557          {
28558            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28559            "in": "query",
28560            "name": "resourceVersionMatch",
28561            "type": "string",
28562            "uniqueItems": true
28563          },
28564          {
28565            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28566            "in": "query",
28567            "name": "timeoutSeconds",
28568            "type": "integer",
28569            "uniqueItems": true
28570          }
28571        ],
28572        "produces": [
28573          "application/json",
28574          "application/yaml",
28575          "application/vnd.kubernetes.protobuf"
28576        ],
28577        "responses": {
28578          "200": {
28579            "description": "OK",
28580            "schema": {
28581              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28582            }
28583          },
28584          "401": {
28585            "description": "Unauthorized"
28586          }
28587        },
28588        "schemes": [
28589          "https"
28590        ],
28591        "tags": [
28592          "core_v1"
28593        ],
28594        "x-kubernetes-action": "deletecollection",
28595        "x-kubernetes-group-version-kind": {
28596          "group": "",
28597          "kind": "Secret",
28598          "version": "v1"
28599        }
28600      },
28601      "get": {
28602        "consumes": [
28603          "*/*"
28604        ],
28605        "description": "list or watch objects of kind Secret",
28606        "operationId": "listCoreV1NamespacedSecret",
28607        "parameters": [
28608          {
28609            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
28610            "in": "query",
28611            "name": "allowWatchBookmarks",
28612            "type": "boolean",
28613            "uniqueItems": true
28614          },
28615          {
28616            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28617            "in": "query",
28618            "name": "continue",
28619            "type": "string",
28620            "uniqueItems": true
28621          },
28622          {
28623            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28624            "in": "query",
28625            "name": "fieldSelector",
28626            "type": "string",
28627            "uniqueItems": true
28628          },
28629          {
28630            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28631            "in": "query",
28632            "name": "labelSelector",
28633            "type": "string",
28634            "uniqueItems": true
28635          },
28636          {
28637            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28638            "in": "query",
28639            "name": "limit",
28640            "type": "integer",
28641            "uniqueItems": true
28642          },
28643          {
28644            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28645            "in": "query",
28646            "name": "resourceVersion",
28647            "type": "string",
28648            "uniqueItems": true
28649          },
28650          {
28651            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28652            "in": "query",
28653            "name": "resourceVersionMatch",
28654            "type": "string",
28655            "uniqueItems": true
28656          },
28657          {
28658            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28659            "in": "query",
28660            "name": "timeoutSeconds",
28661            "type": "integer",
28662            "uniqueItems": true
28663          },
28664          {
28665            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28666            "in": "query",
28667            "name": "watch",
28668            "type": "boolean",
28669            "uniqueItems": true
28670          }
28671        ],
28672        "produces": [
28673          "application/json",
28674          "application/yaml",
28675          "application/vnd.kubernetes.protobuf",
28676          "application/json;stream=watch",
28677          "application/vnd.kubernetes.protobuf;stream=watch"
28678        ],
28679        "responses": {
28680          "200": {
28681            "description": "OK",
28682            "schema": {
28683              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
28684            }
28685          },
28686          "401": {
28687            "description": "Unauthorized"
28688          }
28689        },
28690        "schemes": [
28691          "https"
28692        ],
28693        "tags": [
28694          "core_v1"
28695        ],
28696        "x-kubernetes-action": "list",
28697        "x-kubernetes-group-version-kind": {
28698          "group": "",
28699          "kind": "Secret",
28700          "version": "v1"
28701        }
28702      },
28703      "parameters": [
28704        {
28705          "description": "object name and auth scope, such as for teams and projects",
28706          "in": "path",
28707          "name": "namespace",
28708          "required": true,
28709          "type": "string",
28710          "uniqueItems": true
28711        },
28712        {
28713          "description": "If 'true', then the output is pretty printed.",
28714          "in": "query",
28715          "name": "pretty",
28716          "type": "string",
28717          "uniqueItems": true
28718        }
28719      ],
28720      "post": {
28721        "consumes": [
28722          "*/*"
28723        ],
28724        "description": "create a Secret",
28725        "operationId": "createCoreV1NamespacedSecret",
28726        "parameters": [
28727          {
28728            "in": "body",
28729            "name": "body",
28730            "required": true,
28731            "schema": {
28732              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28733            }
28734          },
28735          {
28736            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28737            "in": "query",
28738            "name": "dryRun",
28739            "type": "string",
28740            "uniqueItems": true
28741          },
28742          {
28743            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28744            "in": "query",
28745            "name": "fieldManager",
28746            "type": "string",
28747            "uniqueItems": true
28748          }
28749        ],
28750        "produces": [
28751          "application/json",
28752          "application/yaml",
28753          "application/vnd.kubernetes.protobuf"
28754        ],
28755        "responses": {
28756          "200": {
28757            "description": "OK",
28758            "schema": {
28759              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28760            }
28761          },
28762          "201": {
28763            "description": "Created",
28764            "schema": {
28765              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28766            }
28767          },
28768          "202": {
28769            "description": "Accepted",
28770            "schema": {
28771              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28772            }
28773          },
28774          "401": {
28775            "description": "Unauthorized"
28776          }
28777        },
28778        "schemes": [
28779          "https"
28780        ],
28781        "tags": [
28782          "core_v1"
28783        ],
28784        "x-kubernetes-action": "post",
28785        "x-kubernetes-group-version-kind": {
28786          "group": "",
28787          "kind": "Secret",
28788          "version": "v1"
28789        }
28790      }
28791    },
28792    "/api/v1/namespaces/{namespace}/secrets/{name}": {
28793      "delete": {
28794        "consumes": [
28795          "*/*"
28796        ],
28797        "description": "delete a Secret",
28798        "operationId": "deleteCoreV1NamespacedSecret",
28799        "parameters": [
28800          {
28801            "in": "body",
28802            "name": "body",
28803            "schema": {
28804              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28805            }
28806          },
28807          {
28808            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28809            "in": "query",
28810            "name": "dryRun",
28811            "type": "string",
28812            "uniqueItems": true
28813          },
28814          {
28815            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28816            "in": "query",
28817            "name": "gracePeriodSeconds",
28818            "type": "integer",
28819            "uniqueItems": true
28820          },
28821          {
28822            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28823            "in": "query",
28824            "name": "orphanDependents",
28825            "type": "boolean",
28826            "uniqueItems": true
28827          },
28828          {
28829            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28830            "in": "query",
28831            "name": "propagationPolicy",
28832            "type": "string",
28833            "uniqueItems": true
28834          }
28835        ],
28836        "produces": [
28837          "application/json",
28838          "application/yaml",
28839          "application/vnd.kubernetes.protobuf"
28840        ],
28841        "responses": {
28842          "200": {
28843            "description": "OK",
28844            "schema": {
28845              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28846            }
28847          },
28848          "202": {
28849            "description": "Accepted",
28850            "schema": {
28851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28852            }
28853          },
28854          "401": {
28855            "description": "Unauthorized"
28856          }
28857        },
28858        "schemes": [
28859          "https"
28860        ],
28861        "tags": [
28862          "core_v1"
28863        ],
28864        "x-kubernetes-action": "delete",
28865        "x-kubernetes-group-version-kind": {
28866          "group": "",
28867          "kind": "Secret",
28868          "version": "v1"
28869        }
28870      },
28871      "get": {
28872        "consumes": [
28873          "*/*"
28874        ],
28875        "description": "read the specified Secret",
28876        "operationId": "readCoreV1NamespacedSecret",
28877        "produces": [
28878          "application/json",
28879          "application/yaml",
28880          "application/vnd.kubernetes.protobuf"
28881        ],
28882        "responses": {
28883          "200": {
28884            "description": "OK",
28885            "schema": {
28886              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28887            }
28888          },
28889          "401": {
28890            "description": "Unauthorized"
28891          }
28892        },
28893        "schemes": [
28894          "https"
28895        ],
28896        "tags": [
28897          "core_v1"
28898        ],
28899        "x-kubernetes-action": "get",
28900        "x-kubernetes-group-version-kind": {
28901          "group": "",
28902          "kind": "Secret",
28903          "version": "v1"
28904        }
28905      },
28906      "parameters": [
28907        {
28908          "description": "name of the Secret",
28909          "in": "path",
28910          "name": "name",
28911          "required": true,
28912          "type": "string",
28913          "uniqueItems": true
28914        },
28915        {
28916          "description": "object name and auth scope, such as for teams and projects",
28917          "in": "path",
28918          "name": "namespace",
28919          "required": true,
28920          "type": "string",
28921          "uniqueItems": true
28922        },
28923        {
28924          "description": "If 'true', then the output is pretty printed.",
28925          "in": "query",
28926          "name": "pretty",
28927          "type": "string",
28928          "uniqueItems": true
28929        }
28930      ],
28931      "patch": {
28932        "consumes": [
28933          "application/json-patch+json",
28934          "application/merge-patch+json",
28935          "application/strategic-merge-patch+json",
28936          "application/apply-patch+yaml"
28937        ],
28938        "description": "partially update the specified Secret",
28939        "operationId": "patchCoreV1NamespacedSecret",
28940        "parameters": [
28941          {
28942            "in": "body",
28943            "name": "body",
28944            "required": true,
28945            "schema": {
28946              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28947            }
28948          },
28949          {
28950            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28951            "in": "query",
28952            "name": "dryRun",
28953            "type": "string",
28954            "uniqueItems": true
28955          },
28956          {
28957            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
28958            "in": "query",
28959            "name": "fieldManager",
28960            "type": "string",
28961            "uniqueItems": true
28962          },
28963          {
28964            "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.",
28965            "in": "query",
28966            "name": "force",
28967            "type": "boolean",
28968            "uniqueItems": true
28969          }
28970        ],
28971        "produces": [
28972          "application/json",
28973          "application/yaml",
28974          "application/vnd.kubernetes.protobuf"
28975        ],
28976        "responses": {
28977          "200": {
28978            "description": "OK",
28979            "schema": {
28980              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28981            }
28982          },
28983          "401": {
28984            "description": "Unauthorized"
28985          }
28986        },
28987        "schemes": [
28988          "https"
28989        ],
28990        "tags": [
28991          "core_v1"
28992        ],
28993        "x-kubernetes-action": "patch",
28994        "x-kubernetes-group-version-kind": {
28995          "group": "",
28996          "kind": "Secret",
28997          "version": "v1"
28998        }
28999      },
29000      "put": {
29001        "consumes": [
29002          "*/*"
29003        ],
29004        "description": "replace the specified Secret",
29005        "operationId": "replaceCoreV1NamespacedSecret",
29006        "parameters": [
29007          {
29008            "in": "body",
29009            "name": "body",
29010            "required": true,
29011            "schema": {
29012              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
29013            }
29014          },
29015          {
29016            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29017            "in": "query",
29018            "name": "dryRun",
29019            "type": "string",
29020            "uniqueItems": true
29021          },
29022          {
29023            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29024            "in": "query",
29025            "name": "fieldManager",
29026            "type": "string",
29027            "uniqueItems": true
29028          }
29029        ],
29030        "produces": [
29031          "application/json",
29032          "application/yaml",
29033          "application/vnd.kubernetes.protobuf"
29034        ],
29035        "responses": {
29036          "200": {
29037            "description": "OK",
29038            "schema": {
29039              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
29040            }
29041          },
29042          "201": {
29043            "description": "Created",
29044            "schema": {
29045              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
29046            }
29047          },
29048          "401": {
29049            "description": "Unauthorized"
29050          }
29051        },
29052        "schemes": [
29053          "https"
29054        ],
29055        "tags": [
29056          "core_v1"
29057        ],
29058        "x-kubernetes-action": "put",
29059        "x-kubernetes-group-version-kind": {
29060          "group": "",
29061          "kind": "Secret",
29062          "version": "v1"
29063        }
29064      }
29065    },
29066    "/api/v1/namespaces/{namespace}/serviceaccounts": {
29067      "delete": {
29068        "consumes": [
29069          "*/*"
29070        ],
29071        "description": "delete collection of ServiceAccount",
29072        "operationId": "deleteCoreV1CollectionNamespacedServiceAccount",
29073        "parameters": [
29074          {
29075            "in": "body",
29076            "name": "body",
29077            "schema": {
29078              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29079            }
29080          },
29081          {
29082            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29083            "in": "query",
29084            "name": "continue",
29085            "type": "string",
29086            "uniqueItems": true
29087          },
29088          {
29089            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29090            "in": "query",
29091            "name": "dryRun",
29092            "type": "string",
29093            "uniqueItems": true
29094          },
29095          {
29096            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29097            "in": "query",
29098            "name": "fieldSelector",
29099            "type": "string",
29100            "uniqueItems": true
29101          },
29102          {
29103            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
29104            "in": "query",
29105            "name": "gracePeriodSeconds",
29106            "type": "integer",
29107            "uniqueItems": true
29108          },
29109          {
29110            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29111            "in": "query",
29112            "name": "labelSelector",
29113            "type": "string",
29114            "uniqueItems": true
29115          },
29116          {
29117            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29118            "in": "query",
29119            "name": "limit",
29120            "type": "integer",
29121            "uniqueItems": true
29122          },
29123          {
29124            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
29125            "in": "query",
29126            "name": "orphanDependents",
29127            "type": "boolean",
29128            "uniqueItems": true
29129          },
29130          {
29131            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
29132            "in": "query",
29133            "name": "propagationPolicy",
29134            "type": "string",
29135            "uniqueItems": true
29136          },
29137          {
29138            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29139            "in": "query",
29140            "name": "resourceVersion",
29141            "type": "string",
29142            "uniqueItems": true
29143          },
29144          {
29145            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29146            "in": "query",
29147            "name": "resourceVersionMatch",
29148            "type": "string",
29149            "uniqueItems": true
29150          },
29151          {
29152            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29153            "in": "query",
29154            "name": "timeoutSeconds",
29155            "type": "integer",
29156            "uniqueItems": true
29157          }
29158        ],
29159        "produces": [
29160          "application/json",
29161          "application/yaml",
29162          "application/vnd.kubernetes.protobuf"
29163        ],
29164        "responses": {
29165          "200": {
29166            "description": "OK",
29167            "schema": {
29168              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
29169            }
29170          },
29171          "401": {
29172            "description": "Unauthorized"
29173          }
29174        },
29175        "schemes": [
29176          "https"
29177        ],
29178        "tags": [
29179          "core_v1"
29180        ],
29181        "x-kubernetes-action": "deletecollection",
29182        "x-kubernetes-group-version-kind": {
29183          "group": "",
29184          "kind": "ServiceAccount",
29185          "version": "v1"
29186        }
29187      },
29188      "get": {
29189        "consumes": [
29190          "*/*"
29191        ],
29192        "description": "list or watch objects of kind ServiceAccount",
29193        "operationId": "listCoreV1NamespacedServiceAccount",
29194        "parameters": [
29195          {
29196            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
29197            "in": "query",
29198            "name": "allowWatchBookmarks",
29199            "type": "boolean",
29200            "uniqueItems": true
29201          },
29202          {
29203            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29204            "in": "query",
29205            "name": "continue",
29206            "type": "string",
29207            "uniqueItems": true
29208          },
29209          {
29210            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29211            "in": "query",
29212            "name": "fieldSelector",
29213            "type": "string",
29214            "uniqueItems": true
29215          },
29216          {
29217            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29218            "in": "query",
29219            "name": "labelSelector",
29220            "type": "string",
29221            "uniqueItems": true
29222          },
29223          {
29224            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29225            "in": "query",
29226            "name": "limit",
29227            "type": "integer",
29228            "uniqueItems": true
29229          },
29230          {
29231            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29232            "in": "query",
29233            "name": "resourceVersion",
29234            "type": "string",
29235            "uniqueItems": true
29236          },
29237          {
29238            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29239            "in": "query",
29240            "name": "resourceVersionMatch",
29241            "type": "string",
29242            "uniqueItems": true
29243          },
29244          {
29245            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29246            "in": "query",
29247            "name": "timeoutSeconds",
29248            "type": "integer",
29249            "uniqueItems": true
29250          },
29251          {
29252            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29253            "in": "query",
29254            "name": "watch",
29255            "type": "boolean",
29256            "uniqueItems": true
29257          }
29258        ],
29259        "produces": [
29260          "application/json",
29261          "application/yaml",
29262          "application/vnd.kubernetes.protobuf",
29263          "application/json;stream=watch",
29264          "application/vnd.kubernetes.protobuf;stream=watch"
29265        ],
29266        "responses": {
29267          "200": {
29268            "description": "OK",
29269            "schema": {
29270              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
29271            }
29272          },
29273          "401": {
29274            "description": "Unauthorized"
29275          }
29276        },
29277        "schemes": [
29278          "https"
29279        ],
29280        "tags": [
29281          "core_v1"
29282        ],
29283        "x-kubernetes-action": "list",
29284        "x-kubernetes-group-version-kind": {
29285          "group": "",
29286          "kind": "ServiceAccount",
29287          "version": "v1"
29288        }
29289      },
29290      "parameters": [
29291        {
29292          "description": "object name and auth scope, such as for teams and projects",
29293          "in": "path",
29294          "name": "namespace",
29295          "required": true,
29296          "type": "string",
29297          "uniqueItems": true
29298        },
29299        {
29300          "description": "If 'true', then the output is pretty printed.",
29301          "in": "query",
29302          "name": "pretty",
29303          "type": "string",
29304          "uniqueItems": true
29305        }
29306      ],
29307      "post": {
29308        "consumes": [
29309          "*/*"
29310        ],
29311        "description": "create a ServiceAccount",
29312        "operationId": "createCoreV1NamespacedServiceAccount",
29313        "parameters": [
29314          {
29315            "in": "body",
29316            "name": "body",
29317            "required": true,
29318            "schema": {
29319              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29320            }
29321          },
29322          {
29323            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29324            "in": "query",
29325            "name": "dryRun",
29326            "type": "string",
29327            "uniqueItems": true
29328          },
29329          {
29330            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29331            "in": "query",
29332            "name": "fieldManager",
29333            "type": "string",
29334            "uniqueItems": true
29335          }
29336        ],
29337        "produces": [
29338          "application/json",
29339          "application/yaml",
29340          "application/vnd.kubernetes.protobuf"
29341        ],
29342        "responses": {
29343          "200": {
29344            "description": "OK",
29345            "schema": {
29346              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29347            }
29348          },
29349          "201": {
29350            "description": "Created",
29351            "schema": {
29352              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29353            }
29354          },
29355          "202": {
29356            "description": "Accepted",
29357            "schema": {
29358              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29359            }
29360          },
29361          "401": {
29362            "description": "Unauthorized"
29363          }
29364        },
29365        "schemes": [
29366          "https"
29367        ],
29368        "tags": [
29369          "core_v1"
29370        ],
29371        "x-kubernetes-action": "post",
29372        "x-kubernetes-group-version-kind": {
29373          "group": "",
29374          "kind": "ServiceAccount",
29375          "version": "v1"
29376        }
29377      }
29378    },
29379    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": {
29380      "delete": {
29381        "consumes": [
29382          "*/*"
29383        ],
29384        "description": "delete a ServiceAccount",
29385        "operationId": "deleteCoreV1NamespacedServiceAccount",
29386        "parameters": [
29387          {
29388            "in": "body",
29389            "name": "body",
29390            "schema": {
29391              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29392            }
29393          },
29394          {
29395            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29396            "in": "query",
29397            "name": "dryRun",
29398            "type": "string",
29399            "uniqueItems": true
29400          },
29401          {
29402            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
29403            "in": "query",
29404            "name": "gracePeriodSeconds",
29405            "type": "integer",
29406            "uniqueItems": true
29407          },
29408          {
29409            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
29410            "in": "query",
29411            "name": "orphanDependents",
29412            "type": "boolean",
29413            "uniqueItems": true
29414          },
29415          {
29416            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
29417            "in": "query",
29418            "name": "propagationPolicy",
29419            "type": "string",
29420            "uniqueItems": true
29421          }
29422        ],
29423        "produces": [
29424          "application/json",
29425          "application/yaml",
29426          "application/vnd.kubernetes.protobuf"
29427        ],
29428        "responses": {
29429          "200": {
29430            "description": "OK",
29431            "schema": {
29432              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29433            }
29434          },
29435          "202": {
29436            "description": "Accepted",
29437            "schema": {
29438              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29439            }
29440          },
29441          "401": {
29442            "description": "Unauthorized"
29443          }
29444        },
29445        "schemes": [
29446          "https"
29447        ],
29448        "tags": [
29449          "core_v1"
29450        ],
29451        "x-kubernetes-action": "delete",
29452        "x-kubernetes-group-version-kind": {
29453          "group": "",
29454          "kind": "ServiceAccount",
29455          "version": "v1"
29456        }
29457      },
29458      "get": {
29459        "consumes": [
29460          "*/*"
29461        ],
29462        "description": "read the specified ServiceAccount",
29463        "operationId": "readCoreV1NamespacedServiceAccount",
29464        "produces": [
29465          "application/json",
29466          "application/yaml",
29467          "application/vnd.kubernetes.protobuf"
29468        ],
29469        "responses": {
29470          "200": {
29471            "description": "OK",
29472            "schema": {
29473              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29474            }
29475          },
29476          "401": {
29477            "description": "Unauthorized"
29478          }
29479        },
29480        "schemes": [
29481          "https"
29482        ],
29483        "tags": [
29484          "core_v1"
29485        ],
29486        "x-kubernetes-action": "get",
29487        "x-kubernetes-group-version-kind": {
29488          "group": "",
29489          "kind": "ServiceAccount",
29490          "version": "v1"
29491        }
29492      },
29493      "parameters": [
29494        {
29495          "description": "name of the ServiceAccount",
29496          "in": "path",
29497          "name": "name",
29498          "required": true,
29499          "type": "string",
29500          "uniqueItems": true
29501        },
29502        {
29503          "description": "object name and auth scope, such as for teams and projects",
29504          "in": "path",
29505          "name": "namespace",
29506          "required": true,
29507          "type": "string",
29508          "uniqueItems": true
29509        },
29510        {
29511          "description": "If 'true', then the output is pretty printed.",
29512          "in": "query",
29513          "name": "pretty",
29514          "type": "string",
29515          "uniqueItems": true
29516        }
29517      ],
29518      "patch": {
29519        "consumes": [
29520          "application/json-patch+json",
29521          "application/merge-patch+json",
29522          "application/strategic-merge-patch+json",
29523          "application/apply-patch+yaml"
29524        ],
29525        "description": "partially update the specified ServiceAccount",
29526        "operationId": "patchCoreV1NamespacedServiceAccount",
29527        "parameters": [
29528          {
29529            "in": "body",
29530            "name": "body",
29531            "required": true,
29532            "schema": {
29533              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
29534            }
29535          },
29536          {
29537            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29538            "in": "query",
29539            "name": "dryRun",
29540            "type": "string",
29541            "uniqueItems": true
29542          },
29543          {
29544            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
29545            "in": "query",
29546            "name": "fieldManager",
29547            "type": "string",
29548            "uniqueItems": true
29549          },
29550          {
29551            "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.",
29552            "in": "query",
29553            "name": "force",
29554            "type": "boolean",
29555            "uniqueItems": true
29556          }
29557        ],
29558        "produces": [
29559          "application/json",
29560          "application/yaml",
29561          "application/vnd.kubernetes.protobuf"
29562        ],
29563        "responses": {
29564          "200": {
29565            "description": "OK",
29566            "schema": {
29567              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29568            }
29569          },
29570          "401": {
29571            "description": "Unauthorized"
29572          }
29573        },
29574        "schemes": [
29575          "https"
29576        ],
29577        "tags": [
29578          "core_v1"
29579        ],
29580        "x-kubernetes-action": "patch",
29581        "x-kubernetes-group-version-kind": {
29582          "group": "",
29583          "kind": "ServiceAccount",
29584          "version": "v1"
29585        }
29586      },
29587      "put": {
29588        "consumes": [
29589          "*/*"
29590        ],
29591        "description": "replace the specified ServiceAccount",
29592        "operationId": "replaceCoreV1NamespacedServiceAccount",
29593        "parameters": [
29594          {
29595            "in": "body",
29596            "name": "body",
29597            "required": true,
29598            "schema": {
29599              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29600            }
29601          },
29602          {
29603            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29604            "in": "query",
29605            "name": "dryRun",
29606            "type": "string",
29607            "uniqueItems": true
29608          },
29609          {
29610            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29611            "in": "query",
29612            "name": "fieldManager",
29613            "type": "string",
29614            "uniqueItems": true
29615          }
29616        ],
29617        "produces": [
29618          "application/json",
29619          "application/yaml",
29620          "application/vnd.kubernetes.protobuf"
29621        ],
29622        "responses": {
29623          "200": {
29624            "description": "OK",
29625            "schema": {
29626              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29627            }
29628          },
29629          "201": {
29630            "description": "Created",
29631            "schema": {
29632              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29633            }
29634          },
29635          "401": {
29636            "description": "Unauthorized"
29637          }
29638        },
29639        "schemes": [
29640          "https"
29641        ],
29642        "tags": [
29643          "core_v1"
29644        ],
29645        "x-kubernetes-action": "put",
29646        "x-kubernetes-group-version-kind": {
29647          "group": "",
29648          "kind": "ServiceAccount",
29649          "version": "v1"
29650        }
29651      }
29652    },
29653    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token": {
29654      "parameters": [
29655        {
29656          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29657          "in": "query",
29658          "name": "dryRun",
29659          "type": "string",
29660          "uniqueItems": true
29661        },
29662        {
29663          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29664          "in": "query",
29665          "name": "fieldManager",
29666          "type": "string",
29667          "uniqueItems": true
29668        },
29669        {
29670          "description": "name of the TokenRequest",
29671          "in": "path",
29672          "name": "name",
29673          "required": true,
29674          "type": "string",
29675          "uniqueItems": true
29676        },
29677        {
29678          "description": "object name and auth scope, such as for teams and projects",
29679          "in": "path",
29680          "name": "namespace",
29681          "required": true,
29682          "type": "string",
29683          "uniqueItems": true
29684        },
29685        {
29686          "description": "If 'true', then the output is pretty printed.",
29687          "in": "query",
29688          "name": "pretty",
29689          "type": "string",
29690          "uniqueItems": true
29691        }
29692      ],
29693      "post": {
29694        "consumes": [
29695          "*/*"
29696        ],
29697        "description": "create token of a ServiceAccount",
29698        "operationId": "createCoreV1NamespacedServiceAccountToken",
29699        "parameters": [
29700          {
29701            "in": "body",
29702            "name": "body",
29703            "required": true,
29704            "schema": {
29705              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29706            }
29707          }
29708        ],
29709        "produces": [
29710          "application/json",
29711          "application/yaml",
29712          "application/vnd.kubernetes.protobuf"
29713        ],
29714        "responses": {
29715          "200": {
29716            "description": "OK",
29717            "schema": {
29718              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29719            }
29720          },
29721          "201": {
29722            "description": "Created",
29723            "schema": {
29724              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29725            }
29726          },
29727          "202": {
29728            "description": "Accepted",
29729            "schema": {
29730              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29731            }
29732          },
29733          "401": {
29734            "description": "Unauthorized"
29735          }
29736        },
29737        "schemes": [
29738          "https"
29739        ],
29740        "tags": [
29741          "core_v1"
29742        ],
29743        "x-kubernetes-action": "post",
29744        "x-kubernetes-group-version-kind": {
29745          "group": "authentication.k8s.io",
29746          "kind": "TokenRequest",
29747          "version": "v1"
29748        }
29749      }
29750    },
29751    "/api/v1/namespaces/{namespace}/services": {
29752      "get": {
29753        "consumes": [
29754          "*/*"
29755        ],
29756        "description": "list or watch objects of kind Service",
29757        "operationId": "listCoreV1NamespacedService",
29758        "parameters": [
29759          {
29760            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
29761            "in": "query",
29762            "name": "allowWatchBookmarks",
29763            "type": "boolean",
29764            "uniqueItems": true
29765          },
29766          {
29767            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29768            "in": "query",
29769            "name": "continue",
29770            "type": "string",
29771            "uniqueItems": true
29772          },
29773          {
29774            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29775            "in": "query",
29776            "name": "fieldSelector",
29777            "type": "string",
29778            "uniqueItems": true
29779          },
29780          {
29781            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29782            "in": "query",
29783            "name": "labelSelector",
29784            "type": "string",
29785            "uniqueItems": true
29786          },
29787          {
29788            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29789            "in": "query",
29790            "name": "limit",
29791            "type": "integer",
29792            "uniqueItems": true
29793          },
29794          {
29795            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29796            "in": "query",
29797            "name": "resourceVersion",
29798            "type": "string",
29799            "uniqueItems": true
29800          },
29801          {
29802            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29803            "in": "query",
29804            "name": "resourceVersionMatch",
29805            "type": "string",
29806            "uniqueItems": true
29807          },
29808          {
29809            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29810            "in": "query",
29811            "name": "timeoutSeconds",
29812            "type": "integer",
29813            "uniqueItems": true
29814          },
29815          {
29816            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29817            "in": "query",
29818            "name": "watch",
29819            "type": "boolean",
29820            "uniqueItems": true
29821          }
29822        ],
29823        "produces": [
29824          "application/json",
29825          "application/yaml",
29826          "application/vnd.kubernetes.protobuf",
29827          "application/json;stream=watch",
29828          "application/vnd.kubernetes.protobuf;stream=watch"
29829        ],
29830        "responses": {
29831          "200": {
29832            "description": "OK",
29833            "schema": {
29834              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
29835            }
29836          },
29837          "401": {
29838            "description": "Unauthorized"
29839          }
29840        },
29841        "schemes": [
29842          "https"
29843        ],
29844        "tags": [
29845          "core_v1"
29846        ],
29847        "x-kubernetes-action": "list",
29848        "x-kubernetes-group-version-kind": {
29849          "group": "",
29850          "kind": "Service",
29851          "version": "v1"
29852        }
29853      },
29854      "parameters": [
29855        {
29856          "description": "object name and auth scope, such as for teams and projects",
29857          "in": "path",
29858          "name": "namespace",
29859          "required": true,
29860          "type": "string",
29861          "uniqueItems": true
29862        },
29863        {
29864          "description": "If 'true', then the output is pretty printed.",
29865          "in": "query",
29866          "name": "pretty",
29867          "type": "string",
29868          "uniqueItems": true
29869        }
29870      ],
29871      "post": {
29872        "consumes": [
29873          "*/*"
29874        ],
29875        "description": "create a Service",
29876        "operationId": "createCoreV1NamespacedService",
29877        "parameters": [
29878          {
29879            "in": "body",
29880            "name": "body",
29881            "required": true,
29882            "schema": {
29883              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29884            }
29885          },
29886          {
29887            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29888            "in": "query",
29889            "name": "dryRun",
29890            "type": "string",
29891            "uniqueItems": true
29892          },
29893          {
29894            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29895            "in": "query",
29896            "name": "fieldManager",
29897            "type": "string",
29898            "uniqueItems": true
29899          }
29900        ],
29901        "produces": [
29902          "application/json",
29903          "application/yaml",
29904          "application/vnd.kubernetes.protobuf"
29905        ],
29906        "responses": {
29907          "200": {
29908            "description": "OK",
29909            "schema": {
29910              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29911            }
29912          },
29913          "201": {
29914            "description": "Created",
29915            "schema": {
29916              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29917            }
29918          },
29919          "202": {
29920            "description": "Accepted",
29921            "schema": {
29922              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29923            }
29924          },
29925          "401": {
29926            "description": "Unauthorized"
29927          }
29928        },
29929        "schemes": [
29930          "https"
29931        ],
29932        "tags": [
29933          "core_v1"
29934        ],
29935        "x-kubernetes-action": "post",
29936        "x-kubernetes-group-version-kind": {
29937          "group": "",
29938          "kind": "Service",
29939          "version": "v1"
29940        }
29941      }
29942    },
29943    "/api/v1/namespaces/{namespace}/services/{name}": {
29944      "delete": {
29945        "consumes": [
29946          "*/*"
29947        ],
29948        "description": "delete a Service",
29949        "operationId": "deleteCoreV1NamespacedService",
29950        "parameters": [
29951          {
29952            "in": "body",
29953            "name": "body",
29954            "schema": {
29955              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29956            }
29957          },
29958          {
29959            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29960            "in": "query",
29961            "name": "dryRun",
29962            "type": "string",
29963            "uniqueItems": true
29964          },
29965          {
29966            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
29967            "in": "query",
29968            "name": "gracePeriodSeconds",
29969            "type": "integer",
29970            "uniqueItems": true
29971          },
29972          {
29973            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
29974            "in": "query",
29975            "name": "orphanDependents",
29976            "type": "boolean",
29977            "uniqueItems": true
29978          },
29979          {
29980            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
29981            "in": "query",
29982            "name": "propagationPolicy",
29983            "type": "string",
29984            "uniqueItems": true
29985          }
29986        ],
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.apimachinery.pkg.apis.meta.v1.Status"
29997            }
29998          },
29999          "202": {
30000            "description": "Accepted",
30001            "schema": {
30002              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30003            }
30004          },
30005          "401": {
30006            "description": "Unauthorized"
30007          }
30008        },
30009        "schemes": [
30010          "https"
30011        ],
30012        "tags": [
30013          "core_v1"
30014        ],
30015        "x-kubernetes-action": "delete",
30016        "x-kubernetes-group-version-kind": {
30017          "group": "",
30018          "kind": "Service",
30019          "version": "v1"
30020        }
30021      },
30022      "get": {
30023        "consumes": [
30024          "*/*"
30025        ],
30026        "description": "read the specified Service",
30027        "operationId": "readCoreV1NamespacedService",
30028        "produces": [
30029          "application/json",
30030          "application/yaml",
30031          "application/vnd.kubernetes.protobuf"
30032        ],
30033        "responses": {
30034          "200": {
30035            "description": "OK",
30036            "schema": {
30037              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30038            }
30039          },
30040          "401": {
30041            "description": "Unauthorized"
30042          }
30043        },
30044        "schemes": [
30045          "https"
30046        ],
30047        "tags": [
30048          "core_v1"
30049        ],
30050        "x-kubernetes-action": "get",
30051        "x-kubernetes-group-version-kind": {
30052          "group": "",
30053          "kind": "Service",
30054          "version": "v1"
30055        }
30056      },
30057      "parameters": [
30058        {
30059          "description": "name of the Service",
30060          "in": "path",
30061          "name": "name",
30062          "required": true,
30063          "type": "string",
30064          "uniqueItems": true
30065        },
30066        {
30067          "description": "object name and auth scope, such as for teams and projects",
30068          "in": "path",
30069          "name": "namespace",
30070          "required": true,
30071          "type": "string",
30072          "uniqueItems": true
30073        },
30074        {
30075          "description": "If 'true', then the output is pretty printed.",
30076          "in": "query",
30077          "name": "pretty",
30078          "type": "string",
30079          "uniqueItems": true
30080        }
30081      ],
30082      "patch": {
30083        "consumes": [
30084          "application/json-patch+json",
30085          "application/merge-patch+json",
30086          "application/strategic-merge-patch+json",
30087          "application/apply-patch+yaml"
30088        ],
30089        "description": "partially update the specified Service",
30090        "operationId": "patchCoreV1NamespacedService",
30091        "parameters": [
30092          {
30093            "in": "body",
30094            "name": "body",
30095            "required": true,
30096            "schema": {
30097              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30098            }
30099          },
30100          {
30101            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30102            "in": "query",
30103            "name": "dryRun",
30104            "type": "string",
30105            "uniqueItems": true
30106          },
30107          {
30108            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
30109            "in": "query",
30110            "name": "fieldManager",
30111            "type": "string",
30112            "uniqueItems": true
30113          },
30114          {
30115            "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.",
30116            "in": "query",
30117            "name": "force",
30118            "type": "boolean",
30119            "uniqueItems": true
30120          }
30121        ],
30122        "produces": [
30123          "application/json",
30124          "application/yaml",
30125          "application/vnd.kubernetes.protobuf"
30126        ],
30127        "responses": {
30128          "200": {
30129            "description": "OK",
30130            "schema": {
30131              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30132            }
30133          },
30134          "401": {
30135            "description": "Unauthorized"
30136          }
30137        },
30138        "schemes": [
30139          "https"
30140        ],
30141        "tags": [
30142          "core_v1"
30143        ],
30144        "x-kubernetes-action": "patch",
30145        "x-kubernetes-group-version-kind": {
30146          "group": "",
30147          "kind": "Service",
30148          "version": "v1"
30149        }
30150      },
30151      "put": {
30152        "consumes": [
30153          "*/*"
30154        ],
30155        "description": "replace the specified Service",
30156        "operationId": "replaceCoreV1NamespacedService",
30157        "parameters": [
30158          {
30159            "in": "body",
30160            "name": "body",
30161            "required": true,
30162            "schema": {
30163              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30164            }
30165          },
30166          {
30167            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30168            "in": "query",
30169            "name": "dryRun",
30170            "type": "string",
30171            "uniqueItems": true
30172          },
30173          {
30174            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30175            "in": "query",
30176            "name": "fieldManager",
30177            "type": "string",
30178            "uniqueItems": true
30179          }
30180        ],
30181        "produces": [
30182          "application/json",
30183          "application/yaml",
30184          "application/vnd.kubernetes.protobuf"
30185        ],
30186        "responses": {
30187          "200": {
30188            "description": "OK",
30189            "schema": {
30190              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30191            }
30192          },
30193          "201": {
30194            "description": "Created",
30195            "schema": {
30196              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30197            }
30198          },
30199          "401": {
30200            "description": "Unauthorized"
30201          }
30202        },
30203        "schemes": [
30204          "https"
30205        ],
30206        "tags": [
30207          "core_v1"
30208        ],
30209        "x-kubernetes-action": "put",
30210        "x-kubernetes-group-version-kind": {
30211          "group": "",
30212          "kind": "Service",
30213          "version": "v1"
30214        }
30215      }
30216    },
30217    "/api/v1/namespaces/{namespace}/services/{name}/proxy": {
30218      "delete": {
30219        "consumes": [
30220          "*/*"
30221        ],
30222        "description": "connect DELETE requests to proxy of Service",
30223        "operationId": "connectCoreV1DeleteNamespacedServiceProxy",
30224        "produces": [
30225          "*/*"
30226        ],
30227        "responses": {
30228          "200": {
30229            "description": "OK",
30230            "schema": {
30231              "type": "string"
30232            }
30233          },
30234          "401": {
30235            "description": "Unauthorized"
30236          }
30237        },
30238        "schemes": [
30239          "https"
30240        ],
30241        "tags": [
30242          "core_v1"
30243        ],
30244        "x-kubernetes-action": "connect",
30245        "x-kubernetes-group-version-kind": {
30246          "group": "",
30247          "kind": "ServiceProxyOptions",
30248          "version": "v1"
30249        }
30250      },
30251      "get": {
30252        "consumes": [
30253          "*/*"
30254        ],
30255        "description": "connect GET requests to proxy of Service",
30256        "operationId": "connectCoreV1GetNamespacedServiceProxy",
30257        "produces": [
30258          "*/*"
30259        ],
30260        "responses": {
30261          "200": {
30262            "description": "OK",
30263            "schema": {
30264              "type": "string"
30265            }
30266          },
30267          "401": {
30268            "description": "Unauthorized"
30269          }
30270        },
30271        "schemes": [
30272          "https"
30273        ],
30274        "tags": [
30275          "core_v1"
30276        ],
30277        "x-kubernetes-action": "connect",
30278        "x-kubernetes-group-version-kind": {
30279          "group": "",
30280          "kind": "ServiceProxyOptions",
30281          "version": "v1"
30282        }
30283      },
30284      "head": {
30285        "consumes": [
30286          "*/*"
30287        ],
30288        "description": "connect HEAD requests to proxy of Service",
30289        "operationId": "connectCoreV1HeadNamespacedServiceProxy",
30290        "produces": [
30291          "*/*"
30292        ],
30293        "responses": {
30294          "200": {
30295            "description": "OK",
30296            "schema": {
30297              "type": "string"
30298            }
30299          },
30300          "401": {
30301            "description": "Unauthorized"
30302          }
30303        },
30304        "schemes": [
30305          "https"
30306        ],
30307        "tags": [
30308          "core_v1"
30309        ],
30310        "x-kubernetes-action": "connect",
30311        "x-kubernetes-group-version-kind": {
30312          "group": "",
30313          "kind": "ServiceProxyOptions",
30314          "version": "v1"
30315        }
30316      },
30317      "options": {
30318        "consumes": [
30319          "*/*"
30320        ],
30321        "description": "connect OPTIONS requests to proxy of Service",
30322        "operationId": "connectCoreV1OptionsNamespacedServiceProxy",
30323        "produces": [
30324          "*/*"
30325        ],
30326        "responses": {
30327          "200": {
30328            "description": "OK",
30329            "schema": {
30330              "type": "string"
30331            }
30332          },
30333          "401": {
30334            "description": "Unauthorized"
30335          }
30336        },
30337        "schemes": [
30338          "https"
30339        ],
30340        "tags": [
30341          "core_v1"
30342        ],
30343        "x-kubernetes-action": "connect",
30344        "x-kubernetes-group-version-kind": {
30345          "group": "",
30346          "kind": "ServiceProxyOptions",
30347          "version": "v1"
30348        }
30349      },
30350      "parameters": [
30351        {
30352          "description": "name of the ServiceProxyOptions",
30353          "in": "path",
30354          "name": "name",
30355          "required": true,
30356          "type": "string",
30357          "uniqueItems": true
30358        },
30359        {
30360          "description": "object name and auth scope, such as for teams and projects",
30361          "in": "path",
30362          "name": "namespace",
30363          "required": true,
30364          "type": "string",
30365          "uniqueItems": true
30366        },
30367        {
30368          "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.",
30369          "in": "query",
30370          "name": "path",
30371          "type": "string",
30372          "uniqueItems": true
30373        }
30374      ],
30375      "patch": {
30376        "consumes": [
30377          "*/*"
30378        ],
30379        "description": "connect PATCH requests to proxy of Service",
30380        "operationId": "connectCoreV1PatchNamespacedServiceProxy",
30381        "produces": [
30382          "*/*"
30383        ],
30384        "responses": {
30385          "200": {
30386            "description": "OK",
30387            "schema": {
30388              "type": "string"
30389            }
30390          },
30391          "401": {
30392            "description": "Unauthorized"
30393          }
30394        },
30395        "schemes": [
30396          "https"
30397        ],
30398        "tags": [
30399          "core_v1"
30400        ],
30401        "x-kubernetes-action": "connect",
30402        "x-kubernetes-group-version-kind": {
30403          "group": "",
30404          "kind": "ServiceProxyOptions",
30405          "version": "v1"
30406        }
30407      },
30408      "post": {
30409        "consumes": [
30410          "*/*"
30411        ],
30412        "description": "connect POST requests to proxy of Service",
30413        "operationId": "connectCoreV1PostNamespacedServiceProxy",
30414        "produces": [
30415          "*/*"
30416        ],
30417        "responses": {
30418          "200": {
30419            "description": "OK",
30420            "schema": {
30421              "type": "string"
30422            }
30423          },
30424          "401": {
30425            "description": "Unauthorized"
30426          }
30427        },
30428        "schemes": [
30429          "https"
30430        ],
30431        "tags": [
30432          "core_v1"
30433        ],
30434        "x-kubernetes-action": "connect",
30435        "x-kubernetes-group-version-kind": {
30436          "group": "",
30437          "kind": "ServiceProxyOptions",
30438          "version": "v1"
30439        }
30440      },
30441      "put": {
30442        "consumes": [
30443          "*/*"
30444        ],
30445        "description": "connect PUT requests to proxy of Service",
30446        "operationId": "connectCoreV1PutNamespacedServiceProxy",
30447        "produces": [
30448          "*/*"
30449        ],
30450        "responses": {
30451          "200": {
30452            "description": "OK",
30453            "schema": {
30454              "type": "string"
30455            }
30456          },
30457          "401": {
30458            "description": "Unauthorized"
30459          }
30460        },
30461        "schemes": [
30462          "https"
30463        ],
30464        "tags": [
30465          "core_v1"
30466        ],
30467        "x-kubernetes-action": "connect",
30468        "x-kubernetes-group-version-kind": {
30469          "group": "",
30470          "kind": "ServiceProxyOptions",
30471          "version": "v1"
30472        }
30473      }
30474    },
30475    "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": {
30476      "delete": {
30477        "consumes": [
30478          "*/*"
30479        ],
30480        "description": "connect DELETE requests to proxy of Service",
30481        "operationId": "connectCoreV1DeleteNamespacedServiceProxyWithPath",
30482        "produces": [
30483          "*/*"
30484        ],
30485        "responses": {
30486          "200": {
30487            "description": "OK",
30488            "schema": {
30489              "type": "string"
30490            }
30491          },
30492          "401": {
30493            "description": "Unauthorized"
30494          }
30495        },
30496        "schemes": [
30497          "https"
30498        ],
30499        "tags": [
30500          "core_v1"
30501        ],
30502        "x-kubernetes-action": "connect",
30503        "x-kubernetes-group-version-kind": {
30504          "group": "",
30505          "kind": "ServiceProxyOptions",
30506          "version": "v1"
30507        }
30508      },
30509      "get": {
30510        "consumes": [
30511          "*/*"
30512        ],
30513        "description": "connect GET requests to proxy of Service",
30514        "operationId": "connectCoreV1GetNamespacedServiceProxyWithPath",
30515        "produces": [
30516          "*/*"
30517        ],
30518        "responses": {
30519          "200": {
30520            "description": "OK",
30521            "schema": {
30522              "type": "string"
30523            }
30524          },
30525          "401": {
30526            "description": "Unauthorized"
30527          }
30528        },
30529        "schemes": [
30530          "https"
30531        ],
30532        "tags": [
30533          "core_v1"
30534        ],
30535        "x-kubernetes-action": "connect",
30536        "x-kubernetes-group-version-kind": {
30537          "group": "",
30538          "kind": "ServiceProxyOptions",
30539          "version": "v1"
30540        }
30541      },
30542      "head": {
30543        "consumes": [
30544          "*/*"
30545        ],
30546        "description": "connect HEAD requests to proxy of Service",
30547        "operationId": "connectCoreV1HeadNamespacedServiceProxyWithPath",
30548        "produces": [
30549          "*/*"
30550        ],
30551        "responses": {
30552          "200": {
30553            "description": "OK",
30554            "schema": {
30555              "type": "string"
30556            }
30557          },
30558          "401": {
30559            "description": "Unauthorized"
30560          }
30561        },
30562        "schemes": [
30563          "https"
30564        ],
30565        "tags": [
30566          "core_v1"
30567        ],
30568        "x-kubernetes-action": "connect",
30569        "x-kubernetes-group-version-kind": {
30570          "group": "",
30571          "kind": "ServiceProxyOptions",
30572          "version": "v1"
30573        }
30574      },
30575      "options": {
30576        "consumes": [
30577          "*/*"
30578        ],
30579        "description": "connect OPTIONS requests to proxy of Service",
30580        "operationId": "connectCoreV1OptionsNamespacedServiceProxyWithPath",
30581        "produces": [
30582          "*/*"
30583        ],
30584        "responses": {
30585          "200": {
30586            "description": "OK",
30587            "schema": {
30588              "type": "string"
30589            }
30590          },
30591          "401": {
30592            "description": "Unauthorized"
30593          }
30594        },
30595        "schemes": [
30596          "https"
30597        ],
30598        "tags": [
30599          "core_v1"
30600        ],
30601        "x-kubernetes-action": "connect",
30602        "x-kubernetes-group-version-kind": {
30603          "group": "",
30604          "kind": "ServiceProxyOptions",
30605          "version": "v1"
30606        }
30607      },
30608      "parameters": [
30609        {
30610          "description": "name of the ServiceProxyOptions",
30611          "in": "path",
30612          "name": "name",
30613          "required": true,
30614          "type": "string",
30615          "uniqueItems": true
30616        },
30617        {
30618          "description": "object name and auth scope, such as for teams and projects",
30619          "in": "path",
30620          "name": "namespace",
30621          "required": true,
30622          "type": "string",
30623          "uniqueItems": true
30624        },
30625        {
30626          "description": "path to the resource",
30627          "in": "path",
30628          "name": "path",
30629          "required": true,
30630          "type": "string",
30631          "uniqueItems": true
30632        },
30633        {
30634          "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.",
30635          "in": "query",
30636          "name": "path",
30637          "type": "string",
30638          "uniqueItems": true
30639        }
30640      ],
30641      "patch": {
30642        "consumes": [
30643          "*/*"
30644        ],
30645        "description": "connect PATCH requests to proxy of Service",
30646        "operationId": "connectCoreV1PatchNamespacedServiceProxyWithPath",
30647        "produces": [
30648          "*/*"
30649        ],
30650        "responses": {
30651          "200": {
30652            "description": "OK",
30653            "schema": {
30654              "type": "string"
30655            }
30656          },
30657          "401": {
30658            "description": "Unauthorized"
30659          }
30660        },
30661        "schemes": [
30662          "https"
30663        ],
30664        "tags": [
30665          "core_v1"
30666        ],
30667        "x-kubernetes-action": "connect",
30668        "x-kubernetes-group-version-kind": {
30669          "group": "",
30670          "kind": "ServiceProxyOptions",
30671          "version": "v1"
30672        }
30673      },
30674      "post": {
30675        "consumes": [
30676          "*/*"
30677        ],
30678        "description": "connect POST requests to proxy of Service",
30679        "operationId": "connectCoreV1PostNamespacedServiceProxyWithPath",
30680        "produces": [
30681          "*/*"
30682        ],
30683        "responses": {
30684          "200": {
30685            "description": "OK",
30686            "schema": {
30687              "type": "string"
30688            }
30689          },
30690          "401": {
30691            "description": "Unauthorized"
30692          }
30693        },
30694        "schemes": [
30695          "https"
30696        ],
30697        "tags": [
30698          "core_v1"
30699        ],
30700        "x-kubernetes-action": "connect",
30701        "x-kubernetes-group-version-kind": {
30702          "group": "",
30703          "kind": "ServiceProxyOptions",
30704          "version": "v1"
30705        }
30706      },
30707      "put": {
30708        "consumes": [
30709          "*/*"
30710        ],
30711        "description": "connect PUT requests to proxy of Service",
30712        "operationId": "connectCoreV1PutNamespacedServiceProxyWithPath",
30713        "produces": [
30714          "*/*"
30715        ],
30716        "responses": {
30717          "200": {
30718            "description": "OK",
30719            "schema": {
30720              "type": "string"
30721            }
30722          },
30723          "401": {
30724            "description": "Unauthorized"
30725          }
30726        },
30727        "schemes": [
30728          "https"
30729        ],
30730        "tags": [
30731          "core_v1"
30732        ],
30733        "x-kubernetes-action": "connect",
30734        "x-kubernetes-group-version-kind": {
30735          "group": "",
30736          "kind": "ServiceProxyOptions",
30737          "version": "v1"
30738        }
30739      }
30740    },
30741    "/api/v1/namespaces/{namespace}/services/{name}/status": {
30742      "get": {
30743        "consumes": [
30744          "*/*"
30745        ],
30746        "description": "read status of the specified Service",
30747        "operationId": "readCoreV1NamespacedServiceStatus",
30748        "produces": [
30749          "application/json",
30750          "application/yaml",
30751          "application/vnd.kubernetes.protobuf"
30752        ],
30753        "responses": {
30754          "200": {
30755            "description": "OK",
30756            "schema": {
30757              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30758            }
30759          },
30760          "401": {
30761            "description": "Unauthorized"
30762          }
30763        },
30764        "schemes": [
30765          "https"
30766        ],
30767        "tags": [
30768          "core_v1"
30769        ],
30770        "x-kubernetes-action": "get",
30771        "x-kubernetes-group-version-kind": {
30772          "group": "",
30773          "kind": "Service",
30774          "version": "v1"
30775        }
30776      },
30777      "parameters": [
30778        {
30779          "description": "name of the Service",
30780          "in": "path",
30781          "name": "name",
30782          "required": true,
30783          "type": "string",
30784          "uniqueItems": true
30785        },
30786        {
30787          "description": "object name and auth scope, such as for teams and projects",
30788          "in": "path",
30789          "name": "namespace",
30790          "required": true,
30791          "type": "string",
30792          "uniqueItems": true
30793        },
30794        {
30795          "description": "If 'true', then the output is pretty printed.",
30796          "in": "query",
30797          "name": "pretty",
30798          "type": "string",
30799          "uniqueItems": true
30800        }
30801      ],
30802      "patch": {
30803        "consumes": [
30804          "application/json-patch+json",
30805          "application/merge-patch+json",
30806          "application/strategic-merge-patch+json",
30807          "application/apply-patch+yaml"
30808        ],
30809        "description": "partially update status of the specified Service",
30810        "operationId": "patchCoreV1NamespacedServiceStatus",
30811        "parameters": [
30812          {
30813            "in": "body",
30814            "name": "body",
30815            "required": true,
30816            "schema": {
30817              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30818            }
30819          },
30820          {
30821            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30822            "in": "query",
30823            "name": "dryRun",
30824            "type": "string",
30825            "uniqueItems": true
30826          },
30827          {
30828            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
30829            "in": "query",
30830            "name": "fieldManager",
30831            "type": "string",
30832            "uniqueItems": true
30833          },
30834          {
30835            "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.",
30836            "in": "query",
30837            "name": "force",
30838            "type": "boolean",
30839            "uniqueItems": true
30840          }
30841        ],
30842        "produces": [
30843          "application/json",
30844          "application/yaml",
30845          "application/vnd.kubernetes.protobuf"
30846        ],
30847        "responses": {
30848          "200": {
30849            "description": "OK",
30850            "schema": {
30851              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30852            }
30853          },
30854          "401": {
30855            "description": "Unauthorized"
30856          }
30857        },
30858        "schemes": [
30859          "https"
30860        ],
30861        "tags": [
30862          "core_v1"
30863        ],
30864        "x-kubernetes-action": "patch",
30865        "x-kubernetes-group-version-kind": {
30866          "group": "",
30867          "kind": "Service",
30868          "version": "v1"
30869        }
30870      },
30871      "put": {
30872        "consumes": [
30873          "*/*"
30874        ],
30875        "description": "replace status of the specified Service",
30876        "operationId": "replaceCoreV1NamespacedServiceStatus",
30877        "parameters": [
30878          {
30879            "in": "body",
30880            "name": "body",
30881            "required": true,
30882            "schema": {
30883              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30884            }
30885          },
30886          {
30887            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30888            "in": "query",
30889            "name": "dryRun",
30890            "type": "string",
30891            "uniqueItems": true
30892          },
30893          {
30894            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30895            "in": "query",
30896            "name": "fieldManager",
30897            "type": "string",
30898            "uniqueItems": true
30899          }
30900        ],
30901        "produces": [
30902          "application/json",
30903          "application/yaml",
30904          "application/vnd.kubernetes.protobuf"
30905        ],
30906        "responses": {
30907          "200": {
30908            "description": "OK",
30909            "schema": {
30910              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30911            }
30912          },
30913          "201": {
30914            "description": "Created",
30915            "schema": {
30916              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30917            }
30918          },
30919          "401": {
30920            "description": "Unauthorized"
30921          }
30922        },
30923        "schemes": [
30924          "https"
30925        ],
30926        "tags": [
30927          "core_v1"
30928        ],
30929        "x-kubernetes-action": "put",
30930        "x-kubernetes-group-version-kind": {
30931          "group": "",
30932          "kind": "Service",
30933          "version": "v1"
30934        }
30935      }
30936    },
30937    "/api/v1/namespaces/{name}": {
30938      "delete": {
30939        "consumes": [
30940          "*/*"
30941        ],
30942        "description": "delete a Namespace",
30943        "operationId": "deleteCoreV1Namespace",
30944        "parameters": [
30945          {
30946            "in": "body",
30947            "name": "body",
30948            "schema": {
30949              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
30950            }
30951          },
30952          {
30953            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30954            "in": "query",
30955            "name": "dryRun",
30956            "type": "string",
30957            "uniqueItems": true
30958          },
30959          {
30960            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
30961            "in": "query",
30962            "name": "gracePeriodSeconds",
30963            "type": "integer",
30964            "uniqueItems": true
30965          },
30966          {
30967            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
30968            "in": "query",
30969            "name": "orphanDependents",
30970            "type": "boolean",
30971            "uniqueItems": true
30972          },
30973          {
30974            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
30975            "in": "query",
30976            "name": "propagationPolicy",
30977            "type": "string",
30978            "uniqueItems": true
30979          }
30980        ],
30981        "produces": [
30982          "application/json",
30983          "application/yaml",
30984          "application/vnd.kubernetes.protobuf"
30985        ],
30986        "responses": {
30987          "200": {
30988            "description": "OK",
30989            "schema": {
30990              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30991            }
30992          },
30993          "202": {
30994            "description": "Accepted",
30995            "schema": {
30996              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30997            }
30998          },
30999          "401": {
31000            "description": "Unauthorized"
31001          }
31002        },
31003        "schemes": [
31004          "https"
31005        ],
31006        "tags": [
31007          "core_v1"
31008        ],
31009        "x-kubernetes-action": "delete",
31010        "x-kubernetes-group-version-kind": {
31011          "group": "",
31012          "kind": "Namespace",
31013          "version": "v1"
31014        }
31015      },
31016      "get": {
31017        "consumes": [
31018          "*/*"
31019        ],
31020        "description": "read the specified Namespace",
31021        "operationId": "readCoreV1Namespace",
31022        "produces": [
31023          "application/json",
31024          "application/yaml",
31025          "application/vnd.kubernetes.protobuf"
31026        ],
31027        "responses": {
31028          "200": {
31029            "description": "OK",
31030            "schema": {
31031              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31032            }
31033          },
31034          "401": {
31035            "description": "Unauthorized"
31036          }
31037        },
31038        "schemes": [
31039          "https"
31040        ],
31041        "tags": [
31042          "core_v1"
31043        ],
31044        "x-kubernetes-action": "get",
31045        "x-kubernetes-group-version-kind": {
31046          "group": "",
31047          "kind": "Namespace",
31048          "version": "v1"
31049        }
31050      },
31051      "parameters": [
31052        {
31053          "description": "name of the Namespace",
31054          "in": "path",
31055          "name": "name",
31056          "required": true,
31057          "type": "string",
31058          "uniqueItems": true
31059        },
31060        {
31061          "description": "If 'true', then the output is pretty printed.",
31062          "in": "query",
31063          "name": "pretty",
31064          "type": "string",
31065          "uniqueItems": true
31066        }
31067      ],
31068      "patch": {
31069        "consumes": [
31070          "application/json-patch+json",
31071          "application/merge-patch+json",
31072          "application/strategic-merge-patch+json",
31073          "application/apply-patch+yaml"
31074        ],
31075        "description": "partially update the specified Namespace",
31076        "operationId": "patchCoreV1Namespace",
31077        "parameters": [
31078          {
31079            "in": "body",
31080            "name": "body",
31081            "required": true,
31082            "schema": {
31083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31084            }
31085          },
31086          {
31087            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31088            "in": "query",
31089            "name": "dryRun",
31090            "type": "string",
31091            "uniqueItems": true
31092          },
31093          {
31094            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
31095            "in": "query",
31096            "name": "fieldManager",
31097            "type": "string",
31098            "uniqueItems": true
31099          },
31100          {
31101            "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.",
31102            "in": "query",
31103            "name": "force",
31104            "type": "boolean",
31105            "uniqueItems": true
31106          }
31107        ],
31108        "produces": [
31109          "application/json",
31110          "application/yaml",
31111          "application/vnd.kubernetes.protobuf"
31112        ],
31113        "responses": {
31114          "200": {
31115            "description": "OK",
31116            "schema": {
31117              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31118            }
31119          },
31120          "401": {
31121            "description": "Unauthorized"
31122          }
31123        },
31124        "schemes": [
31125          "https"
31126        ],
31127        "tags": [
31128          "core_v1"
31129        ],
31130        "x-kubernetes-action": "patch",
31131        "x-kubernetes-group-version-kind": {
31132          "group": "",
31133          "kind": "Namespace",
31134          "version": "v1"
31135        }
31136      },
31137      "put": {
31138        "consumes": [
31139          "*/*"
31140        ],
31141        "description": "replace the specified Namespace",
31142        "operationId": "replaceCoreV1Namespace",
31143        "parameters": [
31144          {
31145            "in": "body",
31146            "name": "body",
31147            "required": true,
31148            "schema": {
31149              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31150            }
31151          },
31152          {
31153            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31154            "in": "query",
31155            "name": "dryRun",
31156            "type": "string",
31157            "uniqueItems": true
31158          },
31159          {
31160            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31161            "in": "query",
31162            "name": "fieldManager",
31163            "type": "string",
31164            "uniqueItems": true
31165          }
31166        ],
31167        "produces": [
31168          "application/json",
31169          "application/yaml",
31170          "application/vnd.kubernetes.protobuf"
31171        ],
31172        "responses": {
31173          "200": {
31174            "description": "OK",
31175            "schema": {
31176              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31177            }
31178          },
31179          "201": {
31180            "description": "Created",
31181            "schema": {
31182              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31183            }
31184          },
31185          "401": {
31186            "description": "Unauthorized"
31187          }
31188        },
31189        "schemes": [
31190          "https"
31191        ],
31192        "tags": [
31193          "core_v1"
31194        ],
31195        "x-kubernetes-action": "put",
31196        "x-kubernetes-group-version-kind": {
31197          "group": "",
31198          "kind": "Namespace",
31199          "version": "v1"
31200        }
31201      }
31202    },
31203    "/api/v1/namespaces/{name}/finalize": {
31204      "parameters": [
31205        {
31206          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31207          "in": "query",
31208          "name": "dryRun",
31209          "type": "string",
31210          "uniqueItems": true
31211        },
31212        {
31213          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31214          "in": "query",
31215          "name": "fieldManager",
31216          "type": "string",
31217          "uniqueItems": true
31218        },
31219        {
31220          "description": "name of the Namespace",
31221          "in": "path",
31222          "name": "name",
31223          "required": true,
31224          "type": "string",
31225          "uniqueItems": true
31226        },
31227        {
31228          "description": "If 'true', then the output is pretty printed.",
31229          "in": "query",
31230          "name": "pretty",
31231          "type": "string",
31232          "uniqueItems": true
31233        }
31234      ],
31235      "put": {
31236        "consumes": [
31237          "*/*"
31238        ],
31239        "description": "replace finalize of the specified Namespace",
31240        "operationId": "replaceCoreV1NamespaceFinalize",
31241        "parameters": [
31242          {
31243            "in": "body",
31244            "name": "body",
31245            "required": true,
31246            "schema": {
31247              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31248            }
31249          }
31250        ],
31251        "produces": [
31252          "application/json",
31253          "application/yaml",
31254          "application/vnd.kubernetes.protobuf"
31255        ],
31256        "responses": {
31257          "200": {
31258            "description": "OK",
31259            "schema": {
31260              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31261            }
31262          },
31263          "201": {
31264            "description": "Created",
31265            "schema": {
31266              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31267            }
31268          },
31269          "401": {
31270            "description": "Unauthorized"
31271          }
31272        },
31273        "schemes": [
31274          "https"
31275        ],
31276        "tags": [
31277          "core_v1"
31278        ],
31279        "x-kubernetes-action": "put",
31280        "x-kubernetes-group-version-kind": {
31281          "group": "",
31282          "kind": "Namespace",
31283          "version": "v1"
31284        }
31285      }
31286    },
31287    "/api/v1/namespaces/{name}/status": {
31288      "get": {
31289        "consumes": [
31290          "*/*"
31291        ],
31292        "description": "read status of the specified Namespace",
31293        "operationId": "readCoreV1NamespaceStatus",
31294        "produces": [
31295          "application/json",
31296          "application/yaml",
31297          "application/vnd.kubernetes.protobuf"
31298        ],
31299        "responses": {
31300          "200": {
31301            "description": "OK",
31302            "schema": {
31303              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31304            }
31305          },
31306          "401": {
31307            "description": "Unauthorized"
31308          }
31309        },
31310        "schemes": [
31311          "https"
31312        ],
31313        "tags": [
31314          "core_v1"
31315        ],
31316        "x-kubernetes-action": "get",
31317        "x-kubernetes-group-version-kind": {
31318          "group": "",
31319          "kind": "Namespace",
31320          "version": "v1"
31321        }
31322      },
31323      "parameters": [
31324        {
31325          "description": "name of the Namespace",
31326          "in": "path",
31327          "name": "name",
31328          "required": true,
31329          "type": "string",
31330          "uniqueItems": true
31331        },
31332        {
31333          "description": "If 'true', then the output is pretty printed.",
31334          "in": "query",
31335          "name": "pretty",
31336          "type": "string",
31337          "uniqueItems": true
31338        }
31339      ],
31340      "patch": {
31341        "consumes": [
31342          "application/json-patch+json",
31343          "application/merge-patch+json",
31344          "application/strategic-merge-patch+json",
31345          "application/apply-patch+yaml"
31346        ],
31347        "description": "partially update status of the specified Namespace",
31348        "operationId": "patchCoreV1NamespaceStatus",
31349        "parameters": [
31350          {
31351            "in": "body",
31352            "name": "body",
31353            "required": true,
31354            "schema": {
31355              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31356            }
31357          },
31358          {
31359            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31360            "in": "query",
31361            "name": "dryRun",
31362            "type": "string",
31363            "uniqueItems": true
31364          },
31365          {
31366            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
31367            "in": "query",
31368            "name": "fieldManager",
31369            "type": "string",
31370            "uniqueItems": true
31371          },
31372          {
31373            "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.",
31374            "in": "query",
31375            "name": "force",
31376            "type": "boolean",
31377            "uniqueItems": true
31378          }
31379        ],
31380        "produces": [
31381          "application/json",
31382          "application/yaml",
31383          "application/vnd.kubernetes.protobuf"
31384        ],
31385        "responses": {
31386          "200": {
31387            "description": "OK",
31388            "schema": {
31389              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31390            }
31391          },
31392          "401": {
31393            "description": "Unauthorized"
31394          }
31395        },
31396        "schemes": [
31397          "https"
31398        ],
31399        "tags": [
31400          "core_v1"
31401        ],
31402        "x-kubernetes-action": "patch",
31403        "x-kubernetes-group-version-kind": {
31404          "group": "",
31405          "kind": "Namespace",
31406          "version": "v1"
31407        }
31408      },
31409      "put": {
31410        "consumes": [
31411          "*/*"
31412        ],
31413        "description": "replace status of the specified Namespace",
31414        "operationId": "replaceCoreV1NamespaceStatus",
31415        "parameters": [
31416          {
31417            "in": "body",
31418            "name": "body",
31419            "required": true,
31420            "schema": {
31421              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31422            }
31423          },
31424          {
31425            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31426            "in": "query",
31427            "name": "dryRun",
31428            "type": "string",
31429            "uniqueItems": true
31430          },
31431          {
31432            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31433            "in": "query",
31434            "name": "fieldManager",
31435            "type": "string",
31436            "uniqueItems": true
31437          }
31438        ],
31439        "produces": [
31440          "application/json",
31441          "application/yaml",
31442          "application/vnd.kubernetes.protobuf"
31443        ],
31444        "responses": {
31445          "200": {
31446            "description": "OK",
31447            "schema": {
31448              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31449            }
31450          },
31451          "201": {
31452            "description": "Created",
31453            "schema": {
31454              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31455            }
31456          },
31457          "401": {
31458            "description": "Unauthorized"
31459          }
31460        },
31461        "schemes": [
31462          "https"
31463        ],
31464        "tags": [
31465          "core_v1"
31466        ],
31467        "x-kubernetes-action": "put",
31468        "x-kubernetes-group-version-kind": {
31469          "group": "",
31470          "kind": "Namespace",
31471          "version": "v1"
31472        }
31473      }
31474    },
31475    "/api/v1/nodes": {
31476      "delete": {
31477        "consumes": [
31478          "*/*"
31479        ],
31480        "description": "delete collection of Node",
31481        "operationId": "deleteCoreV1CollectionNode",
31482        "parameters": [
31483          {
31484            "in": "body",
31485            "name": "body",
31486            "schema": {
31487              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
31488            }
31489          },
31490          {
31491            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31492            "in": "query",
31493            "name": "continue",
31494            "type": "string",
31495            "uniqueItems": true
31496          },
31497          {
31498            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31499            "in": "query",
31500            "name": "dryRun",
31501            "type": "string",
31502            "uniqueItems": true
31503          },
31504          {
31505            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31506            "in": "query",
31507            "name": "fieldSelector",
31508            "type": "string",
31509            "uniqueItems": true
31510          },
31511          {
31512            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
31513            "in": "query",
31514            "name": "gracePeriodSeconds",
31515            "type": "integer",
31516            "uniqueItems": true
31517          },
31518          {
31519            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31520            "in": "query",
31521            "name": "labelSelector",
31522            "type": "string",
31523            "uniqueItems": true
31524          },
31525          {
31526            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31527            "in": "query",
31528            "name": "limit",
31529            "type": "integer",
31530            "uniqueItems": true
31531          },
31532          {
31533            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
31534            "in": "query",
31535            "name": "orphanDependents",
31536            "type": "boolean",
31537            "uniqueItems": true
31538          },
31539          {
31540            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
31541            "in": "query",
31542            "name": "propagationPolicy",
31543            "type": "string",
31544            "uniqueItems": true
31545          },
31546          {
31547            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31548            "in": "query",
31549            "name": "resourceVersion",
31550            "type": "string",
31551            "uniqueItems": true
31552          },
31553          {
31554            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31555            "in": "query",
31556            "name": "resourceVersionMatch",
31557            "type": "string",
31558            "uniqueItems": true
31559          },
31560          {
31561            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31562            "in": "query",
31563            "name": "timeoutSeconds",
31564            "type": "integer",
31565            "uniqueItems": true
31566          }
31567        ],
31568        "produces": [
31569          "application/json",
31570          "application/yaml",
31571          "application/vnd.kubernetes.protobuf"
31572        ],
31573        "responses": {
31574          "200": {
31575            "description": "OK",
31576            "schema": {
31577              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31578            }
31579          },
31580          "401": {
31581            "description": "Unauthorized"
31582          }
31583        },
31584        "schemes": [
31585          "https"
31586        ],
31587        "tags": [
31588          "core_v1"
31589        ],
31590        "x-kubernetes-action": "deletecollection",
31591        "x-kubernetes-group-version-kind": {
31592          "group": "",
31593          "kind": "Node",
31594          "version": "v1"
31595        }
31596      },
31597      "get": {
31598        "consumes": [
31599          "*/*"
31600        ],
31601        "description": "list or watch objects of kind Node",
31602        "operationId": "listCoreV1Node",
31603        "parameters": [
31604          {
31605            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
31606            "in": "query",
31607            "name": "allowWatchBookmarks",
31608            "type": "boolean",
31609            "uniqueItems": true
31610          },
31611          {
31612            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31613            "in": "query",
31614            "name": "continue",
31615            "type": "string",
31616            "uniqueItems": true
31617          },
31618          {
31619            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31620            "in": "query",
31621            "name": "fieldSelector",
31622            "type": "string",
31623            "uniqueItems": true
31624          },
31625          {
31626            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31627            "in": "query",
31628            "name": "labelSelector",
31629            "type": "string",
31630            "uniqueItems": true
31631          },
31632          {
31633            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31634            "in": "query",
31635            "name": "limit",
31636            "type": "integer",
31637            "uniqueItems": true
31638          },
31639          {
31640            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31641            "in": "query",
31642            "name": "resourceVersion",
31643            "type": "string",
31644            "uniqueItems": true
31645          },
31646          {
31647            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31648            "in": "query",
31649            "name": "resourceVersionMatch",
31650            "type": "string",
31651            "uniqueItems": true
31652          },
31653          {
31654            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31655            "in": "query",
31656            "name": "timeoutSeconds",
31657            "type": "integer",
31658            "uniqueItems": true
31659          },
31660          {
31661            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31662            "in": "query",
31663            "name": "watch",
31664            "type": "boolean",
31665            "uniqueItems": true
31666          }
31667        ],
31668        "produces": [
31669          "application/json",
31670          "application/yaml",
31671          "application/vnd.kubernetes.protobuf",
31672          "application/json;stream=watch",
31673          "application/vnd.kubernetes.protobuf;stream=watch"
31674        ],
31675        "responses": {
31676          "200": {
31677            "description": "OK",
31678            "schema": {
31679              "$ref": "#/definitions/io.k8s.api.core.v1.NodeList"
31680            }
31681          },
31682          "401": {
31683            "description": "Unauthorized"
31684          }
31685        },
31686        "schemes": [
31687          "https"
31688        ],
31689        "tags": [
31690          "core_v1"
31691        ],
31692        "x-kubernetes-action": "list",
31693        "x-kubernetes-group-version-kind": {
31694          "group": "",
31695          "kind": "Node",
31696          "version": "v1"
31697        }
31698      },
31699      "parameters": [
31700        {
31701          "description": "If 'true', then the output is pretty printed.",
31702          "in": "query",
31703          "name": "pretty",
31704          "type": "string",
31705          "uniqueItems": true
31706        }
31707      ],
31708      "post": {
31709        "consumes": [
31710          "*/*"
31711        ],
31712        "description": "create a Node",
31713        "operationId": "createCoreV1Node",
31714        "parameters": [
31715          {
31716            "in": "body",
31717            "name": "body",
31718            "required": true,
31719            "schema": {
31720              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31721            }
31722          },
31723          {
31724            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31725            "in": "query",
31726            "name": "dryRun",
31727            "type": "string",
31728            "uniqueItems": true
31729          },
31730          {
31731            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31732            "in": "query",
31733            "name": "fieldManager",
31734            "type": "string",
31735            "uniqueItems": true
31736          }
31737        ],
31738        "produces": [
31739          "application/json",
31740          "application/yaml",
31741          "application/vnd.kubernetes.protobuf"
31742        ],
31743        "responses": {
31744          "200": {
31745            "description": "OK",
31746            "schema": {
31747              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31748            }
31749          },
31750          "201": {
31751            "description": "Created",
31752            "schema": {
31753              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31754            }
31755          },
31756          "202": {
31757            "description": "Accepted",
31758            "schema": {
31759              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31760            }
31761          },
31762          "401": {
31763            "description": "Unauthorized"
31764          }
31765        },
31766        "schemes": [
31767          "https"
31768        ],
31769        "tags": [
31770          "core_v1"
31771        ],
31772        "x-kubernetes-action": "post",
31773        "x-kubernetes-group-version-kind": {
31774          "group": "",
31775          "kind": "Node",
31776          "version": "v1"
31777        }
31778      }
31779    },
31780    "/api/v1/nodes/{name}": {
31781      "delete": {
31782        "consumes": [
31783          "*/*"
31784        ],
31785        "description": "delete a Node",
31786        "operationId": "deleteCoreV1Node",
31787        "parameters": [
31788          {
31789            "in": "body",
31790            "name": "body",
31791            "schema": {
31792              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
31793            }
31794          },
31795          {
31796            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31797            "in": "query",
31798            "name": "dryRun",
31799            "type": "string",
31800            "uniqueItems": true
31801          },
31802          {
31803            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
31804            "in": "query",
31805            "name": "gracePeriodSeconds",
31806            "type": "integer",
31807            "uniqueItems": true
31808          },
31809          {
31810            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
31811            "in": "query",
31812            "name": "orphanDependents",
31813            "type": "boolean",
31814            "uniqueItems": true
31815          },
31816          {
31817            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
31818            "in": "query",
31819            "name": "propagationPolicy",
31820            "type": "string",
31821            "uniqueItems": true
31822          }
31823        ],
31824        "produces": [
31825          "application/json",
31826          "application/yaml",
31827          "application/vnd.kubernetes.protobuf"
31828        ],
31829        "responses": {
31830          "200": {
31831            "description": "OK",
31832            "schema": {
31833              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31834            }
31835          },
31836          "202": {
31837            "description": "Accepted",
31838            "schema": {
31839              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31840            }
31841          },
31842          "401": {
31843            "description": "Unauthorized"
31844          }
31845        },
31846        "schemes": [
31847          "https"
31848        ],
31849        "tags": [
31850          "core_v1"
31851        ],
31852        "x-kubernetes-action": "delete",
31853        "x-kubernetes-group-version-kind": {
31854          "group": "",
31855          "kind": "Node",
31856          "version": "v1"
31857        }
31858      },
31859      "get": {
31860        "consumes": [
31861          "*/*"
31862        ],
31863        "description": "read the specified Node",
31864        "operationId": "readCoreV1Node",
31865        "produces": [
31866          "application/json",
31867          "application/yaml",
31868          "application/vnd.kubernetes.protobuf"
31869        ],
31870        "responses": {
31871          "200": {
31872            "description": "OK",
31873            "schema": {
31874              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31875            }
31876          },
31877          "401": {
31878            "description": "Unauthorized"
31879          }
31880        },
31881        "schemes": [
31882          "https"
31883        ],
31884        "tags": [
31885          "core_v1"
31886        ],
31887        "x-kubernetes-action": "get",
31888        "x-kubernetes-group-version-kind": {
31889          "group": "",
31890          "kind": "Node",
31891          "version": "v1"
31892        }
31893      },
31894      "parameters": [
31895        {
31896          "description": "name of the Node",
31897          "in": "path",
31898          "name": "name",
31899          "required": true,
31900          "type": "string",
31901          "uniqueItems": true
31902        },
31903        {
31904          "description": "If 'true', then the output is pretty printed.",
31905          "in": "query",
31906          "name": "pretty",
31907          "type": "string",
31908          "uniqueItems": true
31909        }
31910      ],
31911      "patch": {
31912        "consumes": [
31913          "application/json-patch+json",
31914          "application/merge-patch+json",
31915          "application/strategic-merge-patch+json",
31916          "application/apply-patch+yaml"
31917        ],
31918        "description": "partially update the specified Node",
31919        "operationId": "patchCoreV1Node",
31920        "parameters": [
31921          {
31922            "in": "body",
31923            "name": "body",
31924            "required": true,
31925            "schema": {
31926              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31927            }
31928          },
31929          {
31930            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31931            "in": "query",
31932            "name": "dryRun",
31933            "type": "string",
31934            "uniqueItems": true
31935          },
31936          {
31937            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
31938            "in": "query",
31939            "name": "fieldManager",
31940            "type": "string",
31941            "uniqueItems": true
31942          },
31943          {
31944            "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.",
31945            "in": "query",
31946            "name": "force",
31947            "type": "boolean",
31948            "uniqueItems": true
31949          }
31950        ],
31951        "produces": [
31952          "application/json",
31953          "application/yaml",
31954          "application/vnd.kubernetes.protobuf"
31955        ],
31956        "responses": {
31957          "200": {
31958            "description": "OK",
31959            "schema": {
31960              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31961            }
31962          },
31963          "401": {
31964            "description": "Unauthorized"
31965          }
31966        },
31967        "schemes": [
31968          "https"
31969        ],
31970        "tags": [
31971          "core_v1"
31972        ],
31973        "x-kubernetes-action": "patch",
31974        "x-kubernetes-group-version-kind": {
31975          "group": "",
31976          "kind": "Node",
31977          "version": "v1"
31978        }
31979      },
31980      "put": {
31981        "consumes": [
31982          "*/*"
31983        ],
31984        "description": "replace the specified Node",
31985        "operationId": "replaceCoreV1Node",
31986        "parameters": [
31987          {
31988            "in": "body",
31989            "name": "body",
31990            "required": true,
31991            "schema": {
31992              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31993            }
31994          },
31995          {
31996            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31997            "in": "query",
31998            "name": "dryRun",
31999            "type": "string",
32000            "uniqueItems": true
32001          },
32002          {
32003            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
32004            "in": "query",
32005            "name": "fieldManager",
32006            "type": "string",
32007            "uniqueItems": true
32008          }
32009        ],
32010        "produces": [
32011          "application/json",
32012          "application/yaml",
32013          "application/vnd.kubernetes.protobuf"
32014        ],
32015        "responses": {
32016          "200": {
32017            "description": "OK",
32018            "schema": {
32019              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32020            }
32021          },
32022          "201": {
32023            "description": "Created",
32024            "schema": {
32025              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32026            }
32027          },
32028          "401": {
32029            "description": "Unauthorized"
32030          }
32031        },
32032        "schemes": [
32033          "https"
32034        ],
32035        "tags": [
32036          "core_v1"
32037        ],
32038        "x-kubernetes-action": "put",
32039        "x-kubernetes-group-version-kind": {
32040          "group": "",
32041          "kind": "Node",
32042          "version": "v1"
32043        }
32044      }
32045    },
32046    "/api/v1/nodes/{name}/proxy": {
32047      "delete": {
32048        "consumes": [
32049          "*/*"
32050        ],
32051        "description": "connect DELETE requests to proxy of Node",
32052        "operationId": "connectCoreV1DeleteNodeProxy",
32053        "produces": [
32054          "*/*"
32055        ],
32056        "responses": {
32057          "200": {
32058            "description": "OK",
32059            "schema": {
32060              "type": "string"
32061            }
32062          },
32063          "401": {
32064            "description": "Unauthorized"
32065          }
32066        },
32067        "schemes": [
32068          "https"
32069        ],
32070        "tags": [
32071          "core_v1"
32072        ],
32073        "x-kubernetes-action": "connect",
32074        "x-kubernetes-group-version-kind": {
32075          "group": "",
32076          "kind": "NodeProxyOptions",
32077          "version": "v1"
32078        }
32079      },
32080      "get": {
32081        "consumes": [
32082          "*/*"
32083        ],
32084        "description": "connect GET requests to proxy of Node",
32085        "operationId": "connectCoreV1GetNodeProxy",
32086        "produces": [
32087          "*/*"
32088        ],
32089        "responses": {
32090          "200": {
32091            "description": "OK",
32092            "schema": {
32093              "type": "string"
32094            }
32095          },
32096          "401": {
32097            "description": "Unauthorized"
32098          }
32099        },
32100        "schemes": [
32101          "https"
32102        ],
32103        "tags": [
32104          "core_v1"
32105        ],
32106        "x-kubernetes-action": "connect",
32107        "x-kubernetes-group-version-kind": {
32108          "group": "",
32109          "kind": "NodeProxyOptions",
32110          "version": "v1"
32111        }
32112      },
32113      "head": {
32114        "consumes": [
32115          "*/*"
32116        ],
32117        "description": "connect HEAD requests to proxy of Node",
32118        "operationId": "connectCoreV1HeadNodeProxy",
32119        "produces": [
32120          "*/*"
32121        ],
32122        "responses": {
32123          "200": {
32124            "description": "OK",
32125            "schema": {
32126              "type": "string"
32127            }
32128          },
32129          "401": {
32130            "description": "Unauthorized"
32131          }
32132        },
32133        "schemes": [
32134          "https"
32135        ],
32136        "tags": [
32137          "core_v1"
32138        ],
32139        "x-kubernetes-action": "connect",
32140        "x-kubernetes-group-version-kind": {
32141          "group": "",
32142          "kind": "NodeProxyOptions",
32143          "version": "v1"
32144        }
32145      },
32146      "options": {
32147        "consumes": [
32148          "*/*"
32149        ],
32150        "description": "connect OPTIONS requests to proxy of Node",
32151        "operationId": "connectCoreV1OptionsNodeProxy",
32152        "produces": [
32153          "*/*"
32154        ],
32155        "responses": {
32156          "200": {
32157            "description": "OK",
32158            "schema": {
32159              "type": "string"
32160            }
32161          },
32162          "401": {
32163            "description": "Unauthorized"
32164          }
32165        },
32166        "schemes": [
32167          "https"
32168        ],
32169        "tags": [
32170          "core_v1"
32171        ],
32172        "x-kubernetes-action": "connect",
32173        "x-kubernetes-group-version-kind": {
32174          "group": "",
32175          "kind": "NodeProxyOptions",
32176          "version": "v1"
32177        }
32178      },
32179      "parameters": [
32180        {
32181          "description": "name of the NodeProxyOptions",
32182          "in": "path",
32183          "name": "name",
32184          "required": true,
32185          "type": "string",
32186          "uniqueItems": true
32187        },
32188        {
32189          "description": "Path is the URL path to use for the current proxy request to node.",
32190          "in": "query",
32191          "name": "path",
32192          "type": "string",
32193          "uniqueItems": true
32194        }
32195      ],
32196      "patch": {
32197        "consumes": [
32198          "*/*"
32199        ],
32200        "description": "connect PATCH requests to proxy of Node",
32201        "operationId": "connectCoreV1PatchNodeProxy",
32202        "produces": [
32203          "*/*"
32204        ],
32205        "responses": {
32206          "200": {
32207            "description": "OK",
32208            "schema": {
32209              "type": "string"
32210            }
32211          },
32212          "401": {
32213            "description": "Unauthorized"
32214          }
32215        },
32216        "schemes": [
32217          "https"
32218        ],
32219        "tags": [
32220          "core_v1"
32221        ],
32222        "x-kubernetes-action": "connect",
32223        "x-kubernetes-group-version-kind": {
32224          "group": "",
32225          "kind": "NodeProxyOptions",
32226          "version": "v1"
32227        }
32228      },
32229      "post": {
32230        "consumes": [
32231          "*/*"
32232        ],
32233        "description": "connect POST requests to proxy of Node",
32234        "operationId": "connectCoreV1PostNodeProxy",
32235        "produces": [
32236          "*/*"
32237        ],
32238        "responses": {
32239          "200": {
32240            "description": "OK",
32241            "schema": {
32242              "type": "string"
32243            }
32244          },
32245          "401": {
32246            "description": "Unauthorized"
32247          }
32248        },
32249        "schemes": [
32250          "https"
32251        ],
32252        "tags": [
32253          "core_v1"
32254        ],
32255        "x-kubernetes-action": "connect",
32256        "x-kubernetes-group-version-kind": {
32257          "group": "",
32258          "kind": "NodeProxyOptions",
32259          "version": "v1"
32260        }
32261      },
32262      "put": {
32263        "consumes": [
32264          "*/*"
32265        ],
32266        "description": "connect PUT requests to proxy of Node",
32267        "operationId": "connectCoreV1PutNodeProxy",
32268        "produces": [
32269          "*/*"
32270        ],
32271        "responses": {
32272          "200": {
32273            "description": "OK",
32274            "schema": {
32275              "type": "string"
32276            }
32277          },
32278          "401": {
32279            "description": "Unauthorized"
32280          }
32281        },
32282        "schemes": [
32283          "https"
32284        ],
32285        "tags": [
32286          "core_v1"
32287        ],
32288        "x-kubernetes-action": "connect",
32289        "x-kubernetes-group-version-kind": {
32290          "group": "",
32291          "kind": "NodeProxyOptions",
32292          "version": "v1"
32293        }
32294      }
32295    },
32296    "/api/v1/nodes/{name}/proxy/{path}": {
32297      "delete": {
32298        "consumes": [
32299          "*/*"
32300        ],
32301        "description": "connect DELETE requests to proxy of Node",
32302        "operationId": "connectCoreV1DeleteNodeProxyWithPath",
32303        "produces": [
32304          "*/*"
32305        ],
32306        "responses": {
32307          "200": {
32308            "description": "OK",
32309            "schema": {
32310              "type": "string"
32311            }
32312          },
32313          "401": {
32314            "description": "Unauthorized"
32315          }
32316        },
32317        "schemes": [
32318          "https"
32319        ],
32320        "tags": [
32321          "core_v1"
32322        ],
32323        "x-kubernetes-action": "connect",
32324        "x-kubernetes-group-version-kind": {
32325          "group": "",
32326          "kind": "NodeProxyOptions",
32327          "version": "v1"
32328        }
32329      },
32330      "get": {
32331        "consumes": [
32332          "*/*"
32333        ],
32334        "description": "connect GET requests to proxy of Node",
32335        "operationId": "connectCoreV1GetNodeProxyWithPath",
32336        "produces": [
32337          "*/*"
32338        ],
32339        "responses": {
32340          "200": {
32341            "description": "OK",
32342            "schema": {
32343              "type": "string"
32344            }
32345          },
32346          "401": {
32347            "description": "Unauthorized"
32348          }
32349        },
32350        "schemes": [
32351          "https"
32352        ],
32353        "tags": [
32354          "core_v1"
32355        ],
32356        "x-kubernetes-action": "connect",
32357        "x-kubernetes-group-version-kind": {
32358          "group": "",
32359          "kind": "NodeProxyOptions",
32360          "version": "v1"
32361        }
32362      },
32363      "head": {
32364        "consumes": [
32365          "*/*"
32366        ],
32367        "description": "connect HEAD requests to proxy of Node",
32368        "operationId": "connectCoreV1HeadNodeProxyWithPath",
32369        "produces": [
32370          "*/*"
32371        ],
32372        "responses": {
32373          "200": {
32374            "description": "OK",
32375            "schema": {
32376              "type": "string"
32377            }
32378          },
32379          "401": {
32380            "description": "Unauthorized"
32381          }
32382        },
32383        "schemes": [
32384          "https"
32385        ],
32386        "tags": [
32387          "core_v1"
32388        ],
32389        "x-kubernetes-action": "connect",
32390        "x-kubernetes-group-version-kind": {
32391          "group": "",
32392          "kind": "NodeProxyOptions",
32393          "version": "v1"
32394        }
32395      },
32396      "options": {
32397        "consumes": [
32398          "*/*"
32399        ],
32400        "description": "connect OPTIONS requests to proxy of Node",
32401        "operationId": "connectCoreV1OptionsNodeProxyWithPath",
32402        "produces": [
32403          "*/*"
32404        ],
32405        "responses": {
32406          "200": {
32407            "description": "OK",
32408            "schema": {
32409              "type": "string"
32410            }
32411          },
32412          "401": {
32413            "description": "Unauthorized"
32414          }
32415        },
32416        "schemes": [
32417          "https"
32418        ],
32419        "tags": [
32420          "core_v1"
32421        ],
32422        "x-kubernetes-action": "connect",
32423        "x-kubernetes-group-version-kind": {
32424          "group": "",
32425          "kind": "NodeProxyOptions",
32426          "version": "v1"
32427        }
32428      },
32429      "parameters": [
32430        {
32431          "description": "name of the NodeProxyOptions",
32432          "in": "path",
32433          "name": "name",
32434          "required": true,
32435          "type": "string",
32436          "uniqueItems": true
32437        },
32438        {
32439          "description": "path to the resource",
32440          "in": "path",
32441          "name": "path",
32442          "required": true,
32443          "type": "string",
32444          "uniqueItems": true
32445        },
32446        {
32447          "description": "Path is the URL path to use for the current proxy request to node.",
32448          "in": "query",
32449          "name": "path",
32450          "type": "string",
32451          "uniqueItems": true
32452        }
32453      ],
32454      "patch": {
32455        "consumes": [
32456          "*/*"
32457        ],
32458        "description": "connect PATCH requests to proxy of Node",
32459        "operationId": "connectCoreV1PatchNodeProxyWithPath",
32460        "produces": [
32461          "*/*"
32462        ],
32463        "responses": {
32464          "200": {
32465            "description": "OK",
32466            "schema": {
32467              "type": "string"
32468            }
32469          },
32470          "401": {
32471            "description": "Unauthorized"
32472          }
32473        },
32474        "schemes": [
32475          "https"
32476        ],
32477        "tags": [
32478          "core_v1"
32479        ],
32480        "x-kubernetes-action": "connect",
32481        "x-kubernetes-group-version-kind": {
32482          "group": "",
32483          "kind": "NodeProxyOptions",
32484          "version": "v1"
32485        }
32486      },
32487      "post": {
32488        "consumes": [
32489          "*/*"
32490        ],
32491        "description": "connect POST requests to proxy of Node",
32492        "operationId": "connectCoreV1PostNodeProxyWithPath",
32493        "produces": [
32494          "*/*"
32495        ],
32496        "responses": {
32497          "200": {
32498            "description": "OK",
32499            "schema": {
32500              "type": "string"
32501            }
32502          },
32503          "401": {
32504            "description": "Unauthorized"
32505          }
32506        },
32507        "schemes": [
32508          "https"
32509        ],
32510        "tags": [
32511          "core_v1"
32512        ],
32513        "x-kubernetes-action": "connect",
32514        "x-kubernetes-group-version-kind": {
32515          "group": "",
32516          "kind": "NodeProxyOptions",
32517          "version": "v1"
32518        }
32519      },
32520      "put": {
32521        "consumes": [
32522          "*/*"
32523        ],
32524        "description": "connect PUT requests to proxy of Node",
32525        "operationId": "connectCoreV1PutNodeProxyWithPath",
32526        "produces": [
32527          "*/*"
32528        ],
32529        "responses": {
32530          "200": {
32531            "description": "OK",
32532            "schema": {
32533              "type": "string"
32534            }
32535          },
32536          "401": {
32537            "description": "Unauthorized"
32538          }
32539        },
32540        "schemes": [
32541          "https"
32542        ],
32543        "tags": [
32544          "core_v1"
32545        ],
32546        "x-kubernetes-action": "connect",
32547        "x-kubernetes-group-version-kind": {
32548          "group": "",
32549          "kind": "NodeProxyOptions",
32550          "version": "v1"
32551        }
32552      }
32553    },
32554    "/api/v1/nodes/{name}/status": {
32555      "get": {
32556        "consumes": [
32557          "*/*"
32558        ],
32559        "description": "read status of the specified Node",
32560        "operationId": "readCoreV1NodeStatus",
32561        "produces": [
32562          "application/json",
32563          "application/yaml",
32564          "application/vnd.kubernetes.protobuf"
32565        ],
32566        "responses": {
32567          "200": {
32568            "description": "OK",
32569            "schema": {
32570              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32571            }
32572          },
32573          "401": {
32574            "description": "Unauthorized"
32575          }
32576        },
32577        "schemes": [
32578          "https"
32579        ],
32580        "tags": [
32581          "core_v1"
32582        ],
32583        "x-kubernetes-action": "get",
32584        "x-kubernetes-group-version-kind": {
32585          "group": "",
32586          "kind": "Node",
32587          "version": "v1"
32588        }
32589      },
32590      "parameters": [
32591        {
32592          "description": "name of the Node",
32593          "in": "path",
32594          "name": "name",
32595          "required": true,
32596          "type": "string",
32597          "uniqueItems": true
32598        },
32599        {
32600          "description": "If 'true', then the output is pretty printed.",
32601          "in": "query",
32602          "name": "pretty",
32603          "type": "string",
32604          "uniqueItems": true
32605        }
32606      ],
32607      "patch": {
32608        "consumes": [
32609          "application/json-patch+json",
32610          "application/merge-patch+json",
32611          "application/strategic-merge-patch+json",
32612          "application/apply-patch+yaml"
32613        ],
32614        "description": "partially update status of the specified Node",
32615        "operationId": "patchCoreV1NodeStatus",
32616        "parameters": [
32617          {
32618            "in": "body",
32619            "name": "body",
32620            "required": true,
32621            "schema": {
32622              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
32623            }
32624          },
32625          {
32626            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32627            "in": "query",
32628            "name": "dryRun",
32629            "type": "string",
32630            "uniqueItems": true
32631          },
32632          {
32633            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
32634            "in": "query",
32635            "name": "fieldManager",
32636            "type": "string",
32637            "uniqueItems": true
32638          },
32639          {
32640            "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.",
32641            "in": "query",
32642            "name": "force",
32643            "type": "boolean",
32644            "uniqueItems": true
32645          }
32646        ],
32647        "produces": [
32648          "application/json",
32649          "application/yaml",
32650          "application/vnd.kubernetes.protobuf"
32651        ],
32652        "responses": {
32653          "200": {
32654            "description": "OK",
32655            "schema": {
32656              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32657            }
32658          },
32659          "401": {
32660            "description": "Unauthorized"
32661          }
32662        },
32663        "schemes": [
32664          "https"
32665        ],
32666        "tags": [
32667          "core_v1"
32668        ],
32669        "x-kubernetes-action": "patch",
32670        "x-kubernetes-group-version-kind": {
32671          "group": "",
32672          "kind": "Node",
32673          "version": "v1"
32674        }
32675      },
32676      "put": {
32677        "consumes": [
32678          "*/*"
32679        ],
32680        "description": "replace status of the specified Node",
32681        "operationId": "replaceCoreV1NodeStatus",
32682        "parameters": [
32683          {
32684            "in": "body",
32685            "name": "body",
32686            "required": true,
32687            "schema": {
32688              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32689            }
32690          },
32691          {
32692            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32693            "in": "query",
32694            "name": "dryRun",
32695            "type": "string",
32696            "uniqueItems": true
32697          },
32698          {
32699            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
32700            "in": "query",
32701            "name": "fieldManager",
32702            "type": "string",
32703            "uniqueItems": true
32704          }
32705        ],
32706        "produces": [
32707          "application/json",
32708          "application/yaml",
32709          "application/vnd.kubernetes.protobuf"
32710        ],
32711        "responses": {
32712          "200": {
32713            "description": "OK",
32714            "schema": {
32715              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32716            }
32717          },
32718          "201": {
32719            "description": "Created",
32720            "schema": {
32721              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32722            }
32723          },
32724          "401": {
32725            "description": "Unauthorized"
32726          }
32727        },
32728        "schemes": [
32729          "https"
32730        ],
32731        "tags": [
32732          "core_v1"
32733        ],
32734        "x-kubernetes-action": "put",
32735        "x-kubernetes-group-version-kind": {
32736          "group": "",
32737          "kind": "Node",
32738          "version": "v1"
32739        }
32740      }
32741    },
32742    "/api/v1/persistentvolumeclaims": {
32743      "get": {
32744        "consumes": [
32745          "*/*"
32746        ],
32747        "description": "list or watch objects of kind PersistentVolumeClaim",
32748        "operationId": "listCoreV1PersistentVolumeClaimForAllNamespaces",
32749        "produces": [
32750          "application/json",
32751          "application/yaml",
32752          "application/vnd.kubernetes.protobuf",
32753          "application/json;stream=watch",
32754          "application/vnd.kubernetes.protobuf;stream=watch"
32755        ],
32756        "responses": {
32757          "200": {
32758            "description": "OK",
32759            "schema": {
32760              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
32761            }
32762          },
32763          "401": {
32764            "description": "Unauthorized"
32765          }
32766        },
32767        "schemes": [
32768          "https"
32769        ],
32770        "tags": [
32771          "core_v1"
32772        ],
32773        "x-kubernetes-action": "list",
32774        "x-kubernetes-group-version-kind": {
32775          "group": "",
32776          "kind": "PersistentVolumeClaim",
32777          "version": "v1"
32778        }
32779      },
32780      "parameters": [
32781        {
32782          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
32783          "in": "query",
32784          "name": "allowWatchBookmarks",
32785          "type": "boolean",
32786          "uniqueItems": true
32787        },
32788        {
32789          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32790          "in": "query",
32791          "name": "continue",
32792          "type": "string",
32793          "uniqueItems": true
32794        },
32795        {
32796          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32797          "in": "query",
32798          "name": "fieldSelector",
32799          "type": "string",
32800          "uniqueItems": true
32801        },
32802        {
32803          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32804          "in": "query",
32805          "name": "labelSelector",
32806          "type": "string",
32807          "uniqueItems": true
32808        },
32809        {
32810          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32811          "in": "query",
32812          "name": "limit",
32813          "type": "integer",
32814          "uniqueItems": true
32815        },
32816        {
32817          "description": "If 'true', then the output is pretty printed.",
32818          "in": "query",
32819          "name": "pretty",
32820          "type": "string",
32821          "uniqueItems": true
32822        },
32823        {
32824          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32825          "in": "query",
32826          "name": "resourceVersion",
32827          "type": "string",
32828          "uniqueItems": true
32829        },
32830        {
32831          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32832          "in": "query",
32833          "name": "resourceVersionMatch",
32834          "type": "string",
32835          "uniqueItems": true
32836        },
32837        {
32838          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32839          "in": "query",
32840          "name": "timeoutSeconds",
32841          "type": "integer",
32842          "uniqueItems": true
32843        },
32844        {
32845          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32846          "in": "query",
32847          "name": "watch",
32848          "type": "boolean",
32849          "uniqueItems": true
32850        }
32851      ]
32852    },
32853    "/api/v1/persistentvolumes": {
32854      "delete": {
32855        "consumes": [
32856          "*/*"
32857        ],
32858        "description": "delete collection of PersistentVolume",
32859        "operationId": "deleteCoreV1CollectionPersistentVolume",
32860        "parameters": [
32861          {
32862            "in": "body",
32863            "name": "body",
32864            "schema": {
32865              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
32866            }
32867          },
32868          {
32869            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32870            "in": "query",
32871            "name": "continue",
32872            "type": "string",
32873            "uniqueItems": true
32874          },
32875          {
32876            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32877            "in": "query",
32878            "name": "dryRun",
32879            "type": "string",
32880            "uniqueItems": true
32881          },
32882          {
32883            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32884            "in": "query",
32885            "name": "fieldSelector",
32886            "type": "string",
32887            "uniqueItems": true
32888          },
32889          {
32890            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
32891            "in": "query",
32892            "name": "gracePeriodSeconds",
32893            "type": "integer",
32894            "uniqueItems": true
32895          },
32896          {
32897            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32898            "in": "query",
32899            "name": "labelSelector",
32900            "type": "string",
32901            "uniqueItems": true
32902          },
32903          {
32904            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32905            "in": "query",
32906            "name": "limit",
32907            "type": "integer",
32908            "uniqueItems": true
32909          },
32910          {
32911            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
32912            "in": "query",
32913            "name": "orphanDependents",
32914            "type": "boolean",
32915            "uniqueItems": true
32916          },
32917          {
32918            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
32919            "in": "query",
32920            "name": "propagationPolicy",
32921            "type": "string",
32922            "uniqueItems": true
32923          },
32924          {
32925            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32926            "in": "query",
32927            "name": "resourceVersion",
32928            "type": "string",
32929            "uniqueItems": true
32930          },
32931          {
32932            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32933            "in": "query",
32934            "name": "resourceVersionMatch",
32935            "type": "string",
32936            "uniqueItems": true
32937          },
32938          {
32939            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32940            "in": "query",
32941            "name": "timeoutSeconds",
32942            "type": "integer",
32943            "uniqueItems": true
32944          }
32945        ],
32946        "produces": [
32947          "application/json",
32948          "application/yaml",
32949          "application/vnd.kubernetes.protobuf"
32950        ],
32951        "responses": {
32952          "200": {
32953            "description": "OK",
32954            "schema": {
32955              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
32956            }
32957          },
32958          "401": {
32959            "description": "Unauthorized"
32960          }
32961        },
32962        "schemes": [
32963          "https"
32964        ],
32965        "tags": [
32966          "core_v1"
32967        ],
32968        "x-kubernetes-action": "deletecollection",
32969        "x-kubernetes-group-version-kind": {
32970          "group": "",
32971          "kind": "PersistentVolume",
32972          "version": "v1"
32973        }
32974      },
32975      "get": {
32976        "consumes": [
32977          "*/*"
32978        ],
32979        "description": "list or watch objects of kind PersistentVolume",
32980        "operationId": "listCoreV1PersistentVolume",
32981        "parameters": [
32982          {
32983            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
32984            "in": "query",
32985            "name": "allowWatchBookmarks",
32986            "type": "boolean",
32987            "uniqueItems": true
32988          },
32989          {
32990            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32991            "in": "query",
32992            "name": "continue",
32993            "type": "string",
32994            "uniqueItems": true
32995          },
32996          {
32997            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32998            "in": "query",
32999            "name": "fieldSelector",
33000            "type": "string",
33001            "uniqueItems": true
33002          },
33003          {
33004            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33005            "in": "query",
33006            "name": "labelSelector",
33007            "type": "string",
33008            "uniqueItems": true
33009          },
33010          {
33011            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33012            "in": "query",
33013            "name": "limit",
33014            "type": "integer",
33015            "uniqueItems": true
33016          },
33017          {
33018            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33019            "in": "query",
33020            "name": "resourceVersion",
33021            "type": "string",
33022            "uniqueItems": true
33023          },
33024          {
33025            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33026            "in": "query",
33027            "name": "resourceVersionMatch",
33028            "type": "string",
33029            "uniqueItems": true
33030          },
33031          {
33032            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33033            "in": "query",
33034            "name": "timeoutSeconds",
33035            "type": "integer",
33036            "uniqueItems": true
33037          },
33038          {
33039            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33040            "in": "query",
33041            "name": "watch",
33042            "type": "boolean",
33043            "uniqueItems": true
33044          }
33045        ],
33046        "produces": [
33047          "application/json",
33048          "application/yaml",
33049          "application/vnd.kubernetes.protobuf",
33050          "application/json;stream=watch",
33051          "application/vnd.kubernetes.protobuf;stream=watch"
33052        ],
33053        "responses": {
33054          "200": {
33055            "description": "OK",
33056            "schema": {
33057              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeList"
33058            }
33059          },
33060          "401": {
33061            "description": "Unauthorized"
33062          }
33063        },
33064        "schemes": [
33065          "https"
33066        ],
33067        "tags": [
33068          "core_v1"
33069        ],
33070        "x-kubernetes-action": "list",
33071        "x-kubernetes-group-version-kind": {
33072          "group": "",
33073          "kind": "PersistentVolume",
33074          "version": "v1"
33075        }
33076      },
33077      "parameters": [
33078        {
33079          "description": "If 'true', then the output is pretty printed.",
33080          "in": "query",
33081          "name": "pretty",
33082          "type": "string",
33083          "uniqueItems": true
33084        }
33085      ],
33086      "post": {
33087        "consumes": [
33088          "*/*"
33089        ],
33090        "description": "create a PersistentVolume",
33091        "operationId": "createCoreV1PersistentVolume",
33092        "parameters": [
33093          {
33094            "in": "body",
33095            "name": "body",
33096            "required": true,
33097            "schema": {
33098              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33099            }
33100          },
33101          {
33102            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33103            "in": "query",
33104            "name": "dryRun",
33105            "type": "string",
33106            "uniqueItems": true
33107          },
33108          {
33109            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
33110            "in": "query",
33111            "name": "fieldManager",
33112            "type": "string",
33113            "uniqueItems": true
33114          }
33115        ],
33116        "produces": [
33117          "application/json",
33118          "application/yaml",
33119          "application/vnd.kubernetes.protobuf"
33120        ],
33121        "responses": {
33122          "200": {
33123            "description": "OK",
33124            "schema": {
33125              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33126            }
33127          },
33128          "201": {
33129            "description": "Created",
33130            "schema": {
33131              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33132            }
33133          },
33134          "202": {
33135            "description": "Accepted",
33136            "schema": {
33137              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33138            }
33139          },
33140          "401": {
33141            "description": "Unauthorized"
33142          }
33143        },
33144        "schemes": [
33145          "https"
33146        ],
33147        "tags": [
33148          "core_v1"
33149        ],
33150        "x-kubernetes-action": "post",
33151        "x-kubernetes-group-version-kind": {
33152          "group": "",
33153          "kind": "PersistentVolume",
33154          "version": "v1"
33155        }
33156      }
33157    },
33158    "/api/v1/persistentvolumes/{name}": {
33159      "delete": {
33160        "consumes": [
33161          "*/*"
33162        ],
33163        "description": "delete a PersistentVolume",
33164        "operationId": "deleteCoreV1PersistentVolume",
33165        "parameters": [
33166          {
33167            "in": "body",
33168            "name": "body",
33169            "schema": {
33170              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
33171            }
33172          },
33173          {
33174            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33175            "in": "query",
33176            "name": "dryRun",
33177            "type": "string",
33178            "uniqueItems": true
33179          },
33180          {
33181            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
33182            "in": "query",
33183            "name": "gracePeriodSeconds",
33184            "type": "integer",
33185            "uniqueItems": true
33186          },
33187          {
33188            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
33189            "in": "query",
33190            "name": "orphanDependents",
33191            "type": "boolean",
33192            "uniqueItems": true
33193          },
33194          {
33195            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
33196            "in": "query",
33197            "name": "propagationPolicy",
33198            "type": "string",
33199            "uniqueItems": true
33200          }
33201        ],
33202        "produces": [
33203          "application/json",
33204          "application/yaml",
33205          "application/vnd.kubernetes.protobuf"
33206        ],
33207        "responses": {
33208          "200": {
33209            "description": "OK",
33210            "schema": {
33211              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33212            }
33213          },
33214          "202": {
33215            "description": "Accepted",
33216            "schema": {
33217              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33218            }
33219          },
33220          "401": {
33221            "description": "Unauthorized"
33222          }
33223        },
33224        "schemes": [
33225          "https"
33226        ],
33227        "tags": [
33228          "core_v1"
33229        ],
33230        "x-kubernetes-action": "delete",
33231        "x-kubernetes-group-version-kind": {
33232          "group": "",
33233          "kind": "PersistentVolume",
33234          "version": "v1"
33235        }
33236      },
33237      "get": {
33238        "consumes": [
33239          "*/*"
33240        ],
33241        "description": "read the specified PersistentVolume",
33242        "operationId": "readCoreV1PersistentVolume",
33243        "produces": [
33244          "application/json",
33245          "application/yaml",
33246          "application/vnd.kubernetes.protobuf"
33247        ],
33248        "responses": {
33249          "200": {
33250            "description": "OK",
33251            "schema": {
33252              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33253            }
33254          },
33255          "401": {
33256            "description": "Unauthorized"
33257          }
33258        },
33259        "schemes": [
33260          "https"
33261        ],
33262        "tags": [
33263          "core_v1"
33264        ],
33265        "x-kubernetes-action": "get",
33266        "x-kubernetes-group-version-kind": {
33267          "group": "",
33268          "kind": "PersistentVolume",
33269          "version": "v1"
33270        }
33271      },
33272      "parameters": [
33273        {
33274          "description": "name of the PersistentVolume",
33275          "in": "path",
33276          "name": "name",
33277          "required": true,
33278          "type": "string",
33279          "uniqueItems": true
33280        },
33281        {
33282          "description": "If 'true', then the output is pretty printed.",
33283          "in": "query",
33284          "name": "pretty",
33285          "type": "string",
33286          "uniqueItems": true
33287        }
33288      ],
33289      "patch": {
33290        "consumes": [
33291          "application/json-patch+json",
33292          "application/merge-patch+json",
33293          "application/strategic-merge-patch+json",
33294          "application/apply-patch+yaml"
33295        ],
33296        "description": "partially update the specified PersistentVolume",
33297        "operationId": "patchCoreV1PersistentVolume",
33298        "parameters": [
33299          {
33300            "in": "body",
33301            "name": "body",
33302            "required": true,
33303            "schema": {
33304              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
33305            }
33306          },
33307          {
33308            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33309            "in": "query",
33310            "name": "dryRun",
33311            "type": "string",
33312            "uniqueItems": true
33313          },
33314          {
33315            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
33316            "in": "query",
33317            "name": "fieldManager",
33318            "type": "string",
33319            "uniqueItems": true
33320          },
33321          {
33322            "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.",
33323            "in": "query",
33324            "name": "force",
33325            "type": "boolean",
33326            "uniqueItems": true
33327          }
33328        ],
33329        "produces": [
33330          "application/json",
33331          "application/yaml",
33332          "application/vnd.kubernetes.protobuf"
33333        ],
33334        "responses": {
33335          "200": {
33336            "description": "OK",
33337            "schema": {
33338              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33339            }
33340          },
33341          "401": {
33342            "description": "Unauthorized"
33343          }
33344        },
33345        "schemes": [
33346          "https"
33347        ],
33348        "tags": [
33349          "core_v1"
33350        ],
33351        "x-kubernetes-action": "patch",
33352        "x-kubernetes-group-version-kind": {
33353          "group": "",
33354          "kind": "PersistentVolume",
33355          "version": "v1"
33356        }
33357      },
33358      "put": {
33359        "consumes": [
33360          "*/*"
33361        ],
33362        "description": "replace the specified PersistentVolume",
33363        "operationId": "replaceCoreV1PersistentVolume",
33364        "parameters": [
33365          {
33366            "in": "body",
33367            "name": "body",
33368            "required": true,
33369            "schema": {
33370              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33371            }
33372          },
33373          {
33374            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33375            "in": "query",
33376            "name": "dryRun",
33377            "type": "string",
33378            "uniqueItems": true
33379          },
33380          {
33381            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
33382            "in": "query",
33383            "name": "fieldManager",
33384            "type": "string",
33385            "uniqueItems": true
33386          }
33387        ],
33388        "produces": [
33389          "application/json",
33390          "application/yaml",
33391          "application/vnd.kubernetes.protobuf"
33392        ],
33393        "responses": {
33394          "200": {
33395            "description": "OK",
33396            "schema": {
33397              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33398            }
33399          },
33400          "201": {
33401            "description": "Created",
33402            "schema": {
33403              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33404            }
33405          },
33406          "401": {
33407            "description": "Unauthorized"
33408          }
33409        },
33410        "schemes": [
33411          "https"
33412        ],
33413        "tags": [
33414          "core_v1"
33415        ],
33416        "x-kubernetes-action": "put",
33417        "x-kubernetes-group-version-kind": {
33418          "group": "",
33419          "kind": "PersistentVolume",
33420          "version": "v1"
33421        }
33422      }
33423    },
33424    "/api/v1/persistentvolumes/{name}/status": {
33425      "get": {
33426        "consumes": [
33427          "*/*"
33428        ],
33429        "description": "read status of the specified PersistentVolume",
33430        "operationId": "readCoreV1PersistentVolumeStatus",
33431        "produces": [
33432          "application/json",
33433          "application/yaml",
33434          "application/vnd.kubernetes.protobuf"
33435        ],
33436        "responses": {
33437          "200": {
33438            "description": "OK",
33439            "schema": {
33440              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33441            }
33442          },
33443          "401": {
33444            "description": "Unauthorized"
33445          }
33446        },
33447        "schemes": [
33448          "https"
33449        ],
33450        "tags": [
33451          "core_v1"
33452        ],
33453        "x-kubernetes-action": "get",
33454        "x-kubernetes-group-version-kind": {
33455          "group": "",
33456          "kind": "PersistentVolume",
33457          "version": "v1"
33458        }
33459      },
33460      "parameters": [
33461        {
33462          "description": "name of the PersistentVolume",
33463          "in": "path",
33464          "name": "name",
33465          "required": true,
33466          "type": "string",
33467          "uniqueItems": true
33468        },
33469        {
33470          "description": "If 'true', then the output is pretty printed.",
33471          "in": "query",
33472          "name": "pretty",
33473          "type": "string",
33474          "uniqueItems": true
33475        }
33476      ],
33477      "patch": {
33478        "consumes": [
33479          "application/json-patch+json",
33480          "application/merge-patch+json",
33481          "application/strategic-merge-patch+json",
33482          "application/apply-patch+yaml"
33483        ],
33484        "description": "partially update status of the specified PersistentVolume",
33485        "operationId": "patchCoreV1PersistentVolumeStatus",
33486        "parameters": [
33487          {
33488            "in": "body",
33489            "name": "body",
33490            "required": true,
33491            "schema": {
33492              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
33493            }
33494          },
33495          {
33496            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33497            "in": "query",
33498            "name": "dryRun",
33499            "type": "string",
33500            "uniqueItems": true
33501          },
33502          {
33503            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
33504            "in": "query",
33505            "name": "fieldManager",
33506            "type": "string",
33507            "uniqueItems": true
33508          },
33509          {
33510            "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.",
33511            "in": "query",
33512            "name": "force",
33513            "type": "boolean",
33514            "uniqueItems": true
33515          }
33516        ],
33517        "produces": [
33518          "application/json",
33519          "application/yaml",
33520          "application/vnd.kubernetes.protobuf"
33521        ],
33522        "responses": {
33523          "200": {
33524            "description": "OK",
33525            "schema": {
33526              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33527            }
33528          },
33529          "401": {
33530            "description": "Unauthorized"
33531          }
33532        },
33533        "schemes": [
33534          "https"
33535        ],
33536        "tags": [
33537          "core_v1"
33538        ],
33539        "x-kubernetes-action": "patch",
33540        "x-kubernetes-group-version-kind": {
33541          "group": "",
33542          "kind": "PersistentVolume",
33543          "version": "v1"
33544        }
33545      },
33546      "put": {
33547        "consumes": [
33548          "*/*"
33549        ],
33550        "description": "replace status of the specified PersistentVolume",
33551        "operationId": "replaceCoreV1PersistentVolumeStatus",
33552        "parameters": [
33553          {
33554            "in": "body",
33555            "name": "body",
33556            "required": true,
33557            "schema": {
33558              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33559            }
33560          },
33561          {
33562            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33563            "in": "query",
33564            "name": "dryRun",
33565            "type": "string",
33566            "uniqueItems": true
33567          },
33568          {
33569            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
33570            "in": "query",
33571            "name": "fieldManager",
33572            "type": "string",
33573            "uniqueItems": true
33574          }
33575        ],
33576        "produces": [
33577          "application/json",
33578          "application/yaml",
33579          "application/vnd.kubernetes.protobuf"
33580        ],
33581        "responses": {
33582          "200": {
33583            "description": "OK",
33584            "schema": {
33585              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33586            }
33587          },
33588          "201": {
33589            "description": "Created",
33590            "schema": {
33591              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33592            }
33593          },
33594          "401": {
33595            "description": "Unauthorized"
33596          }
33597        },
33598        "schemes": [
33599          "https"
33600        ],
33601        "tags": [
33602          "core_v1"
33603        ],
33604        "x-kubernetes-action": "put",
33605        "x-kubernetes-group-version-kind": {
33606          "group": "",
33607          "kind": "PersistentVolume",
33608          "version": "v1"
33609        }
33610      }
33611    },
33612    "/api/v1/pods": {
33613      "get": {
33614        "consumes": [
33615          "*/*"
33616        ],
33617        "description": "list or watch objects of kind Pod",
33618        "operationId": "listCoreV1PodForAllNamespaces",
33619        "produces": [
33620          "application/json",
33621          "application/yaml",
33622          "application/vnd.kubernetes.protobuf",
33623          "application/json;stream=watch",
33624          "application/vnd.kubernetes.protobuf;stream=watch"
33625        ],
33626        "responses": {
33627          "200": {
33628            "description": "OK",
33629            "schema": {
33630              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
33631            }
33632          },
33633          "401": {
33634            "description": "Unauthorized"
33635          }
33636        },
33637        "schemes": [
33638          "https"
33639        ],
33640        "tags": [
33641          "core_v1"
33642        ],
33643        "x-kubernetes-action": "list",
33644        "x-kubernetes-group-version-kind": {
33645          "group": "",
33646          "kind": "Pod",
33647          "version": "v1"
33648        }
33649      },
33650      "parameters": [
33651        {
33652          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33653          "in": "query",
33654          "name": "allowWatchBookmarks",
33655          "type": "boolean",
33656          "uniqueItems": true
33657        },
33658        {
33659          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33660          "in": "query",
33661          "name": "continue",
33662          "type": "string",
33663          "uniqueItems": true
33664        },
33665        {
33666          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33667          "in": "query",
33668          "name": "fieldSelector",
33669          "type": "string",
33670          "uniqueItems": true
33671        },
33672        {
33673          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33674          "in": "query",
33675          "name": "labelSelector",
33676          "type": "string",
33677          "uniqueItems": true
33678        },
33679        {
33680          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33681          "in": "query",
33682          "name": "limit",
33683          "type": "integer",
33684          "uniqueItems": true
33685        },
33686        {
33687          "description": "If 'true', then the output is pretty printed.",
33688          "in": "query",
33689          "name": "pretty",
33690          "type": "string",
33691          "uniqueItems": true
33692        },
33693        {
33694          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33695          "in": "query",
33696          "name": "resourceVersion",
33697          "type": "string",
33698          "uniqueItems": true
33699        },
33700        {
33701          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33702          "in": "query",
33703          "name": "resourceVersionMatch",
33704          "type": "string",
33705          "uniqueItems": true
33706        },
33707        {
33708          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33709          "in": "query",
33710          "name": "timeoutSeconds",
33711          "type": "integer",
33712          "uniqueItems": true
33713        },
33714        {
33715          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33716          "in": "query",
33717          "name": "watch",
33718          "type": "boolean",
33719          "uniqueItems": true
33720        }
33721      ]
33722    },
33723    "/api/v1/podtemplates": {
33724      "get": {
33725        "consumes": [
33726          "*/*"
33727        ],
33728        "description": "list or watch objects of kind PodTemplate",
33729        "operationId": "listCoreV1PodTemplateForAllNamespaces",
33730        "produces": [
33731          "application/json",
33732          "application/yaml",
33733          "application/vnd.kubernetes.protobuf",
33734          "application/json;stream=watch",
33735          "application/vnd.kubernetes.protobuf;stream=watch"
33736        ],
33737        "responses": {
33738          "200": {
33739            "description": "OK",
33740            "schema": {
33741              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
33742            }
33743          },
33744          "401": {
33745            "description": "Unauthorized"
33746          }
33747        },
33748        "schemes": [
33749          "https"
33750        ],
33751        "tags": [
33752          "core_v1"
33753        ],
33754        "x-kubernetes-action": "list",
33755        "x-kubernetes-group-version-kind": {
33756          "group": "",
33757          "kind": "PodTemplate",
33758          "version": "v1"
33759        }
33760      },
33761      "parameters": [
33762        {
33763          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33764          "in": "query",
33765          "name": "allowWatchBookmarks",
33766          "type": "boolean",
33767          "uniqueItems": true
33768        },
33769        {
33770          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33771          "in": "query",
33772          "name": "continue",
33773          "type": "string",
33774          "uniqueItems": true
33775        },
33776        {
33777          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33778          "in": "query",
33779          "name": "fieldSelector",
33780          "type": "string",
33781          "uniqueItems": true
33782        },
33783        {
33784          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33785          "in": "query",
33786          "name": "labelSelector",
33787          "type": "string",
33788          "uniqueItems": true
33789        },
33790        {
33791          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33792          "in": "query",
33793          "name": "limit",
33794          "type": "integer",
33795          "uniqueItems": true
33796        },
33797        {
33798          "description": "If 'true', then the output is pretty printed.",
33799          "in": "query",
33800          "name": "pretty",
33801          "type": "string",
33802          "uniqueItems": true
33803        },
33804        {
33805          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33806          "in": "query",
33807          "name": "resourceVersion",
33808          "type": "string",
33809          "uniqueItems": true
33810        },
33811        {
33812          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33813          "in": "query",
33814          "name": "resourceVersionMatch",
33815          "type": "string",
33816          "uniqueItems": true
33817        },
33818        {
33819          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33820          "in": "query",
33821          "name": "timeoutSeconds",
33822          "type": "integer",
33823          "uniqueItems": true
33824        },
33825        {
33826          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33827          "in": "query",
33828          "name": "watch",
33829          "type": "boolean",
33830          "uniqueItems": true
33831        }
33832      ]
33833    },
33834    "/api/v1/replicationcontrollers": {
33835      "get": {
33836        "consumes": [
33837          "*/*"
33838        ],
33839        "description": "list or watch objects of kind ReplicationController",
33840        "operationId": "listCoreV1ReplicationControllerForAllNamespaces",
33841        "produces": [
33842          "application/json",
33843          "application/yaml",
33844          "application/vnd.kubernetes.protobuf",
33845          "application/json;stream=watch",
33846          "application/vnd.kubernetes.protobuf;stream=watch"
33847        ],
33848        "responses": {
33849          "200": {
33850            "description": "OK",
33851            "schema": {
33852              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
33853            }
33854          },
33855          "401": {
33856            "description": "Unauthorized"
33857          }
33858        },
33859        "schemes": [
33860          "https"
33861        ],
33862        "tags": [
33863          "core_v1"
33864        ],
33865        "x-kubernetes-action": "list",
33866        "x-kubernetes-group-version-kind": {
33867          "group": "",
33868          "kind": "ReplicationController",
33869          "version": "v1"
33870        }
33871      },
33872      "parameters": [
33873        {
33874          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33875          "in": "query",
33876          "name": "allowWatchBookmarks",
33877          "type": "boolean",
33878          "uniqueItems": true
33879        },
33880        {
33881          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33882          "in": "query",
33883          "name": "continue",
33884          "type": "string",
33885          "uniqueItems": true
33886        },
33887        {
33888          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33889          "in": "query",
33890          "name": "fieldSelector",
33891          "type": "string",
33892          "uniqueItems": true
33893        },
33894        {
33895          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33896          "in": "query",
33897          "name": "labelSelector",
33898          "type": "string",
33899          "uniqueItems": true
33900        },
33901        {
33902          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33903          "in": "query",
33904          "name": "limit",
33905          "type": "integer",
33906          "uniqueItems": true
33907        },
33908        {
33909          "description": "If 'true', then the output is pretty printed.",
33910          "in": "query",
33911          "name": "pretty",
33912          "type": "string",
33913          "uniqueItems": true
33914        },
33915        {
33916          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33917          "in": "query",
33918          "name": "resourceVersion",
33919          "type": "string",
33920          "uniqueItems": true
33921        },
33922        {
33923          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33924          "in": "query",
33925          "name": "resourceVersionMatch",
33926          "type": "string",
33927          "uniqueItems": true
33928        },
33929        {
33930          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33931          "in": "query",
33932          "name": "timeoutSeconds",
33933          "type": "integer",
33934          "uniqueItems": true
33935        },
33936        {
33937          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33938          "in": "query",
33939          "name": "watch",
33940          "type": "boolean",
33941          "uniqueItems": true
33942        }
33943      ]
33944    },
33945    "/api/v1/resourcequotas": {
33946      "get": {
33947        "consumes": [
33948          "*/*"
33949        ],
33950        "description": "list or watch objects of kind ResourceQuota",
33951        "operationId": "listCoreV1ResourceQuotaForAllNamespaces",
33952        "produces": [
33953          "application/json",
33954          "application/yaml",
33955          "application/vnd.kubernetes.protobuf",
33956          "application/json;stream=watch",
33957          "application/vnd.kubernetes.protobuf;stream=watch"
33958        ],
33959        "responses": {
33960          "200": {
33961            "description": "OK",
33962            "schema": {
33963              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
33964            }
33965          },
33966          "401": {
33967            "description": "Unauthorized"
33968          }
33969        },
33970        "schemes": [
33971          "https"
33972        ],
33973        "tags": [
33974          "core_v1"
33975        ],
33976        "x-kubernetes-action": "list",
33977        "x-kubernetes-group-version-kind": {
33978          "group": "",
33979          "kind": "ResourceQuota",
33980          "version": "v1"
33981        }
33982      },
33983      "parameters": [
33984        {
33985          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33986          "in": "query",
33987          "name": "allowWatchBookmarks",
33988          "type": "boolean",
33989          "uniqueItems": true
33990        },
33991        {
33992          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33993          "in": "query",
33994          "name": "continue",
33995          "type": "string",
33996          "uniqueItems": true
33997        },
33998        {
33999          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34000          "in": "query",
34001          "name": "fieldSelector",
34002          "type": "string",
34003          "uniqueItems": true
34004        },
34005        {
34006          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34007          "in": "query",
34008          "name": "labelSelector",
34009          "type": "string",
34010          "uniqueItems": true
34011        },
34012        {
34013          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34014          "in": "query",
34015          "name": "limit",
34016          "type": "integer",
34017          "uniqueItems": true
34018        },
34019        {
34020          "description": "If 'true', then the output is pretty printed.",
34021          "in": "query",
34022          "name": "pretty",
34023          "type": "string",
34024          "uniqueItems": true
34025        },
34026        {
34027          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34028          "in": "query",
34029          "name": "resourceVersion",
34030          "type": "string",
34031          "uniqueItems": true
34032        },
34033        {
34034          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34035          "in": "query",
34036          "name": "resourceVersionMatch",
34037          "type": "string",
34038          "uniqueItems": true
34039        },
34040        {
34041          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34042          "in": "query",
34043          "name": "timeoutSeconds",
34044          "type": "integer",
34045          "uniqueItems": true
34046        },
34047        {
34048          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34049          "in": "query",
34050          "name": "watch",
34051          "type": "boolean",
34052          "uniqueItems": true
34053        }
34054      ]
34055    },
34056    "/api/v1/secrets": {
34057      "get": {
34058        "consumes": [
34059          "*/*"
34060        ],
34061        "description": "list or watch objects of kind Secret",
34062        "operationId": "listCoreV1SecretForAllNamespaces",
34063        "produces": [
34064          "application/json",
34065          "application/yaml",
34066          "application/vnd.kubernetes.protobuf",
34067          "application/json;stream=watch",
34068          "application/vnd.kubernetes.protobuf;stream=watch"
34069        ],
34070        "responses": {
34071          "200": {
34072            "description": "OK",
34073            "schema": {
34074              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
34075            }
34076          },
34077          "401": {
34078            "description": "Unauthorized"
34079          }
34080        },
34081        "schemes": [
34082          "https"
34083        ],
34084        "tags": [
34085          "core_v1"
34086        ],
34087        "x-kubernetes-action": "list",
34088        "x-kubernetes-group-version-kind": {
34089          "group": "",
34090          "kind": "Secret",
34091          "version": "v1"
34092        }
34093      },
34094      "parameters": [
34095        {
34096          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34097          "in": "query",
34098          "name": "allowWatchBookmarks",
34099          "type": "boolean",
34100          "uniqueItems": true
34101        },
34102        {
34103          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34104          "in": "query",
34105          "name": "continue",
34106          "type": "string",
34107          "uniqueItems": true
34108        },
34109        {
34110          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34111          "in": "query",
34112          "name": "fieldSelector",
34113          "type": "string",
34114          "uniqueItems": true
34115        },
34116        {
34117          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34118          "in": "query",
34119          "name": "labelSelector",
34120          "type": "string",
34121          "uniqueItems": true
34122        },
34123        {
34124          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34125          "in": "query",
34126          "name": "limit",
34127          "type": "integer",
34128          "uniqueItems": true
34129        },
34130        {
34131          "description": "If 'true', then the output is pretty printed.",
34132          "in": "query",
34133          "name": "pretty",
34134          "type": "string",
34135          "uniqueItems": true
34136        },
34137        {
34138          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34139          "in": "query",
34140          "name": "resourceVersion",
34141          "type": "string",
34142          "uniqueItems": true
34143        },
34144        {
34145          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34146          "in": "query",
34147          "name": "resourceVersionMatch",
34148          "type": "string",
34149          "uniqueItems": true
34150        },
34151        {
34152          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34153          "in": "query",
34154          "name": "timeoutSeconds",
34155          "type": "integer",
34156          "uniqueItems": true
34157        },
34158        {
34159          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34160          "in": "query",
34161          "name": "watch",
34162          "type": "boolean",
34163          "uniqueItems": true
34164        }
34165      ]
34166    },
34167    "/api/v1/serviceaccounts": {
34168      "get": {
34169        "consumes": [
34170          "*/*"
34171        ],
34172        "description": "list or watch objects of kind ServiceAccount",
34173        "operationId": "listCoreV1ServiceAccountForAllNamespaces",
34174        "produces": [
34175          "application/json",
34176          "application/yaml",
34177          "application/vnd.kubernetes.protobuf",
34178          "application/json;stream=watch",
34179          "application/vnd.kubernetes.protobuf;stream=watch"
34180        ],
34181        "responses": {
34182          "200": {
34183            "description": "OK",
34184            "schema": {
34185              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
34186            }
34187          },
34188          "401": {
34189            "description": "Unauthorized"
34190          }
34191        },
34192        "schemes": [
34193          "https"
34194        ],
34195        "tags": [
34196          "core_v1"
34197        ],
34198        "x-kubernetes-action": "list",
34199        "x-kubernetes-group-version-kind": {
34200          "group": "",
34201          "kind": "ServiceAccount",
34202          "version": "v1"
34203        }
34204      },
34205      "parameters": [
34206        {
34207          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34208          "in": "query",
34209          "name": "allowWatchBookmarks",
34210          "type": "boolean",
34211          "uniqueItems": true
34212        },
34213        {
34214          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34215          "in": "query",
34216          "name": "continue",
34217          "type": "string",
34218          "uniqueItems": true
34219        },
34220        {
34221          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34222          "in": "query",
34223          "name": "fieldSelector",
34224          "type": "string",
34225          "uniqueItems": true
34226        },
34227        {
34228          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34229          "in": "query",
34230          "name": "labelSelector",
34231          "type": "string",
34232          "uniqueItems": true
34233        },
34234        {
34235          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34236          "in": "query",
34237          "name": "limit",
34238          "type": "integer",
34239          "uniqueItems": true
34240        },
34241        {
34242          "description": "If 'true', then the output is pretty printed.",
34243          "in": "query",
34244          "name": "pretty",
34245          "type": "string",
34246          "uniqueItems": true
34247        },
34248        {
34249          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34250          "in": "query",
34251          "name": "resourceVersion",
34252          "type": "string",
34253          "uniqueItems": true
34254        },
34255        {
34256          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34257          "in": "query",
34258          "name": "resourceVersionMatch",
34259          "type": "string",
34260          "uniqueItems": true
34261        },
34262        {
34263          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34264          "in": "query",
34265          "name": "timeoutSeconds",
34266          "type": "integer",
34267          "uniqueItems": true
34268        },
34269        {
34270          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34271          "in": "query",
34272          "name": "watch",
34273          "type": "boolean",
34274          "uniqueItems": true
34275        }
34276      ]
34277    },
34278    "/api/v1/services": {
34279      "get": {
34280        "consumes": [
34281          "*/*"
34282        ],
34283        "description": "list or watch objects of kind Service",
34284        "operationId": "listCoreV1ServiceForAllNamespaces",
34285        "produces": [
34286          "application/json",
34287          "application/yaml",
34288          "application/vnd.kubernetes.protobuf",
34289          "application/json;stream=watch",
34290          "application/vnd.kubernetes.protobuf;stream=watch"
34291        ],
34292        "responses": {
34293          "200": {
34294            "description": "OK",
34295            "schema": {
34296              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
34297            }
34298          },
34299          "401": {
34300            "description": "Unauthorized"
34301          }
34302        },
34303        "schemes": [
34304          "https"
34305        ],
34306        "tags": [
34307          "core_v1"
34308        ],
34309        "x-kubernetes-action": "list",
34310        "x-kubernetes-group-version-kind": {
34311          "group": "",
34312          "kind": "Service",
34313          "version": "v1"
34314        }
34315      },
34316      "parameters": [
34317        {
34318          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34319          "in": "query",
34320          "name": "allowWatchBookmarks",
34321          "type": "boolean",
34322          "uniqueItems": true
34323        },
34324        {
34325          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34326          "in": "query",
34327          "name": "continue",
34328          "type": "string",
34329          "uniqueItems": true
34330        },
34331        {
34332          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34333          "in": "query",
34334          "name": "fieldSelector",
34335          "type": "string",
34336          "uniqueItems": true
34337        },
34338        {
34339          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34340          "in": "query",
34341          "name": "labelSelector",
34342          "type": "string",
34343          "uniqueItems": true
34344        },
34345        {
34346          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34347          "in": "query",
34348          "name": "limit",
34349          "type": "integer",
34350          "uniqueItems": true
34351        },
34352        {
34353          "description": "If 'true', then the output is pretty printed.",
34354          "in": "query",
34355          "name": "pretty",
34356          "type": "string",
34357          "uniqueItems": true
34358        },
34359        {
34360          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34361          "in": "query",
34362          "name": "resourceVersion",
34363          "type": "string",
34364          "uniqueItems": true
34365        },
34366        {
34367          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34368          "in": "query",
34369          "name": "resourceVersionMatch",
34370          "type": "string",
34371          "uniqueItems": true
34372        },
34373        {
34374          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34375          "in": "query",
34376          "name": "timeoutSeconds",
34377          "type": "integer",
34378          "uniqueItems": true
34379        },
34380        {
34381          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34382          "in": "query",
34383          "name": "watch",
34384          "type": "boolean",
34385          "uniqueItems": true
34386        }
34387      ]
34388    },
34389    "/api/v1/watch/configmaps": {
34390      "get": {
34391        "consumes": [
34392          "*/*"
34393        ],
34394        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
34395        "operationId": "watchCoreV1ConfigMapListForAllNamespaces",
34396        "produces": [
34397          "application/json",
34398          "application/yaml",
34399          "application/vnd.kubernetes.protobuf",
34400          "application/json;stream=watch",
34401          "application/vnd.kubernetes.protobuf;stream=watch"
34402        ],
34403        "responses": {
34404          "200": {
34405            "description": "OK",
34406            "schema": {
34407              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34408            }
34409          },
34410          "401": {
34411            "description": "Unauthorized"
34412          }
34413        },
34414        "schemes": [
34415          "https"
34416        ],
34417        "tags": [
34418          "core_v1"
34419        ],
34420        "x-kubernetes-action": "watchlist",
34421        "x-kubernetes-group-version-kind": {
34422          "group": "",
34423          "kind": "ConfigMap",
34424          "version": "v1"
34425        }
34426      },
34427      "parameters": [
34428        {
34429          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34430          "in": "query",
34431          "name": "allowWatchBookmarks",
34432          "type": "boolean",
34433          "uniqueItems": true
34434        },
34435        {
34436          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34437          "in": "query",
34438          "name": "continue",
34439          "type": "string",
34440          "uniqueItems": true
34441        },
34442        {
34443          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34444          "in": "query",
34445          "name": "fieldSelector",
34446          "type": "string",
34447          "uniqueItems": true
34448        },
34449        {
34450          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34451          "in": "query",
34452          "name": "labelSelector",
34453          "type": "string",
34454          "uniqueItems": true
34455        },
34456        {
34457          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34458          "in": "query",
34459          "name": "limit",
34460          "type": "integer",
34461          "uniqueItems": true
34462        },
34463        {
34464          "description": "If 'true', then the output is pretty printed.",
34465          "in": "query",
34466          "name": "pretty",
34467          "type": "string",
34468          "uniqueItems": true
34469        },
34470        {
34471          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34472          "in": "query",
34473          "name": "resourceVersion",
34474          "type": "string",
34475          "uniqueItems": true
34476        },
34477        {
34478          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34479          "in": "query",
34480          "name": "resourceVersionMatch",
34481          "type": "string",
34482          "uniqueItems": true
34483        },
34484        {
34485          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34486          "in": "query",
34487          "name": "timeoutSeconds",
34488          "type": "integer",
34489          "uniqueItems": true
34490        },
34491        {
34492          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34493          "in": "query",
34494          "name": "watch",
34495          "type": "boolean",
34496          "uniqueItems": true
34497        }
34498      ]
34499    },
34500    "/api/v1/watch/endpoints": {
34501      "get": {
34502        "consumes": [
34503          "*/*"
34504        ],
34505        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
34506        "operationId": "watchCoreV1EndpointsListForAllNamespaces",
34507        "produces": [
34508          "application/json",
34509          "application/yaml",
34510          "application/vnd.kubernetes.protobuf",
34511          "application/json;stream=watch",
34512          "application/vnd.kubernetes.protobuf;stream=watch"
34513        ],
34514        "responses": {
34515          "200": {
34516            "description": "OK",
34517            "schema": {
34518              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34519            }
34520          },
34521          "401": {
34522            "description": "Unauthorized"
34523          }
34524        },
34525        "schemes": [
34526          "https"
34527        ],
34528        "tags": [
34529          "core_v1"
34530        ],
34531        "x-kubernetes-action": "watchlist",
34532        "x-kubernetes-group-version-kind": {
34533          "group": "",
34534          "kind": "Endpoints",
34535          "version": "v1"
34536        }
34537      },
34538      "parameters": [
34539        {
34540          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34541          "in": "query",
34542          "name": "allowWatchBookmarks",
34543          "type": "boolean",
34544          "uniqueItems": true
34545        },
34546        {
34547          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34548          "in": "query",
34549          "name": "continue",
34550          "type": "string",
34551          "uniqueItems": true
34552        },
34553        {
34554          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34555          "in": "query",
34556          "name": "fieldSelector",
34557          "type": "string",
34558          "uniqueItems": true
34559        },
34560        {
34561          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34562          "in": "query",
34563          "name": "labelSelector",
34564          "type": "string",
34565          "uniqueItems": true
34566        },
34567        {
34568          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34569          "in": "query",
34570          "name": "limit",
34571          "type": "integer",
34572          "uniqueItems": true
34573        },
34574        {
34575          "description": "If 'true', then the output is pretty printed.",
34576          "in": "query",
34577          "name": "pretty",
34578          "type": "string",
34579          "uniqueItems": true
34580        },
34581        {
34582          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34583          "in": "query",
34584          "name": "resourceVersion",
34585          "type": "string",
34586          "uniqueItems": true
34587        },
34588        {
34589          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34590          "in": "query",
34591          "name": "resourceVersionMatch",
34592          "type": "string",
34593          "uniqueItems": true
34594        },
34595        {
34596          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34597          "in": "query",
34598          "name": "timeoutSeconds",
34599          "type": "integer",
34600          "uniqueItems": true
34601        },
34602        {
34603          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34604          "in": "query",
34605          "name": "watch",
34606          "type": "boolean",
34607          "uniqueItems": true
34608        }
34609      ]
34610    },
34611    "/api/v1/watch/events": {
34612      "get": {
34613        "consumes": [
34614          "*/*"
34615        ],
34616        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
34617        "operationId": "watchCoreV1EventListForAllNamespaces",
34618        "produces": [
34619          "application/json",
34620          "application/yaml",
34621          "application/vnd.kubernetes.protobuf",
34622          "application/json;stream=watch",
34623          "application/vnd.kubernetes.protobuf;stream=watch"
34624        ],
34625        "responses": {
34626          "200": {
34627            "description": "OK",
34628            "schema": {
34629              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34630            }
34631          },
34632          "401": {
34633            "description": "Unauthorized"
34634          }
34635        },
34636        "schemes": [
34637          "https"
34638        ],
34639        "tags": [
34640          "core_v1"
34641        ],
34642        "x-kubernetes-action": "watchlist",
34643        "x-kubernetes-group-version-kind": {
34644          "group": "",
34645          "kind": "Event",
34646          "version": "v1"
34647        }
34648      },
34649      "parameters": [
34650        {
34651          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34652          "in": "query",
34653          "name": "allowWatchBookmarks",
34654          "type": "boolean",
34655          "uniqueItems": true
34656        },
34657        {
34658          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34659          "in": "query",
34660          "name": "continue",
34661          "type": "string",
34662          "uniqueItems": true
34663        },
34664        {
34665          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34666          "in": "query",
34667          "name": "fieldSelector",
34668          "type": "string",
34669          "uniqueItems": true
34670        },
34671        {
34672          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34673          "in": "query",
34674          "name": "labelSelector",
34675          "type": "string",
34676          "uniqueItems": true
34677        },
34678        {
34679          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34680          "in": "query",
34681          "name": "limit",
34682          "type": "integer",
34683          "uniqueItems": true
34684        },
34685        {
34686          "description": "If 'true', then the output is pretty printed.",
34687          "in": "query",
34688          "name": "pretty",
34689          "type": "string",
34690          "uniqueItems": true
34691        },
34692        {
34693          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34694          "in": "query",
34695          "name": "resourceVersion",
34696          "type": "string",
34697          "uniqueItems": true
34698        },
34699        {
34700          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34701          "in": "query",
34702          "name": "resourceVersionMatch",
34703          "type": "string",
34704          "uniqueItems": true
34705        },
34706        {
34707          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34708          "in": "query",
34709          "name": "timeoutSeconds",
34710          "type": "integer",
34711          "uniqueItems": true
34712        },
34713        {
34714          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34715          "in": "query",
34716          "name": "watch",
34717          "type": "boolean",
34718          "uniqueItems": true
34719        }
34720      ]
34721    },
34722    "/api/v1/watch/limitranges": {
34723      "get": {
34724        "consumes": [
34725          "*/*"
34726        ],
34727        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
34728        "operationId": "watchCoreV1LimitRangeListForAllNamespaces",
34729        "produces": [
34730          "application/json",
34731          "application/yaml",
34732          "application/vnd.kubernetes.protobuf",
34733          "application/json;stream=watch",
34734          "application/vnd.kubernetes.protobuf;stream=watch"
34735        ],
34736        "responses": {
34737          "200": {
34738            "description": "OK",
34739            "schema": {
34740              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34741            }
34742          },
34743          "401": {
34744            "description": "Unauthorized"
34745          }
34746        },
34747        "schemes": [
34748          "https"
34749        ],
34750        "tags": [
34751          "core_v1"
34752        ],
34753        "x-kubernetes-action": "watchlist",
34754        "x-kubernetes-group-version-kind": {
34755          "group": "",
34756          "kind": "LimitRange",
34757          "version": "v1"
34758        }
34759      },
34760      "parameters": [
34761        {
34762          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34763          "in": "query",
34764          "name": "allowWatchBookmarks",
34765          "type": "boolean",
34766          "uniqueItems": true
34767        },
34768        {
34769          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34770          "in": "query",
34771          "name": "continue",
34772          "type": "string",
34773          "uniqueItems": true
34774        },
34775        {
34776          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34777          "in": "query",
34778          "name": "fieldSelector",
34779          "type": "string",
34780          "uniqueItems": true
34781        },
34782        {
34783          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34784          "in": "query",
34785          "name": "labelSelector",
34786          "type": "string",
34787          "uniqueItems": true
34788        },
34789        {
34790          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34791          "in": "query",
34792          "name": "limit",
34793          "type": "integer",
34794          "uniqueItems": true
34795        },
34796        {
34797          "description": "If 'true', then the output is pretty printed.",
34798          "in": "query",
34799          "name": "pretty",
34800          "type": "string",
34801          "uniqueItems": true
34802        },
34803        {
34804          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34805          "in": "query",
34806          "name": "resourceVersion",
34807          "type": "string",
34808          "uniqueItems": true
34809        },
34810        {
34811          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34812          "in": "query",
34813          "name": "resourceVersionMatch",
34814          "type": "string",
34815          "uniqueItems": true
34816        },
34817        {
34818          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34819          "in": "query",
34820          "name": "timeoutSeconds",
34821          "type": "integer",
34822          "uniqueItems": true
34823        },
34824        {
34825          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34826          "in": "query",
34827          "name": "watch",
34828          "type": "boolean",
34829          "uniqueItems": true
34830        }
34831      ]
34832    },
34833    "/api/v1/watch/namespaces": {
34834      "get": {
34835        "consumes": [
34836          "*/*"
34837        ],
34838        "description": "watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead.",
34839        "operationId": "watchCoreV1NamespaceList",
34840        "produces": [
34841          "application/json",
34842          "application/yaml",
34843          "application/vnd.kubernetes.protobuf",
34844          "application/json;stream=watch",
34845          "application/vnd.kubernetes.protobuf;stream=watch"
34846        ],
34847        "responses": {
34848          "200": {
34849            "description": "OK",
34850            "schema": {
34851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34852            }
34853          },
34854          "401": {
34855            "description": "Unauthorized"
34856          }
34857        },
34858        "schemes": [
34859          "https"
34860        ],
34861        "tags": [
34862          "core_v1"
34863        ],
34864        "x-kubernetes-action": "watchlist",
34865        "x-kubernetes-group-version-kind": {
34866          "group": "",
34867          "kind": "Namespace",
34868          "version": "v1"
34869        }
34870      },
34871      "parameters": [
34872        {
34873          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34874          "in": "query",
34875          "name": "allowWatchBookmarks",
34876          "type": "boolean",
34877          "uniqueItems": true
34878        },
34879        {
34880          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34881          "in": "query",
34882          "name": "continue",
34883          "type": "string",
34884          "uniqueItems": true
34885        },
34886        {
34887          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34888          "in": "query",
34889          "name": "fieldSelector",
34890          "type": "string",
34891          "uniqueItems": true
34892        },
34893        {
34894          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34895          "in": "query",
34896          "name": "labelSelector",
34897          "type": "string",
34898          "uniqueItems": true
34899        },
34900        {
34901          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34902          "in": "query",
34903          "name": "limit",
34904          "type": "integer",
34905          "uniqueItems": true
34906        },
34907        {
34908          "description": "If 'true', then the output is pretty printed.",
34909          "in": "query",
34910          "name": "pretty",
34911          "type": "string",
34912          "uniqueItems": true
34913        },
34914        {
34915          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34916          "in": "query",
34917          "name": "resourceVersion",
34918          "type": "string",
34919          "uniqueItems": true
34920        },
34921        {
34922          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34923          "in": "query",
34924          "name": "resourceVersionMatch",
34925          "type": "string",
34926          "uniqueItems": true
34927        },
34928        {
34929          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34930          "in": "query",
34931          "name": "timeoutSeconds",
34932          "type": "integer",
34933          "uniqueItems": true
34934        },
34935        {
34936          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34937          "in": "query",
34938          "name": "watch",
34939          "type": "boolean",
34940          "uniqueItems": true
34941        }
34942      ]
34943    },
34944    "/api/v1/watch/namespaces/{namespace}/configmaps": {
34945      "get": {
34946        "consumes": [
34947          "*/*"
34948        ],
34949        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
34950        "operationId": "watchCoreV1NamespacedConfigMapList",
34951        "produces": [
34952          "application/json",
34953          "application/yaml",
34954          "application/vnd.kubernetes.protobuf",
34955          "application/json;stream=watch",
34956          "application/vnd.kubernetes.protobuf;stream=watch"
34957        ],
34958        "responses": {
34959          "200": {
34960            "description": "OK",
34961            "schema": {
34962              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34963            }
34964          },
34965          "401": {
34966            "description": "Unauthorized"
34967          }
34968        },
34969        "schemes": [
34970          "https"
34971        ],
34972        "tags": [
34973          "core_v1"
34974        ],
34975        "x-kubernetes-action": "watchlist",
34976        "x-kubernetes-group-version-kind": {
34977          "group": "",
34978          "kind": "ConfigMap",
34979          "version": "v1"
34980        }
34981      },
34982      "parameters": [
34983        {
34984          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34985          "in": "query",
34986          "name": "allowWatchBookmarks",
34987          "type": "boolean",
34988          "uniqueItems": true
34989        },
34990        {
34991          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34992          "in": "query",
34993          "name": "continue",
34994          "type": "string",
34995          "uniqueItems": true
34996        },
34997        {
34998          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34999          "in": "query",
35000          "name": "fieldSelector",
35001          "type": "string",
35002          "uniqueItems": true
35003        },
35004        {
35005          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35006          "in": "query",
35007          "name": "labelSelector",
35008          "type": "string",
35009          "uniqueItems": true
35010        },
35011        {
35012          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35013          "in": "query",
35014          "name": "limit",
35015          "type": "integer",
35016          "uniqueItems": true
35017        },
35018        {
35019          "description": "object name and auth scope, such as for teams and projects",
35020          "in": "path",
35021          "name": "namespace",
35022          "required": true,
35023          "type": "string",
35024          "uniqueItems": true
35025        },
35026        {
35027          "description": "If 'true', then the output is pretty printed.",
35028          "in": "query",
35029          "name": "pretty",
35030          "type": "string",
35031          "uniqueItems": true
35032        },
35033        {
35034          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35035          "in": "query",
35036          "name": "resourceVersion",
35037          "type": "string",
35038          "uniqueItems": true
35039        },
35040        {
35041          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35042          "in": "query",
35043          "name": "resourceVersionMatch",
35044          "type": "string",
35045          "uniqueItems": true
35046        },
35047        {
35048          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35049          "in": "query",
35050          "name": "timeoutSeconds",
35051          "type": "integer",
35052          "uniqueItems": true
35053        },
35054        {
35055          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35056          "in": "query",
35057          "name": "watch",
35058          "type": "boolean",
35059          "uniqueItems": true
35060        }
35061      ]
35062    },
35063    "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": {
35064      "get": {
35065        "consumes": [
35066          "*/*"
35067        ],
35068        "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.",
35069        "operationId": "watchCoreV1NamespacedConfigMap",
35070        "produces": [
35071          "application/json",
35072          "application/yaml",
35073          "application/vnd.kubernetes.protobuf",
35074          "application/json;stream=watch",
35075          "application/vnd.kubernetes.protobuf;stream=watch"
35076        ],
35077        "responses": {
35078          "200": {
35079            "description": "OK",
35080            "schema": {
35081              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35082            }
35083          },
35084          "401": {
35085            "description": "Unauthorized"
35086          }
35087        },
35088        "schemes": [
35089          "https"
35090        ],
35091        "tags": [
35092          "core_v1"
35093        ],
35094        "x-kubernetes-action": "watch",
35095        "x-kubernetes-group-version-kind": {
35096          "group": "",
35097          "kind": "ConfigMap",
35098          "version": "v1"
35099        }
35100      },
35101      "parameters": [
35102        {
35103          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35104          "in": "query",
35105          "name": "allowWatchBookmarks",
35106          "type": "boolean",
35107          "uniqueItems": true
35108        },
35109        {
35110          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35111          "in": "query",
35112          "name": "continue",
35113          "type": "string",
35114          "uniqueItems": true
35115        },
35116        {
35117          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35118          "in": "query",
35119          "name": "fieldSelector",
35120          "type": "string",
35121          "uniqueItems": true
35122        },
35123        {
35124          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35125          "in": "query",
35126          "name": "labelSelector",
35127          "type": "string",
35128          "uniqueItems": true
35129        },
35130        {
35131          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35132          "in": "query",
35133          "name": "limit",
35134          "type": "integer",
35135          "uniqueItems": true
35136        },
35137        {
35138          "description": "name of the ConfigMap",
35139          "in": "path",
35140          "name": "name",
35141          "required": true,
35142          "type": "string",
35143          "uniqueItems": true
35144        },
35145        {
35146          "description": "object name and auth scope, such as for teams and projects",
35147          "in": "path",
35148          "name": "namespace",
35149          "required": true,
35150          "type": "string",
35151          "uniqueItems": true
35152        },
35153        {
35154          "description": "If 'true', then the output is pretty printed.",
35155          "in": "query",
35156          "name": "pretty",
35157          "type": "string",
35158          "uniqueItems": true
35159        },
35160        {
35161          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35162          "in": "query",
35163          "name": "resourceVersion",
35164          "type": "string",
35165          "uniqueItems": true
35166        },
35167        {
35168          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35169          "in": "query",
35170          "name": "resourceVersionMatch",
35171          "type": "string",
35172          "uniqueItems": true
35173        },
35174        {
35175          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35176          "in": "query",
35177          "name": "timeoutSeconds",
35178          "type": "integer",
35179          "uniqueItems": true
35180        },
35181        {
35182          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35183          "in": "query",
35184          "name": "watch",
35185          "type": "boolean",
35186          "uniqueItems": true
35187        }
35188      ]
35189    },
35190    "/api/v1/watch/namespaces/{namespace}/endpoints": {
35191      "get": {
35192        "consumes": [
35193          "*/*"
35194        ],
35195        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
35196        "operationId": "watchCoreV1NamespacedEndpointsList",
35197        "produces": [
35198          "application/json",
35199          "application/yaml",
35200          "application/vnd.kubernetes.protobuf",
35201          "application/json;stream=watch",
35202          "application/vnd.kubernetes.protobuf;stream=watch"
35203        ],
35204        "responses": {
35205          "200": {
35206            "description": "OK",
35207            "schema": {
35208              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35209            }
35210          },
35211          "401": {
35212            "description": "Unauthorized"
35213          }
35214        },
35215        "schemes": [
35216          "https"
35217        ],
35218        "tags": [
35219          "core_v1"
35220        ],
35221        "x-kubernetes-action": "watchlist",
35222        "x-kubernetes-group-version-kind": {
35223          "group": "",
35224          "kind": "Endpoints",
35225          "version": "v1"
35226        }
35227      },
35228      "parameters": [
35229        {
35230          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35231          "in": "query",
35232          "name": "allowWatchBookmarks",
35233          "type": "boolean",
35234          "uniqueItems": true
35235        },
35236        {
35237          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35238          "in": "query",
35239          "name": "continue",
35240          "type": "string",
35241          "uniqueItems": true
35242        },
35243        {
35244          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35245          "in": "query",
35246          "name": "fieldSelector",
35247          "type": "string",
35248          "uniqueItems": true
35249        },
35250        {
35251          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35252          "in": "query",
35253          "name": "labelSelector",
35254          "type": "string",
35255          "uniqueItems": true
35256        },
35257        {
35258          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35259          "in": "query",
35260          "name": "limit",
35261          "type": "integer",
35262          "uniqueItems": true
35263        },
35264        {
35265          "description": "object name and auth scope, such as for teams and projects",
35266          "in": "path",
35267          "name": "namespace",
35268          "required": true,
35269          "type": "string",
35270          "uniqueItems": true
35271        },
35272        {
35273          "description": "If 'true', then the output is pretty printed.",
35274          "in": "query",
35275          "name": "pretty",
35276          "type": "string",
35277          "uniqueItems": true
35278        },
35279        {
35280          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35281          "in": "query",
35282          "name": "resourceVersion",
35283          "type": "string",
35284          "uniqueItems": true
35285        },
35286        {
35287          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35288          "in": "query",
35289          "name": "resourceVersionMatch",
35290          "type": "string",
35291          "uniqueItems": true
35292        },
35293        {
35294          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35295          "in": "query",
35296          "name": "timeoutSeconds",
35297          "type": "integer",
35298          "uniqueItems": true
35299        },
35300        {
35301          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35302          "in": "query",
35303          "name": "watch",
35304          "type": "boolean",
35305          "uniqueItems": true
35306        }
35307      ]
35308    },
35309    "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": {
35310      "get": {
35311        "consumes": [
35312          "*/*"
35313        ],
35314        "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.",
35315        "operationId": "watchCoreV1NamespacedEndpoints",
35316        "produces": [
35317          "application/json",
35318          "application/yaml",
35319          "application/vnd.kubernetes.protobuf",
35320          "application/json;stream=watch",
35321          "application/vnd.kubernetes.protobuf;stream=watch"
35322        ],
35323        "responses": {
35324          "200": {
35325            "description": "OK",
35326            "schema": {
35327              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35328            }
35329          },
35330          "401": {
35331            "description": "Unauthorized"
35332          }
35333        },
35334        "schemes": [
35335          "https"
35336        ],
35337        "tags": [
35338          "core_v1"
35339        ],
35340        "x-kubernetes-action": "watch",
35341        "x-kubernetes-group-version-kind": {
35342          "group": "",
35343          "kind": "Endpoints",
35344          "version": "v1"
35345        }
35346      },
35347      "parameters": [
35348        {
35349          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35350          "in": "query",
35351          "name": "allowWatchBookmarks",
35352          "type": "boolean",
35353          "uniqueItems": true
35354        },
35355        {
35356          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35357          "in": "query",
35358          "name": "continue",
35359          "type": "string",
35360          "uniqueItems": true
35361        },
35362        {
35363          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35364          "in": "query",
35365          "name": "fieldSelector",
35366          "type": "string",
35367          "uniqueItems": true
35368        },
35369        {
35370          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35371          "in": "query",
35372          "name": "labelSelector",
35373          "type": "string",
35374          "uniqueItems": true
35375        },
35376        {
35377          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35378          "in": "query",
35379          "name": "limit",
35380          "type": "integer",
35381          "uniqueItems": true
35382        },
35383        {
35384          "description": "name of the Endpoints",
35385          "in": "path",
35386          "name": "name",
35387          "required": true,
35388          "type": "string",
35389          "uniqueItems": true
35390        },
35391        {
35392          "description": "object name and auth scope, such as for teams and projects",
35393          "in": "path",
35394          "name": "namespace",
35395          "required": true,
35396          "type": "string",
35397          "uniqueItems": true
35398        },
35399        {
35400          "description": "If 'true', then the output is pretty printed.",
35401          "in": "query",
35402          "name": "pretty",
35403          "type": "string",
35404          "uniqueItems": true
35405        },
35406        {
35407          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35408          "in": "query",
35409          "name": "resourceVersion",
35410          "type": "string",
35411          "uniqueItems": true
35412        },
35413        {
35414          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35415          "in": "query",
35416          "name": "resourceVersionMatch",
35417          "type": "string",
35418          "uniqueItems": true
35419        },
35420        {
35421          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35422          "in": "query",
35423          "name": "timeoutSeconds",
35424          "type": "integer",
35425          "uniqueItems": true
35426        },
35427        {
35428          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35429          "in": "query",
35430          "name": "watch",
35431          "type": "boolean",
35432          "uniqueItems": true
35433        }
35434      ]
35435    },
35436    "/api/v1/watch/namespaces/{namespace}/events": {
35437      "get": {
35438        "consumes": [
35439          "*/*"
35440        ],
35441        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
35442        "operationId": "watchCoreV1NamespacedEventList",
35443        "produces": [
35444          "application/json",
35445          "application/yaml",
35446          "application/vnd.kubernetes.protobuf",
35447          "application/json;stream=watch",
35448          "application/vnd.kubernetes.protobuf;stream=watch"
35449        ],
35450        "responses": {
35451          "200": {
35452            "description": "OK",
35453            "schema": {
35454              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35455            }
35456          },
35457          "401": {
35458            "description": "Unauthorized"
35459          }
35460        },
35461        "schemes": [
35462          "https"
35463        ],
35464        "tags": [
35465          "core_v1"
35466        ],
35467        "x-kubernetes-action": "watchlist",
35468        "x-kubernetes-group-version-kind": {
35469          "group": "",
35470          "kind": "Event",
35471          "version": "v1"
35472        }
35473      },
35474      "parameters": [
35475        {
35476          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35477          "in": "query",
35478          "name": "allowWatchBookmarks",
35479          "type": "boolean",
35480          "uniqueItems": true
35481        },
35482        {
35483          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35484          "in": "query",
35485          "name": "continue",
35486          "type": "string",
35487          "uniqueItems": true
35488        },
35489        {
35490          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35491          "in": "query",
35492          "name": "fieldSelector",
35493          "type": "string",
35494          "uniqueItems": true
35495        },
35496        {
35497          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35498          "in": "query",
35499          "name": "labelSelector",
35500          "type": "string",
35501          "uniqueItems": true
35502        },
35503        {
35504          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35505          "in": "query",
35506          "name": "limit",
35507          "type": "integer",
35508          "uniqueItems": true
35509        },
35510        {
35511          "description": "object name and auth scope, such as for teams and projects",
35512          "in": "path",
35513          "name": "namespace",
35514          "required": true,
35515          "type": "string",
35516          "uniqueItems": true
35517        },
35518        {
35519          "description": "If 'true', then the output is pretty printed.",
35520          "in": "query",
35521          "name": "pretty",
35522          "type": "string",
35523          "uniqueItems": true
35524        },
35525        {
35526          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35527          "in": "query",
35528          "name": "resourceVersion",
35529          "type": "string",
35530          "uniqueItems": true
35531        },
35532        {
35533          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35534          "in": "query",
35535          "name": "resourceVersionMatch",
35536          "type": "string",
35537          "uniqueItems": true
35538        },
35539        {
35540          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35541          "in": "query",
35542          "name": "timeoutSeconds",
35543          "type": "integer",
35544          "uniqueItems": true
35545        },
35546        {
35547          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35548          "in": "query",
35549          "name": "watch",
35550          "type": "boolean",
35551          "uniqueItems": true
35552        }
35553      ]
35554    },
35555    "/api/v1/watch/namespaces/{namespace}/events/{name}": {
35556      "get": {
35557        "consumes": [
35558          "*/*"
35559        ],
35560        "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.",
35561        "operationId": "watchCoreV1NamespacedEvent",
35562        "produces": [
35563          "application/json",
35564          "application/yaml",
35565          "application/vnd.kubernetes.protobuf",
35566          "application/json;stream=watch",
35567          "application/vnd.kubernetes.protobuf;stream=watch"
35568        ],
35569        "responses": {
35570          "200": {
35571            "description": "OK",
35572            "schema": {
35573              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35574            }
35575          },
35576          "401": {
35577            "description": "Unauthorized"
35578          }
35579        },
35580        "schemes": [
35581          "https"
35582        ],
35583        "tags": [
35584          "core_v1"
35585        ],
35586        "x-kubernetes-action": "watch",
35587        "x-kubernetes-group-version-kind": {
35588          "group": "",
35589          "kind": "Event",
35590          "version": "v1"
35591        }
35592      },
35593      "parameters": [
35594        {
35595          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35596          "in": "query",
35597          "name": "allowWatchBookmarks",
35598          "type": "boolean",
35599          "uniqueItems": true
35600        },
35601        {
35602          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35603          "in": "query",
35604          "name": "continue",
35605          "type": "string",
35606          "uniqueItems": true
35607        },
35608        {
35609          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35610          "in": "query",
35611          "name": "fieldSelector",
35612          "type": "string",
35613          "uniqueItems": true
35614        },
35615        {
35616          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35617          "in": "query",
35618          "name": "labelSelector",
35619          "type": "string",
35620          "uniqueItems": true
35621        },
35622        {
35623          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35624          "in": "query",
35625          "name": "limit",
35626          "type": "integer",
35627          "uniqueItems": true
35628        },
35629        {
35630          "description": "name of the Event",
35631          "in": "path",
35632          "name": "name",
35633          "required": true,
35634          "type": "string",
35635          "uniqueItems": true
35636        },
35637        {
35638          "description": "object name and auth scope, such as for teams and projects",
35639          "in": "path",
35640          "name": "namespace",
35641          "required": true,
35642          "type": "string",
35643          "uniqueItems": true
35644        },
35645        {
35646          "description": "If 'true', then the output is pretty printed.",
35647          "in": "query",
35648          "name": "pretty",
35649          "type": "string",
35650          "uniqueItems": true
35651        },
35652        {
35653          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35654          "in": "query",
35655          "name": "resourceVersion",
35656          "type": "string",
35657          "uniqueItems": true
35658        },
35659        {
35660          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35661          "in": "query",
35662          "name": "resourceVersionMatch",
35663          "type": "string",
35664          "uniqueItems": true
35665        },
35666        {
35667          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35668          "in": "query",
35669          "name": "timeoutSeconds",
35670          "type": "integer",
35671          "uniqueItems": true
35672        },
35673        {
35674          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35675          "in": "query",
35676          "name": "watch",
35677          "type": "boolean",
35678          "uniqueItems": true
35679        }
35680      ]
35681    },
35682    "/api/v1/watch/namespaces/{namespace}/limitranges": {
35683      "get": {
35684        "consumes": [
35685          "*/*"
35686        ],
35687        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
35688        "operationId": "watchCoreV1NamespacedLimitRangeList",
35689        "produces": [
35690          "application/json",
35691          "application/yaml",
35692          "application/vnd.kubernetes.protobuf",
35693          "application/json;stream=watch",
35694          "application/vnd.kubernetes.protobuf;stream=watch"
35695        ],
35696        "responses": {
35697          "200": {
35698            "description": "OK",
35699            "schema": {
35700              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35701            }
35702          },
35703          "401": {
35704            "description": "Unauthorized"
35705          }
35706        },
35707        "schemes": [
35708          "https"
35709        ],
35710        "tags": [
35711          "core_v1"
35712        ],
35713        "x-kubernetes-action": "watchlist",
35714        "x-kubernetes-group-version-kind": {
35715          "group": "",
35716          "kind": "LimitRange",
35717          "version": "v1"
35718        }
35719      },
35720      "parameters": [
35721        {
35722          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35723          "in": "query",
35724          "name": "allowWatchBookmarks",
35725          "type": "boolean",
35726          "uniqueItems": true
35727        },
35728        {
35729          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35730          "in": "query",
35731          "name": "continue",
35732          "type": "string",
35733          "uniqueItems": true
35734        },
35735        {
35736          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35737          "in": "query",
35738          "name": "fieldSelector",
35739          "type": "string",
35740          "uniqueItems": true
35741        },
35742        {
35743          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35744          "in": "query",
35745          "name": "labelSelector",
35746          "type": "string",
35747          "uniqueItems": true
35748        },
35749        {
35750          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35751          "in": "query",
35752          "name": "limit",
35753          "type": "integer",
35754          "uniqueItems": true
35755        },
35756        {
35757          "description": "object name and auth scope, such as for teams and projects",
35758          "in": "path",
35759          "name": "namespace",
35760          "required": true,
35761          "type": "string",
35762          "uniqueItems": true
35763        },
35764        {
35765          "description": "If 'true', then the output is pretty printed.",
35766          "in": "query",
35767          "name": "pretty",
35768          "type": "string",
35769          "uniqueItems": true
35770        },
35771        {
35772          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35773          "in": "query",
35774          "name": "resourceVersion",
35775          "type": "string",
35776          "uniqueItems": true
35777        },
35778        {
35779          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35780          "in": "query",
35781          "name": "resourceVersionMatch",
35782          "type": "string",
35783          "uniqueItems": true
35784        },
35785        {
35786          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35787          "in": "query",
35788          "name": "timeoutSeconds",
35789          "type": "integer",
35790          "uniqueItems": true
35791        },
35792        {
35793          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35794          "in": "query",
35795          "name": "watch",
35796          "type": "boolean",
35797          "uniqueItems": true
35798        }
35799      ]
35800    },
35801    "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": {
35802      "get": {
35803        "consumes": [
35804          "*/*"
35805        ],
35806        "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.",
35807        "operationId": "watchCoreV1NamespacedLimitRange",
35808        "produces": [
35809          "application/json",
35810          "application/yaml",
35811          "application/vnd.kubernetes.protobuf",
35812          "application/json;stream=watch",
35813          "application/vnd.kubernetes.protobuf;stream=watch"
35814        ],
35815        "responses": {
35816          "200": {
35817            "description": "OK",
35818            "schema": {
35819              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35820            }
35821          },
35822          "401": {
35823            "description": "Unauthorized"
35824          }
35825        },
35826        "schemes": [
35827          "https"
35828        ],
35829        "tags": [
35830          "core_v1"
35831        ],
35832        "x-kubernetes-action": "watch",
35833        "x-kubernetes-group-version-kind": {
35834          "group": "",
35835          "kind": "LimitRange",
35836          "version": "v1"
35837        }
35838      },
35839      "parameters": [
35840        {
35841          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35842          "in": "query",
35843          "name": "allowWatchBookmarks",
35844          "type": "boolean",
35845          "uniqueItems": true
35846        },
35847        {
35848          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35849          "in": "query",
35850          "name": "continue",
35851          "type": "string",
35852          "uniqueItems": true
35853        },
35854        {
35855          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35856          "in": "query",
35857          "name": "fieldSelector",
35858          "type": "string",
35859          "uniqueItems": true
35860        },
35861        {
35862          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35863          "in": "query",
35864          "name": "labelSelector",
35865          "type": "string",
35866          "uniqueItems": true
35867        },
35868        {
35869          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35870          "in": "query",
35871          "name": "limit",
35872          "type": "integer",
35873          "uniqueItems": true
35874        },
35875        {
35876          "description": "name of the LimitRange",
35877          "in": "path",
35878          "name": "name",
35879          "required": true,
35880          "type": "string",
35881          "uniqueItems": true
35882        },
35883        {
35884          "description": "object name and auth scope, such as for teams and projects",
35885          "in": "path",
35886          "name": "namespace",
35887          "required": true,
35888          "type": "string",
35889          "uniqueItems": true
35890        },
35891        {
35892          "description": "If 'true', then the output is pretty printed.",
35893          "in": "query",
35894          "name": "pretty",
35895          "type": "string",
35896          "uniqueItems": true
35897        },
35898        {
35899          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35900          "in": "query",
35901          "name": "resourceVersion",
35902          "type": "string",
35903          "uniqueItems": true
35904        },
35905        {
35906          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35907          "in": "query",
35908          "name": "resourceVersionMatch",
35909          "type": "string",
35910          "uniqueItems": true
35911        },
35912        {
35913          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35914          "in": "query",
35915          "name": "timeoutSeconds",
35916          "type": "integer",
35917          "uniqueItems": true
35918        },
35919        {
35920          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35921          "in": "query",
35922          "name": "watch",
35923          "type": "boolean",
35924          "uniqueItems": true
35925        }
35926      ]
35927    },
35928    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": {
35929      "get": {
35930        "consumes": [
35931          "*/*"
35932        ],
35933        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
35934        "operationId": "watchCoreV1NamespacedPersistentVolumeClaimList",
35935        "produces": [
35936          "application/json",
35937          "application/yaml",
35938          "application/vnd.kubernetes.protobuf",
35939          "application/json;stream=watch",
35940          "application/vnd.kubernetes.protobuf;stream=watch"
35941        ],
35942        "responses": {
35943          "200": {
35944            "description": "OK",
35945            "schema": {
35946              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35947            }
35948          },
35949          "401": {
35950            "description": "Unauthorized"
35951          }
35952        },
35953        "schemes": [
35954          "https"
35955        ],
35956        "tags": [
35957          "core_v1"
35958        ],
35959        "x-kubernetes-action": "watchlist",
35960        "x-kubernetes-group-version-kind": {
35961          "group": "",
35962          "kind": "PersistentVolumeClaim",
35963          "version": "v1"
35964        }
35965      },
35966      "parameters": [
35967        {
35968          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35969          "in": "query",
35970          "name": "allowWatchBookmarks",
35971          "type": "boolean",
35972          "uniqueItems": true
35973        },
35974        {
35975          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35976          "in": "query",
35977          "name": "continue",
35978          "type": "string",
35979          "uniqueItems": true
35980        },
35981        {
35982          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35983          "in": "query",
35984          "name": "fieldSelector",
35985          "type": "string",
35986          "uniqueItems": true
35987        },
35988        {
35989          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35990          "in": "query",
35991          "name": "labelSelector",
35992          "type": "string",
35993          "uniqueItems": true
35994        },
35995        {
35996          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35997          "in": "query",
35998          "name": "limit",
35999          "type": "integer",
36000          "uniqueItems": true
36001        },
36002        {
36003          "description": "object name and auth scope, such as for teams and projects",
36004          "in": "path",
36005          "name": "namespace",
36006          "required": true,
36007          "type": "string",
36008          "uniqueItems": true
36009        },
36010        {
36011          "description": "If 'true', then the output is pretty printed.",
36012          "in": "query",
36013          "name": "pretty",
36014          "type": "string",
36015          "uniqueItems": true
36016        },
36017        {
36018          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36019          "in": "query",
36020          "name": "resourceVersion",
36021          "type": "string",
36022          "uniqueItems": true
36023        },
36024        {
36025          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36026          "in": "query",
36027          "name": "resourceVersionMatch",
36028          "type": "string",
36029          "uniqueItems": true
36030        },
36031        {
36032          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36033          "in": "query",
36034          "name": "timeoutSeconds",
36035          "type": "integer",
36036          "uniqueItems": true
36037        },
36038        {
36039          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36040          "in": "query",
36041          "name": "watch",
36042          "type": "boolean",
36043          "uniqueItems": true
36044        }
36045      ]
36046    },
36047    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": {
36048      "get": {
36049        "consumes": [
36050          "*/*"
36051        ],
36052        "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.",
36053        "operationId": "watchCoreV1NamespacedPersistentVolumeClaim",
36054        "produces": [
36055          "application/json",
36056          "application/yaml",
36057          "application/vnd.kubernetes.protobuf",
36058          "application/json;stream=watch",
36059          "application/vnd.kubernetes.protobuf;stream=watch"
36060        ],
36061        "responses": {
36062          "200": {
36063            "description": "OK",
36064            "schema": {
36065              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36066            }
36067          },
36068          "401": {
36069            "description": "Unauthorized"
36070          }
36071        },
36072        "schemes": [
36073          "https"
36074        ],
36075        "tags": [
36076          "core_v1"
36077        ],
36078        "x-kubernetes-action": "watch",
36079        "x-kubernetes-group-version-kind": {
36080          "group": "",
36081          "kind": "PersistentVolumeClaim",
36082          "version": "v1"
36083        }
36084      },
36085      "parameters": [
36086        {
36087          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36088          "in": "query",
36089          "name": "allowWatchBookmarks",
36090          "type": "boolean",
36091          "uniqueItems": true
36092        },
36093        {
36094          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36095          "in": "query",
36096          "name": "continue",
36097          "type": "string",
36098          "uniqueItems": true
36099        },
36100        {
36101          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36102          "in": "query",
36103          "name": "fieldSelector",
36104          "type": "string",
36105          "uniqueItems": true
36106        },
36107        {
36108          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36109          "in": "query",
36110          "name": "labelSelector",
36111          "type": "string",
36112          "uniqueItems": true
36113        },
36114        {
36115          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36116          "in": "query",
36117          "name": "limit",
36118          "type": "integer",
36119          "uniqueItems": true
36120        },
36121        {
36122          "description": "name of the PersistentVolumeClaim",
36123          "in": "path",
36124          "name": "name",
36125          "required": true,
36126          "type": "string",
36127          "uniqueItems": true
36128        },
36129        {
36130          "description": "object name and auth scope, such as for teams and projects",
36131          "in": "path",
36132          "name": "namespace",
36133          "required": true,
36134          "type": "string",
36135          "uniqueItems": true
36136        },
36137        {
36138          "description": "If 'true', then the output is pretty printed.",
36139          "in": "query",
36140          "name": "pretty",
36141          "type": "string",
36142          "uniqueItems": true
36143        },
36144        {
36145          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36146          "in": "query",
36147          "name": "resourceVersion",
36148          "type": "string",
36149          "uniqueItems": true
36150        },
36151        {
36152          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36153          "in": "query",
36154          "name": "resourceVersionMatch",
36155          "type": "string",
36156          "uniqueItems": true
36157        },
36158        {
36159          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36160          "in": "query",
36161          "name": "timeoutSeconds",
36162          "type": "integer",
36163          "uniqueItems": true
36164        },
36165        {
36166          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36167          "in": "query",
36168          "name": "watch",
36169          "type": "boolean",
36170          "uniqueItems": true
36171        }
36172      ]
36173    },
36174    "/api/v1/watch/namespaces/{namespace}/pods": {
36175      "get": {
36176        "consumes": [
36177          "*/*"
36178        ],
36179        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
36180        "operationId": "watchCoreV1NamespacedPodList",
36181        "produces": [
36182          "application/json",
36183          "application/yaml",
36184          "application/vnd.kubernetes.protobuf",
36185          "application/json;stream=watch",
36186          "application/vnd.kubernetes.protobuf;stream=watch"
36187        ],
36188        "responses": {
36189          "200": {
36190            "description": "OK",
36191            "schema": {
36192              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36193            }
36194          },
36195          "401": {
36196            "description": "Unauthorized"
36197          }
36198        },
36199        "schemes": [
36200          "https"
36201        ],
36202        "tags": [
36203          "core_v1"
36204        ],
36205        "x-kubernetes-action": "watchlist",
36206        "x-kubernetes-group-version-kind": {
36207          "group": "",
36208          "kind": "Pod",
36209          "version": "v1"
36210        }
36211      },
36212      "parameters": [
36213        {
36214          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36215          "in": "query",
36216          "name": "allowWatchBookmarks",
36217          "type": "boolean",
36218          "uniqueItems": true
36219        },
36220        {
36221          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36222          "in": "query",
36223          "name": "continue",
36224          "type": "string",
36225          "uniqueItems": true
36226        },
36227        {
36228          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36229          "in": "query",
36230          "name": "fieldSelector",
36231          "type": "string",
36232          "uniqueItems": true
36233        },
36234        {
36235          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36236          "in": "query",
36237          "name": "labelSelector",
36238          "type": "string",
36239          "uniqueItems": true
36240        },
36241        {
36242          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36243          "in": "query",
36244          "name": "limit",
36245          "type": "integer",
36246          "uniqueItems": true
36247        },
36248        {
36249          "description": "object name and auth scope, such as for teams and projects",
36250          "in": "path",
36251          "name": "namespace",
36252          "required": true,
36253          "type": "string",
36254          "uniqueItems": true
36255        },
36256        {
36257          "description": "If 'true', then the output is pretty printed.",
36258          "in": "query",
36259          "name": "pretty",
36260          "type": "string",
36261          "uniqueItems": true
36262        },
36263        {
36264          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36265          "in": "query",
36266          "name": "resourceVersion",
36267          "type": "string",
36268          "uniqueItems": true
36269        },
36270        {
36271          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36272          "in": "query",
36273          "name": "resourceVersionMatch",
36274          "type": "string",
36275          "uniqueItems": true
36276        },
36277        {
36278          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36279          "in": "query",
36280          "name": "timeoutSeconds",
36281          "type": "integer",
36282          "uniqueItems": true
36283        },
36284        {
36285          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36286          "in": "query",
36287          "name": "watch",
36288          "type": "boolean",
36289          "uniqueItems": true
36290        }
36291      ]
36292    },
36293    "/api/v1/watch/namespaces/{namespace}/pods/{name}": {
36294      "get": {
36295        "consumes": [
36296          "*/*"
36297        ],
36298        "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.",
36299        "operationId": "watchCoreV1NamespacedPod",
36300        "produces": [
36301          "application/json",
36302          "application/yaml",
36303          "application/vnd.kubernetes.protobuf",
36304          "application/json;stream=watch",
36305          "application/vnd.kubernetes.protobuf;stream=watch"
36306        ],
36307        "responses": {
36308          "200": {
36309            "description": "OK",
36310            "schema": {
36311              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36312            }
36313          },
36314          "401": {
36315            "description": "Unauthorized"
36316          }
36317        },
36318        "schemes": [
36319          "https"
36320        ],
36321        "tags": [
36322          "core_v1"
36323        ],
36324        "x-kubernetes-action": "watch",
36325        "x-kubernetes-group-version-kind": {
36326          "group": "",
36327          "kind": "Pod",
36328          "version": "v1"
36329        }
36330      },
36331      "parameters": [
36332        {
36333          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36334          "in": "query",
36335          "name": "allowWatchBookmarks",
36336          "type": "boolean",
36337          "uniqueItems": true
36338        },
36339        {
36340          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36341          "in": "query",
36342          "name": "continue",
36343          "type": "string",
36344          "uniqueItems": true
36345        },
36346        {
36347          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36348          "in": "query",
36349          "name": "fieldSelector",
36350          "type": "string",
36351          "uniqueItems": true
36352        },
36353        {
36354          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36355          "in": "query",
36356          "name": "labelSelector",
36357          "type": "string",
36358          "uniqueItems": true
36359        },
36360        {
36361          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36362          "in": "query",
36363          "name": "limit",
36364          "type": "integer",
36365          "uniqueItems": true
36366        },
36367        {
36368          "description": "name of the Pod",
36369          "in": "path",
36370          "name": "name",
36371          "required": true,
36372          "type": "string",
36373          "uniqueItems": true
36374        },
36375        {
36376          "description": "object name and auth scope, such as for teams and projects",
36377          "in": "path",
36378          "name": "namespace",
36379          "required": true,
36380          "type": "string",
36381          "uniqueItems": true
36382        },
36383        {
36384          "description": "If 'true', then the output is pretty printed.",
36385          "in": "query",
36386          "name": "pretty",
36387          "type": "string",
36388          "uniqueItems": true
36389        },
36390        {
36391          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36392          "in": "query",
36393          "name": "resourceVersion",
36394          "type": "string",
36395          "uniqueItems": true
36396        },
36397        {
36398          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36399          "in": "query",
36400          "name": "resourceVersionMatch",
36401          "type": "string",
36402          "uniqueItems": true
36403        },
36404        {
36405          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36406          "in": "query",
36407          "name": "timeoutSeconds",
36408          "type": "integer",
36409          "uniqueItems": true
36410        },
36411        {
36412          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36413          "in": "query",
36414          "name": "watch",
36415          "type": "boolean",
36416          "uniqueItems": true
36417        }
36418      ]
36419    },
36420    "/api/v1/watch/namespaces/{namespace}/podtemplates": {
36421      "get": {
36422        "consumes": [
36423          "*/*"
36424        ],
36425        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
36426        "operationId": "watchCoreV1NamespacedPodTemplateList",
36427        "produces": [
36428          "application/json",
36429          "application/yaml",
36430          "application/vnd.kubernetes.protobuf",
36431          "application/json;stream=watch",
36432          "application/vnd.kubernetes.protobuf;stream=watch"
36433        ],
36434        "responses": {
36435          "200": {
36436            "description": "OK",
36437            "schema": {
36438              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36439            }
36440          },
36441          "401": {
36442            "description": "Unauthorized"
36443          }
36444        },
36445        "schemes": [
36446          "https"
36447        ],
36448        "tags": [
36449          "core_v1"
36450        ],
36451        "x-kubernetes-action": "watchlist",
36452        "x-kubernetes-group-version-kind": {
36453          "group": "",
36454          "kind": "PodTemplate",
36455          "version": "v1"
36456        }
36457      },
36458      "parameters": [
36459        {
36460          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36461          "in": "query",
36462          "name": "allowWatchBookmarks",
36463          "type": "boolean",
36464          "uniqueItems": true
36465        },
36466        {
36467          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36468          "in": "query",
36469          "name": "continue",
36470          "type": "string",
36471          "uniqueItems": true
36472        },
36473        {
36474          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36475          "in": "query",
36476          "name": "fieldSelector",
36477          "type": "string",
36478          "uniqueItems": true
36479        },
36480        {
36481          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36482          "in": "query",
36483          "name": "labelSelector",
36484          "type": "string",
36485          "uniqueItems": true
36486        },
36487        {
36488          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36489          "in": "query",
36490          "name": "limit",
36491          "type": "integer",
36492          "uniqueItems": true
36493        },
36494        {
36495          "description": "object name and auth scope, such as for teams and projects",
36496          "in": "path",
36497          "name": "namespace",
36498          "required": true,
36499          "type": "string",
36500          "uniqueItems": true
36501        },
36502        {
36503          "description": "If 'true', then the output is pretty printed.",
36504          "in": "query",
36505          "name": "pretty",
36506          "type": "string",
36507          "uniqueItems": true
36508        },
36509        {
36510          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36511          "in": "query",
36512          "name": "resourceVersion",
36513          "type": "string",
36514          "uniqueItems": true
36515        },
36516        {
36517          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36518          "in": "query",
36519          "name": "resourceVersionMatch",
36520          "type": "string",
36521          "uniqueItems": true
36522        },
36523        {
36524          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36525          "in": "query",
36526          "name": "timeoutSeconds",
36527          "type": "integer",
36528          "uniqueItems": true
36529        },
36530        {
36531          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36532          "in": "query",
36533          "name": "watch",
36534          "type": "boolean",
36535          "uniqueItems": true
36536        }
36537      ]
36538    },
36539    "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": {
36540      "get": {
36541        "consumes": [
36542          "*/*"
36543        ],
36544        "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.",
36545        "operationId": "watchCoreV1NamespacedPodTemplate",
36546        "produces": [
36547          "application/json",
36548          "application/yaml",
36549          "application/vnd.kubernetes.protobuf",
36550          "application/json;stream=watch",
36551          "application/vnd.kubernetes.protobuf;stream=watch"
36552        ],
36553        "responses": {
36554          "200": {
36555            "description": "OK",
36556            "schema": {
36557              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36558            }
36559          },
36560          "401": {
36561            "description": "Unauthorized"
36562          }
36563        },
36564        "schemes": [
36565          "https"
36566        ],
36567        "tags": [
36568          "core_v1"
36569        ],
36570        "x-kubernetes-action": "watch",
36571        "x-kubernetes-group-version-kind": {
36572          "group": "",
36573          "kind": "PodTemplate",
36574          "version": "v1"
36575        }
36576      },
36577      "parameters": [
36578        {
36579          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36580          "in": "query",
36581          "name": "allowWatchBookmarks",
36582          "type": "boolean",
36583          "uniqueItems": true
36584        },
36585        {
36586          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36587          "in": "query",
36588          "name": "continue",
36589          "type": "string",
36590          "uniqueItems": true
36591        },
36592        {
36593          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36594          "in": "query",
36595          "name": "fieldSelector",
36596          "type": "string",
36597          "uniqueItems": true
36598        },
36599        {
36600          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36601          "in": "query",
36602          "name": "labelSelector",
36603          "type": "string",
36604          "uniqueItems": true
36605        },
36606        {
36607          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36608          "in": "query",
36609          "name": "limit",
36610          "type": "integer",
36611          "uniqueItems": true
36612        },
36613        {
36614          "description": "name of the PodTemplate",
36615          "in": "path",
36616          "name": "name",
36617          "required": true,
36618          "type": "string",
36619          "uniqueItems": true
36620        },
36621        {
36622          "description": "object name and auth scope, such as for teams and projects",
36623          "in": "path",
36624          "name": "namespace",
36625          "required": true,
36626          "type": "string",
36627          "uniqueItems": true
36628        },
36629        {
36630          "description": "If 'true', then the output is pretty printed.",
36631          "in": "query",
36632          "name": "pretty",
36633          "type": "string",
36634          "uniqueItems": true
36635        },
36636        {
36637          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36638          "in": "query",
36639          "name": "resourceVersion",
36640          "type": "string",
36641          "uniqueItems": true
36642        },
36643        {
36644          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36645          "in": "query",
36646          "name": "resourceVersionMatch",
36647          "type": "string",
36648          "uniqueItems": true
36649        },
36650        {
36651          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36652          "in": "query",
36653          "name": "timeoutSeconds",
36654          "type": "integer",
36655          "uniqueItems": true
36656        },
36657        {
36658          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36659          "in": "query",
36660          "name": "watch",
36661          "type": "boolean",
36662          "uniqueItems": true
36663        }
36664      ]
36665    },
36666    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": {
36667      "get": {
36668        "consumes": [
36669          "*/*"
36670        ],
36671        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
36672        "operationId": "watchCoreV1NamespacedReplicationControllerList",
36673        "produces": [
36674          "application/json",
36675          "application/yaml",
36676          "application/vnd.kubernetes.protobuf",
36677          "application/json;stream=watch",
36678          "application/vnd.kubernetes.protobuf;stream=watch"
36679        ],
36680        "responses": {
36681          "200": {
36682            "description": "OK",
36683            "schema": {
36684              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36685            }
36686          },
36687          "401": {
36688            "description": "Unauthorized"
36689          }
36690        },
36691        "schemes": [
36692          "https"
36693        ],
36694        "tags": [
36695          "core_v1"
36696        ],
36697        "x-kubernetes-action": "watchlist",
36698        "x-kubernetes-group-version-kind": {
36699          "group": "",
36700          "kind": "ReplicationController",
36701          "version": "v1"
36702        }
36703      },
36704      "parameters": [
36705        {
36706          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36707          "in": "query",
36708          "name": "allowWatchBookmarks",
36709          "type": "boolean",
36710          "uniqueItems": true
36711        },
36712        {
36713          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36714          "in": "query",
36715          "name": "continue",
36716          "type": "string",
36717          "uniqueItems": true
36718        },
36719        {
36720          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36721          "in": "query",
36722          "name": "fieldSelector",
36723          "type": "string",
36724          "uniqueItems": true
36725        },
36726        {
36727          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36728          "in": "query",
36729          "name": "labelSelector",
36730          "type": "string",
36731          "uniqueItems": true
36732        },
36733        {
36734          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36735          "in": "query",
36736          "name": "limit",
36737          "type": "integer",
36738          "uniqueItems": true
36739        },
36740        {
36741          "description": "object name and auth scope, such as for teams and projects",
36742          "in": "path",
36743          "name": "namespace",
36744          "required": true,
36745          "type": "string",
36746          "uniqueItems": true
36747        },
36748        {
36749          "description": "If 'true', then the output is pretty printed.",
36750          "in": "query",
36751          "name": "pretty",
36752          "type": "string",
36753          "uniqueItems": true
36754        },
36755        {
36756          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36757          "in": "query",
36758          "name": "resourceVersion",
36759          "type": "string",
36760          "uniqueItems": true
36761        },
36762        {
36763          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36764          "in": "query",
36765          "name": "resourceVersionMatch",
36766          "type": "string",
36767          "uniqueItems": true
36768        },
36769        {
36770          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36771          "in": "query",
36772          "name": "timeoutSeconds",
36773          "type": "integer",
36774          "uniqueItems": true
36775        },
36776        {
36777          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36778          "in": "query",
36779          "name": "watch",
36780          "type": "boolean",
36781          "uniqueItems": true
36782        }
36783      ]
36784    },
36785    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": {
36786      "get": {
36787        "consumes": [
36788          "*/*"
36789        ],
36790        "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.",
36791        "operationId": "watchCoreV1NamespacedReplicationController",
36792        "produces": [
36793          "application/json",
36794          "application/yaml",
36795          "application/vnd.kubernetes.protobuf",
36796          "application/json;stream=watch",
36797          "application/vnd.kubernetes.protobuf;stream=watch"
36798        ],
36799        "responses": {
36800          "200": {
36801            "description": "OK",
36802            "schema": {
36803              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36804            }
36805          },
36806          "401": {
36807            "description": "Unauthorized"
36808          }
36809        },
36810        "schemes": [
36811          "https"
36812        ],
36813        "tags": [
36814          "core_v1"
36815        ],
36816        "x-kubernetes-action": "watch",
36817        "x-kubernetes-group-version-kind": {
36818          "group": "",
36819          "kind": "ReplicationController",
36820          "version": "v1"
36821        }
36822      },
36823      "parameters": [
36824        {
36825          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36826          "in": "query",
36827          "name": "allowWatchBookmarks",
36828          "type": "boolean",
36829          "uniqueItems": true
36830        },
36831        {
36832          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36833          "in": "query",
36834          "name": "continue",
36835          "type": "string",
36836          "uniqueItems": true
36837        },
36838        {
36839          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36840          "in": "query",
36841          "name": "fieldSelector",
36842          "type": "string",
36843          "uniqueItems": true
36844        },
36845        {
36846          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36847          "in": "query",
36848          "name": "labelSelector",
36849          "type": "string",
36850          "uniqueItems": true
36851        },
36852        {
36853          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36854          "in": "query",
36855          "name": "limit",
36856          "type": "integer",
36857          "uniqueItems": true
36858        },
36859        {
36860          "description": "name of the ReplicationController",
36861          "in": "path",
36862          "name": "name",
36863          "required": true,
36864          "type": "string",
36865          "uniqueItems": true
36866        },
36867        {
36868          "description": "object name and auth scope, such as for teams and projects",
36869          "in": "path",
36870          "name": "namespace",
36871          "required": true,
36872          "type": "string",
36873          "uniqueItems": true
36874        },
36875        {
36876          "description": "If 'true', then the output is pretty printed.",
36877          "in": "query",
36878          "name": "pretty",
36879          "type": "string",
36880          "uniqueItems": true
36881        },
36882        {
36883          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36884          "in": "query",
36885          "name": "resourceVersion",
36886          "type": "string",
36887          "uniqueItems": true
36888        },
36889        {
36890          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36891          "in": "query",
36892          "name": "resourceVersionMatch",
36893          "type": "string",
36894          "uniqueItems": true
36895        },
36896        {
36897          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36898          "in": "query",
36899          "name": "timeoutSeconds",
36900          "type": "integer",
36901          "uniqueItems": true
36902        },
36903        {
36904          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36905          "in": "query",
36906          "name": "watch",
36907          "type": "boolean",
36908          "uniqueItems": true
36909        }
36910      ]
36911    },
36912    "/api/v1/watch/namespaces/{namespace}/resourcequotas": {
36913      "get": {
36914        "consumes": [
36915          "*/*"
36916        ],
36917        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
36918        "operationId": "watchCoreV1NamespacedResourceQuotaList",
36919        "produces": [
36920          "application/json",
36921          "application/yaml",
36922          "application/vnd.kubernetes.protobuf",
36923          "application/json;stream=watch",
36924          "application/vnd.kubernetes.protobuf;stream=watch"
36925        ],
36926        "responses": {
36927          "200": {
36928            "description": "OK",
36929            "schema": {
36930              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36931            }
36932          },
36933          "401": {
36934            "description": "Unauthorized"
36935          }
36936        },
36937        "schemes": [
36938          "https"
36939        ],
36940        "tags": [
36941          "core_v1"
36942        ],
36943        "x-kubernetes-action": "watchlist",
36944        "x-kubernetes-group-version-kind": {
36945          "group": "",
36946          "kind": "ResourceQuota",
36947          "version": "v1"
36948        }
36949      },
36950      "parameters": [
36951        {
36952          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36953          "in": "query",
36954          "name": "allowWatchBookmarks",
36955          "type": "boolean",
36956          "uniqueItems": true
36957        },
36958        {
36959          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36960          "in": "query",
36961          "name": "continue",
36962          "type": "string",
36963          "uniqueItems": true
36964        },
36965        {
36966          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36967          "in": "query",
36968          "name": "fieldSelector",
36969          "type": "string",
36970          "uniqueItems": true
36971        },
36972        {
36973          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36974          "in": "query",
36975          "name": "labelSelector",
36976          "type": "string",
36977          "uniqueItems": true
36978        },
36979        {
36980          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36981          "in": "query",
36982          "name": "limit",
36983          "type": "integer",
36984          "uniqueItems": true
36985        },
36986        {
36987          "description": "object name and auth scope, such as for teams and projects",
36988          "in": "path",
36989          "name": "namespace",
36990          "required": true,
36991          "type": "string",
36992          "uniqueItems": true
36993        },
36994        {
36995          "description": "If 'true', then the output is pretty printed.",
36996          "in": "query",
36997          "name": "pretty",
36998          "type": "string",
36999          "uniqueItems": true
37000        },
37001        {
37002          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37003          "in": "query",
37004          "name": "resourceVersion",
37005          "type": "string",
37006          "uniqueItems": true
37007        },
37008        {
37009          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37010          "in": "query",
37011          "name": "resourceVersionMatch",
37012          "type": "string",
37013          "uniqueItems": true
37014        },
37015        {
37016          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37017          "in": "query",
37018          "name": "timeoutSeconds",
37019          "type": "integer",
37020          "uniqueItems": true
37021        },
37022        {
37023          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37024          "in": "query",
37025          "name": "watch",
37026          "type": "boolean",
37027          "uniqueItems": true
37028        }
37029      ]
37030    },
37031    "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": {
37032      "get": {
37033        "consumes": [
37034          "*/*"
37035        ],
37036        "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.",
37037        "operationId": "watchCoreV1NamespacedResourceQuota",
37038        "produces": [
37039          "application/json",
37040          "application/yaml",
37041          "application/vnd.kubernetes.protobuf",
37042          "application/json;stream=watch",
37043          "application/vnd.kubernetes.protobuf;stream=watch"
37044        ],
37045        "responses": {
37046          "200": {
37047            "description": "OK",
37048            "schema": {
37049              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37050            }
37051          },
37052          "401": {
37053            "description": "Unauthorized"
37054          }
37055        },
37056        "schemes": [
37057          "https"
37058        ],
37059        "tags": [
37060          "core_v1"
37061        ],
37062        "x-kubernetes-action": "watch",
37063        "x-kubernetes-group-version-kind": {
37064          "group": "",
37065          "kind": "ResourceQuota",
37066          "version": "v1"
37067        }
37068      },
37069      "parameters": [
37070        {
37071          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37072          "in": "query",
37073          "name": "allowWatchBookmarks",
37074          "type": "boolean",
37075          "uniqueItems": true
37076        },
37077        {
37078          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37079          "in": "query",
37080          "name": "continue",
37081          "type": "string",
37082          "uniqueItems": true
37083        },
37084        {
37085          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37086          "in": "query",
37087          "name": "fieldSelector",
37088          "type": "string",
37089          "uniqueItems": true
37090        },
37091        {
37092          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37093          "in": "query",
37094          "name": "labelSelector",
37095          "type": "string",
37096          "uniqueItems": true
37097        },
37098        {
37099          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37100          "in": "query",
37101          "name": "limit",
37102          "type": "integer",
37103          "uniqueItems": true
37104        },
37105        {
37106          "description": "name of the ResourceQuota",
37107          "in": "path",
37108          "name": "name",
37109          "required": true,
37110          "type": "string",
37111          "uniqueItems": true
37112        },
37113        {
37114          "description": "object name and auth scope, such as for teams and projects",
37115          "in": "path",
37116          "name": "namespace",
37117          "required": true,
37118          "type": "string",
37119          "uniqueItems": true
37120        },
37121        {
37122          "description": "If 'true', then the output is pretty printed.",
37123          "in": "query",
37124          "name": "pretty",
37125          "type": "string",
37126          "uniqueItems": true
37127        },
37128        {
37129          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37130          "in": "query",
37131          "name": "resourceVersion",
37132          "type": "string",
37133          "uniqueItems": true
37134        },
37135        {
37136          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37137          "in": "query",
37138          "name": "resourceVersionMatch",
37139          "type": "string",
37140          "uniqueItems": true
37141        },
37142        {
37143          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37144          "in": "query",
37145          "name": "timeoutSeconds",
37146          "type": "integer",
37147          "uniqueItems": true
37148        },
37149        {
37150          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37151          "in": "query",
37152          "name": "watch",
37153          "type": "boolean",
37154          "uniqueItems": true
37155        }
37156      ]
37157    },
37158    "/api/v1/watch/namespaces/{namespace}/secrets": {
37159      "get": {
37160        "consumes": [
37161          "*/*"
37162        ],
37163        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
37164        "operationId": "watchCoreV1NamespacedSecretList",
37165        "produces": [
37166          "application/json",
37167          "application/yaml",
37168          "application/vnd.kubernetes.protobuf",
37169          "application/json;stream=watch",
37170          "application/vnd.kubernetes.protobuf;stream=watch"
37171        ],
37172        "responses": {
37173          "200": {
37174            "description": "OK",
37175            "schema": {
37176              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37177            }
37178          },
37179          "401": {
37180            "description": "Unauthorized"
37181          }
37182        },
37183        "schemes": [
37184          "https"
37185        ],
37186        "tags": [
37187          "core_v1"
37188        ],
37189        "x-kubernetes-action": "watchlist",
37190        "x-kubernetes-group-version-kind": {
37191          "group": "",
37192          "kind": "Secret",
37193          "version": "v1"
37194        }
37195      },
37196      "parameters": [
37197        {
37198          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37199          "in": "query",
37200          "name": "allowWatchBookmarks",
37201          "type": "boolean",
37202          "uniqueItems": true
37203        },
37204        {
37205          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37206          "in": "query",
37207          "name": "continue",
37208          "type": "string",
37209          "uniqueItems": true
37210        },
37211        {
37212          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37213          "in": "query",
37214          "name": "fieldSelector",
37215          "type": "string",
37216          "uniqueItems": true
37217        },
37218        {
37219          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37220          "in": "query",
37221          "name": "labelSelector",
37222          "type": "string",
37223          "uniqueItems": true
37224        },
37225        {
37226          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37227          "in": "query",
37228          "name": "limit",
37229          "type": "integer",
37230          "uniqueItems": true
37231        },
37232        {
37233          "description": "object name and auth scope, such as for teams and projects",
37234          "in": "path",
37235          "name": "namespace",
37236          "required": true,
37237          "type": "string",
37238          "uniqueItems": true
37239        },
37240        {
37241          "description": "If 'true', then the output is pretty printed.",
37242          "in": "query",
37243          "name": "pretty",
37244          "type": "string",
37245          "uniqueItems": true
37246        },
37247        {
37248          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37249          "in": "query",
37250          "name": "resourceVersion",
37251          "type": "string",
37252          "uniqueItems": true
37253        },
37254        {
37255          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37256          "in": "query",
37257          "name": "resourceVersionMatch",
37258          "type": "string",
37259          "uniqueItems": true
37260        },
37261        {
37262          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37263          "in": "query",
37264          "name": "timeoutSeconds",
37265          "type": "integer",
37266          "uniqueItems": true
37267        },
37268        {
37269          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37270          "in": "query",
37271          "name": "watch",
37272          "type": "boolean",
37273          "uniqueItems": true
37274        }
37275      ]
37276    },
37277    "/api/v1/watch/namespaces/{namespace}/secrets/{name}": {
37278      "get": {
37279        "consumes": [
37280          "*/*"
37281        ],
37282        "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.",
37283        "operationId": "watchCoreV1NamespacedSecret",
37284        "produces": [
37285          "application/json",
37286          "application/yaml",
37287          "application/vnd.kubernetes.protobuf",
37288          "application/json;stream=watch",
37289          "application/vnd.kubernetes.protobuf;stream=watch"
37290        ],
37291        "responses": {
37292          "200": {
37293            "description": "OK",
37294            "schema": {
37295              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37296            }
37297          },
37298          "401": {
37299            "description": "Unauthorized"
37300          }
37301        },
37302        "schemes": [
37303          "https"
37304        ],
37305        "tags": [
37306          "core_v1"
37307        ],
37308        "x-kubernetes-action": "watch",
37309        "x-kubernetes-group-version-kind": {
37310          "group": "",
37311          "kind": "Secret",
37312          "version": "v1"
37313        }
37314      },
37315      "parameters": [
37316        {
37317          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37318          "in": "query",
37319          "name": "allowWatchBookmarks",
37320          "type": "boolean",
37321          "uniqueItems": true
37322        },
37323        {
37324          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37325          "in": "query",
37326          "name": "continue",
37327          "type": "string",
37328          "uniqueItems": true
37329        },
37330        {
37331          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37332          "in": "query",
37333          "name": "fieldSelector",
37334          "type": "string",
37335          "uniqueItems": true
37336        },
37337        {
37338          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37339          "in": "query",
37340          "name": "labelSelector",
37341          "type": "string",
37342          "uniqueItems": true
37343        },
37344        {
37345          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37346          "in": "query",
37347          "name": "limit",
37348          "type": "integer",
37349          "uniqueItems": true
37350        },
37351        {
37352          "description": "name of the Secret",
37353          "in": "path",
37354          "name": "name",
37355          "required": true,
37356          "type": "string",
37357          "uniqueItems": true
37358        },
37359        {
37360          "description": "object name and auth scope, such as for teams and projects",
37361          "in": "path",
37362          "name": "namespace",
37363          "required": true,
37364          "type": "string",
37365          "uniqueItems": true
37366        },
37367        {
37368          "description": "If 'true', then the output is pretty printed.",
37369          "in": "query",
37370          "name": "pretty",
37371          "type": "string",
37372          "uniqueItems": true
37373        },
37374        {
37375          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37376          "in": "query",
37377          "name": "resourceVersion",
37378          "type": "string",
37379          "uniqueItems": true
37380        },
37381        {
37382          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37383          "in": "query",
37384          "name": "resourceVersionMatch",
37385          "type": "string",
37386          "uniqueItems": true
37387        },
37388        {
37389          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37390          "in": "query",
37391          "name": "timeoutSeconds",
37392          "type": "integer",
37393          "uniqueItems": true
37394        },
37395        {
37396          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37397          "in": "query",
37398          "name": "watch",
37399          "type": "boolean",
37400          "uniqueItems": true
37401        }
37402      ]
37403    },
37404    "/api/v1/watch/namespaces/{namespace}/serviceaccounts": {
37405      "get": {
37406        "consumes": [
37407          "*/*"
37408        ],
37409        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
37410        "operationId": "watchCoreV1NamespacedServiceAccountList",
37411        "produces": [
37412          "application/json",
37413          "application/yaml",
37414          "application/vnd.kubernetes.protobuf",
37415          "application/json;stream=watch",
37416          "application/vnd.kubernetes.protobuf;stream=watch"
37417        ],
37418        "responses": {
37419          "200": {
37420            "description": "OK",
37421            "schema": {
37422              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37423            }
37424          },
37425          "401": {
37426            "description": "Unauthorized"
37427          }
37428        },
37429        "schemes": [
37430          "https"
37431        ],
37432        "tags": [
37433          "core_v1"
37434        ],
37435        "x-kubernetes-action": "watchlist",
37436        "x-kubernetes-group-version-kind": {
37437          "group": "",
37438          "kind": "ServiceAccount",
37439          "version": "v1"
37440        }
37441      },
37442      "parameters": [
37443        {
37444          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37445          "in": "query",
37446          "name": "allowWatchBookmarks",
37447          "type": "boolean",
37448          "uniqueItems": true
37449        },
37450        {
37451          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37452          "in": "query",
37453          "name": "continue",
37454          "type": "string",
37455          "uniqueItems": true
37456        },
37457        {
37458          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37459          "in": "query",
37460          "name": "fieldSelector",
37461          "type": "string",
37462          "uniqueItems": true
37463        },
37464        {
37465          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37466          "in": "query",
37467          "name": "labelSelector",
37468          "type": "string",
37469          "uniqueItems": true
37470        },
37471        {
37472          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37473          "in": "query",
37474          "name": "limit",
37475          "type": "integer",
37476          "uniqueItems": true
37477        },
37478        {
37479          "description": "object name and auth scope, such as for teams and projects",
37480          "in": "path",
37481          "name": "namespace",
37482          "required": true,
37483          "type": "string",
37484          "uniqueItems": true
37485        },
37486        {
37487          "description": "If 'true', then the output is pretty printed.",
37488          "in": "query",
37489          "name": "pretty",
37490          "type": "string",
37491          "uniqueItems": true
37492        },
37493        {
37494          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37495          "in": "query",
37496          "name": "resourceVersion",
37497          "type": "string",
37498          "uniqueItems": true
37499        },
37500        {
37501          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37502          "in": "query",
37503          "name": "resourceVersionMatch",
37504          "type": "string",
37505          "uniqueItems": true
37506        },
37507        {
37508          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37509          "in": "query",
37510          "name": "timeoutSeconds",
37511          "type": "integer",
37512          "uniqueItems": true
37513        },
37514        {
37515          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37516          "in": "query",
37517          "name": "watch",
37518          "type": "boolean",
37519          "uniqueItems": true
37520        }
37521      ]
37522    },
37523    "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": {
37524      "get": {
37525        "consumes": [
37526          "*/*"
37527        ],
37528        "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.",
37529        "operationId": "watchCoreV1NamespacedServiceAccount",
37530        "produces": [
37531          "application/json",
37532          "application/yaml",
37533          "application/vnd.kubernetes.protobuf",
37534          "application/json;stream=watch",
37535          "application/vnd.kubernetes.protobuf;stream=watch"
37536        ],
37537        "responses": {
37538          "200": {
37539            "description": "OK",
37540            "schema": {
37541              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37542            }
37543          },
37544          "401": {
37545            "description": "Unauthorized"
37546          }
37547        },
37548        "schemes": [
37549          "https"
37550        ],
37551        "tags": [
37552          "core_v1"
37553        ],
37554        "x-kubernetes-action": "watch",
37555        "x-kubernetes-group-version-kind": {
37556          "group": "",
37557          "kind": "ServiceAccount",
37558          "version": "v1"
37559        }
37560      },
37561      "parameters": [
37562        {
37563          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37564          "in": "query",
37565          "name": "allowWatchBookmarks",
37566          "type": "boolean",
37567          "uniqueItems": true
37568        },
37569        {
37570          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37571          "in": "query",
37572          "name": "continue",
37573          "type": "string",
37574          "uniqueItems": true
37575        },
37576        {
37577          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37578          "in": "query",
37579          "name": "fieldSelector",
37580          "type": "string",
37581          "uniqueItems": true
37582        },
37583        {
37584          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37585          "in": "query",
37586          "name": "labelSelector",
37587          "type": "string",
37588          "uniqueItems": true
37589        },
37590        {
37591          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37592          "in": "query",
37593          "name": "limit",
37594          "type": "integer",
37595          "uniqueItems": true
37596        },
37597        {
37598          "description": "name of the ServiceAccount",
37599          "in": "path",
37600          "name": "name",
37601          "required": true,
37602          "type": "string",
37603          "uniqueItems": true
37604        },
37605        {
37606          "description": "object name and auth scope, such as for teams and projects",
37607          "in": "path",
37608          "name": "namespace",
37609          "required": true,
37610          "type": "string",
37611          "uniqueItems": true
37612        },
37613        {
37614          "description": "If 'true', then the output is pretty printed.",
37615          "in": "query",
37616          "name": "pretty",
37617          "type": "string",
37618          "uniqueItems": true
37619        },
37620        {
37621          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37622          "in": "query",
37623          "name": "resourceVersion",
37624          "type": "string",
37625          "uniqueItems": true
37626        },
37627        {
37628          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37629          "in": "query",
37630          "name": "resourceVersionMatch",
37631          "type": "string",
37632          "uniqueItems": true
37633        },
37634        {
37635          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37636          "in": "query",
37637          "name": "timeoutSeconds",
37638          "type": "integer",
37639          "uniqueItems": true
37640        },
37641        {
37642          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37643          "in": "query",
37644          "name": "watch",
37645          "type": "boolean",
37646          "uniqueItems": true
37647        }
37648      ]
37649    },
37650    "/api/v1/watch/namespaces/{namespace}/services": {
37651      "get": {
37652        "consumes": [
37653          "*/*"
37654        ],
37655        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
37656        "operationId": "watchCoreV1NamespacedServiceList",
37657        "produces": [
37658          "application/json",
37659          "application/yaml",
37660          "application/vnd.kubernetes.protobuf",
37661          "application/json;stream=watch",
37662          "application/vnd.kubernetes.protobuf;stream=watch"
37663        ],
37664        "responses": {
37665          "200": {
37666            "description": "OK",
37667            "schema": {
37668              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37669            }
37670          },
37671          "401": {
37672            "description": "Unauthorized"
37673          }
37674        },
37675        "schemes": [
37676          "https"
37677        ],
37678        "tags": [
37679          "core_v1"
37680        ],
37681        "x-kubernetes-action": "watchlist",
37682        "x-kubernetes-group-version-kind": {
37683          "group": "",
37684          "kind": "Service",
37685          "version": "v1"
37686        }
37687      },
37688      "parameters": [
37689        {
37690          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37691          "in": "query",
37692          "name": "allowWatchBookmarks",
37693          "type": "boolean",
37694          "uniqueItems": true
37695        },
37696        {
37697          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37698          "in": "query",
37699          "name": "continue",
37700          "type": "string",
37701          "uniqueItems": true
37702        },
37703        {
37704          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37705          "in": "query",
37706          "name": "fieldSelector",
37707          "type": "string",
37708          "uniqueItems": true
37709        },
37710        {
37711          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37712          "in": "query",
37713          "name": "labelSelector",
37714          "type": "string",
37715          "uniqueItems": true
37716        },
37717        {
37718          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37719          "in": "query",
37720          "name": "limit",
37721          "type": "integer",
37722          "uniqueItems": true
37723        },
37724        {
37725          "description": "object name and auth scope, such as for teams and projects",
37726          "in": "path",
37727          "name": "namespace",
37728          "required": true,
37729          "type": "string",
37730          "uniqueItems": true
37731        },
37732        {
37733          "description": "If 'true', then the output is pretty printed.",
37734          "in": "query",
37735          "name": "pretty",
37736          "type": "string",
37737          "uniqueItems": true
37738        },
37739        {
37740          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37741          "in": "query",
37742          "name": "resourceVersion",
37743          "type": "string",
37744          "uniqueItems": true
37745        },
37746        {
37747          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37748          "in": "query",
37749          "name": "resourceVersionMatch",
37750          "type": "string",
37751          "uniqueItems": true
37752        },
37753        {
37754          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37755          "in": "query",
37756          "name": "timeoutSeconds",
37757          "type": "integer",
37758          "uniqueItems": true
37759        },
37760        {
37761          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37762          "in": "query",
37763          "name": "watch",
37764          "type": "boolean",
37765          "uniqueItems": true
37766        }
37767      ]
37768    },
37769    "/api/v1/watch/namespaces/{namespace}/services/{name}": {
37770      "get": {
37771        "consumes": [
37772          "*/*"
37773        ],
37774        "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.",
37775        "operationId": "watchCoreV1NamespacedService",
37776        "produces": [
37777          "application/json",
37778          "application/yaml",
37779          "application/vnd.kubernetes.protobuf",
37780          "application/json;stream=watch",
37781          "application/vnd.kubernetes.protobuf;stream=watch"
37782        ],
37783        "responses": {
37784          "200": {
37785            "description": "OK",
37786            "schema": {
37787              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37788            }
37789          },
37790          "401": {
37791            "description": "Unauthorized"
37792          }
37793        },
37794        "schemes": [
37795          "https"
37796        ],
37797        "tags": [
37798          "core_v1"
37799        ],
37800        "x-kubernetes-action": "watch",
37801        "x-kubernetes-group-version-kind": {
37802          "group": "",
37803          "kind": "Service",
37804          "version": "v1"
37805        }
37806      },
37807      "parameters": [
37808        {
37809          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37810          "in": "query",
37811          "name": "allowWatchBookmarks",
37812          "type": "boolean",
37813          "uniqueItems": true
37814        },
37815        {
37816          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37817          "in": "query",
37818          "name": "continue",
37819          "type": "string",
37820          "uniqueItems": true
37821        },
37822        {
37823          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37824          "in": "query",
37825          "name": "fieldSelector",
37826          "type": "string",
37827          "uniqueItems": true
37828        },
37829        {
37830          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37831          "in": "query",
37832          "name": "labelSelector",
37833          "type": "string",
37834          "uniqueItems": true
37835        },
37836        {
37837          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37838          "in": "query",
37839          "name": "limit",
37840          "type": "integer",
37841          "uniqueItems": true
37842        },
37843        {
37844          "description": "name of the Service",
37845          "in": "path",
37846          "name": "name",
37847          "required": true,
37848          "type": "string",
37849          "uniqueItems": true
37850        },
37851        {
37852          "description": "object name and auth scope, such as for teams and projects",
37853          "in": "path",
37854          "name": "namespace",
37855          "required": true,
37856          "type": "string",
37857          "uniqueItems": true
37858        },
37859        {
37860          "description": "If 'true', then the output is pretty printed.",
37861          "in": "query",
37862          "name": "pretty",
37863          "type": "string",
37864          "uniqueItems": true
37865        },
37866        {
37867          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37868          "in": "query",
37869          "name": "resourceVersion",
37870          "type": "string",
37871          "uniqueItems": true
37872        },
37873        {
37874          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37875          "in": "query",
37876          "name": "resourceVersionMatch",
37877          "type": "string",
37878          "uniqueItems": true
37879        },
37880        {
37881          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37882          "in": "query",
37883          "name": "timeoutSeconds",
37884          "type": "integer",
37885          "uniqueItems": true
37886        },
37887        {
37888          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37889          "in": "query",
37890          "name": "watch",
37891          "type": "boolean",
37892          "uniqueItems": true
37893        }
37894      ]
37895    },
37896    "/api/v1/watch/namespaces/{name}": {
37897      "get": {
37898        "consumes": [
37899          "*/*"
37900        ],
37901        "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.",
37902        "operationId": "watchCoreV1Namespace",
37903        "produces": [
37904          "application/json",
37905          "application/yaml",
37906          "application/vnd.kubernetes.protobuf",
37907          "application/json;stream=watch",
37908          "application/vnd.kubernetes.protobuf;stream=watch"
37909        ],
37910        "responses": {
37911          "200": {
37912            "description": "OK",
37913            "schema": {
37914              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37915            }
37916          },
37917          "401": {
37918            "description": "Unauthorized"
37919          }
37920        },
37921        "schemes": [
37922          "https"
37923        ],
37924        "tags": [
37925          "core_v1"
37926        ],
37927        "x-kubernetes-action": "watch",
37928        "x-kubernetes-group-version-kind": {
37929          "group": "",
37930          "kind": "Namespace",
37931          "version": "v1"
37932        }
37933      },
37934      "parameters": [
37935        {
37936          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37937          "in": "query",
37938          "name": "allowWatchBookmarks",
37939          "type": "boolean",
37940          "uniqueItems": true
37941        },
37942        {
37943          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37944          "in": "query",
37945          "name": "continue",
37946          "type": "string",
37947          "uniqueItems": true
37948        },
37949        {
37950          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37951          "in": "query",
37952          "name": "fieldSelector",
37953          "type": "string",
37954          "uniqueItems": true
37955        },
37956        {
37957          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37958          "in": "query",
37959          "name": "labelSelector",
37960          "type": "string",
37961          "uniqueItems": true
37962        },
37963        {
37964          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37965          "in": "query",
37966          "name": "limit",
37967          "type": "integer",
37968          "uniqueItems": true
37969        },
37970        {
37971          "description": "name of the Namespace",
37972          "in": "path",
37973          "name": "name",
37974          "required": true,
37975          "type": "string",
37976          "uniqueItems": true
37977        },
37978        {
37979          "description": "If 'true', then the output is pretty printed.",
37980          "in": "query",
37981          "name": "pretty",
37982          "type": "string",
37983          "uniqueItems": true
37984        },
37985        {
37986          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37987          "in": "query",
37988          "name": "resourceVersion",
37989          "type": "string",
37990          "uniqueItems": true
37991        },
37992        {
37993          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37994          "in": "query",
37995          "name": "resourceVersionMatch",
37996          "type": "string",
37997          "uniqueItems": true
37998        },
37999        {
38000          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38001          "in": "query",
38002          "name": "timeoutSeconds",
38003          "type": "integer",
38004          "uniqueItems": true
38005        },
38006        {
38007          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38008          "in": "query",
38009          "name": "watch",
38010          "type": "boolean",
38011          "uniqueItems": true
38012        }
38013      ]
38014    },
38015    "/api/v1/watch/nodes": {
38016      "get": {
38017        "consumes": [
38018          "*/*"
38019        ],
38020        "description": "watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead.",
38021        "operationId": "watchCoreV1NodeList",
38022        "produces": [
38023          "application/json",
38024          "application/yaml",
38025          "application/vnd.kubernetes.protobuf",
38026          "application/json;stream=watch",
38027          "application/vnd.kubernetes.protobuf;stream=watch"
38028        ],
38029        "responses": {
38030          "200": {
38031            "description": "OK",
38032            "schema": {
38033              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38034            }
38035          },
38036          "401": {
38037            "description": "Unauthorized"
38038          }
38039        },
38040        "schemes": [
38041          "https"
38042        ],
38043        "tags": [
38044          "core_v1"
38045        ],
38046        "x-kubernetes-action": "watchlist",
38047        "x-kubernetes-group-version-kind": {
38048          "group": "",
38049          "kind": "Node",
38050          "version": "v1"
38051        }
38052      },
38053      "parameters": [
38054        {
38055          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38056          "in": "query",
38057          "name": "allowWatchBookmarks",
38058          "type": "boolean",
38059          "uniqueItems": true
38060        },
38061        {
38062          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38063          "in": "query",
38064          "name": "continue",
38065          "type": "string",
38066          "uniqueItems": true
38067        },
38068        {
38069          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38070          "in": "query",
38071          "name": "fieldSelector",
38072          "type": "string",
38073          "uniqueItems": true
38074        },
38075        {
38076          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38077          "in": "query",
38078          "name": "labelSelector",
38079          "type": "string",
38080          "uniqueItems": true
38081        },
38082        {
38083          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38084          "in": "query",
38085          "name": "limit",
38086          "type": "integer",
38087          "uniqueItems": true
38088        },
38089        {
38090          "description": "If 'true', then the output is pretty printed.",
38091          "in": "query",
38092          "name": "pretty",
38093          "type": "string",
38094          "uniqueItems": true
38095        },
38096        {
38097          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38098          "in": "query",
38099          "name": "resourceVersion",
38100          "type": "string",
38101          "uniqueItems": true
38102        },
38103        {
38104          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38105          "in": "query",
38106          "name": "resourceVersionMatch",
38107          "type": "string",
38108          "uniqueItems": true
38109        },
38110        {
38111          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38112          "in": "query",
38113          "name": "timeoutSeconds",
38114          "type": "integer",
38115          "uniqueItems": true
38116        },
38117        {
38118          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38119          "in": "query",
38120          "name": "watch",
38121          "type": "boolean",
38122          "uniqueItems": true
38123        }
38124      ]
38125    },
38126    "/api/v1/watch/nodes/{name}": {
38127      "get": {
38128        "consumes": [
38129          "*/*"
38130        ],
38131        "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.",
38132        "operationId": "watchCoreV1Node",
38133        "produces": [
38134          "application/json",
38135          "application/yaml",
38136          "application/vnd.kubernetes.protobuf",
38137          "application/json;stream=watch",
38138          "application/vnd.kubernetes.protobuf;stream=watch"
38139        ],
38140        "responses": {
38141          "200": {
38142            "description": "OK",
38143            "schema": {
38144              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38145            }
38146          },
38147          "401": {
38148            "description": "Unauthorized"
38149          }
38150        },
38151        "schemes": [
38152          "https"
38153        ],
38154        "tags": [
38155          "core_v1"
38156        ],
38157        "x-kubernetes-action": "watch",
38158        "x-kubernetes-group-version-kind": {
38159          "group": "",
38160          "kind": "Node",
38161          "version": "v1"
38162        }
38163      },
38164      "parameters": [
38165        {
38166          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38167          "in": "query",
38168          "name": "allowWatchBookmarks",
38169          "type": "boolean",
38170          "uniqueItems": true
38171        },
38172        {
38173          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38174          "in": "query",
38175          "name": "continue",
38176          "type": "string",
38177          "uniqueItems": true
38178        },
38179        {
38180          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38181          "in": "query",
38182          "name": "fieldSelector",
38183          "type": "string",
38184          "uniqueItems": true
38185        },
38186        {
38187          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38188          "in": "query",
38189          "name": "labelSelector",
38190          "type": "string",
38191          "uniqueItems": true
38192        },
38193        {
38194          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38195          "in": "query",
38196          "name": "limit",
38197          "type": "integer",
38198          "uniqueItems": true
38199        },
38200        {
38201          "description": "name of the Node",
38202          "in": "path",
38203          "name": "name",
38204          "required": true,
38205          "type": "string",
38206          "uniqueItems": true
38207        },
38208        {
38209          "description": "If 'true', then the output is pretty printed.",
38210          "in": "query",
38211          "name": "pretty",
38212          "type": "string",
38213          "uniqueItems": true
38214        },
38215        {
38216          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38217          "in": "query",
38218          "name": "resourceVersion",
38219          "type": "string",
38220          "uniqueItems": true
38221        },
38222        {
38223          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38224          "in": "query",
38225          "name": "resourceVersionMatch",
38226          "type": "string",
38227          "uniqueItems": true
38228        },
38229        {
38230          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38231          "in": "query",
38232          "name": "timeoutSeconds",
38233          "type": "integer",
38234          "uniqueItems": true
38235        },
38236        {
38237          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38238          "in": "query",
38239          "name": "watch",
38240          "type": "boolean",
38241          "uniqueItems": true
38242        }
38243      ]
38244    },
38245    "/api/v1/watch/persistentvolumeclaims": {
38246      "get": {
38247        "consumes": [
38248          "*/*"
38249        ],
38250        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
38251        "operationId": "watchCoreV1PersistentVolumeClaimListForAllNamespaces",
38252        "produces": [
38253          "application/json",
38254          "application/yaml",
38255          "application/vnd.kubernetes.protobuf",
38256          "application/json;stream=watch",
38257          "application/vnd.kubernetes.protobuf;stream=watch"
38258        ],
38259        "responses": {
38260          "200": {
38261            "description": "OK",
38262            "schema": {
38263              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38264            }
38265          },
38266          "401": {
38267            "description": "Unauthorized"
38268          }
38269        },
38270        "schemes": [
38271          "https"
38272        ],
38273        "tags": [
38274          "core_v1"
38275        ],
38276        "x-kubernetes-action": "watchlist",
38277        "x-kubernetes-group-version-kind": {
38278          "group": "",
38279          "kind": "PersistentVolumeClaim",
38280          "version": "v1"
38281        }
38282      },
38283      "parameters": [
38284        {
38285          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38286          "in": "query",
38287          "name": "allowWatchBookmarks",
38288          "type": "boolean",
38289          "uniqueItems": true
38290        },
38291        {
38292          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38293          "in": "query",
38294          "name": "continue",
38295          "type": "string",
38296          "uniqueItems": true
38297        },
38298        {
38299          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38300          "in": "query",
38301          "name": "fieldSelector",
38302          "type": "string",
38303          "uniqueItems": true
38304        },
38305        {
38306          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38307          "in": "query",
38308          "name": "labelSelector",
38309          "type": "string",
38310          "uniqueItems": true
38311        },
38312        {
38313          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38314          "in": "query",
38315          "name": "limit",
38316          "type": "integer",
38317          "uniqueItems": true
38318        },
38319        {
38320          "description": "If 'true', then the output is pretty printed.",
38321          "in": "query",
38322          "name": "pretty",
38323          "type": "string",
38324          "uniqueItems": true
38325        },
38326        {
38327          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38328          "in": "query",
38329          "name": "resourceVersion",
38330          "type": "string",
38331          "uniqueItems": true
38332        },
38333        {
38334          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38335          "in": "query",
38336          "name": "resourceVersionMatch",
38337          "type": "string",
38338          "uniqueItems": true
38339        },
38340        {
38341          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38342          "in": "query",
38343          "name": "timeoutSeconds",
38344          "type": "integer",
38345          "uniqueItems": true
38346        },
38347        {
38348          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38349          "in": "query",
38350          "name": "watch",
38351          "type": "boolean",
38352          "uniqueItems": true
38353        }
38354      ]
38355    },
38356    "/api/v1/watch/persistentvolumes": {
38357      "get": {
38358        "consumes": [
38359          "*/*"
38360        ],
38361        "description": "watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead.",
38362        "operationId": "watchCoreV1PersistentVolumeList",
38363        "produces": [
38364          "application/json",
38365          "application/yaml",
38366          "application/vnd.kubernetes.protobuf",
38367          "application/json;stream=watch",
38368          "application/vnd.kubernetes.protobuf;stream=watch"
38369        ],
38370        "responses": {
38371          "200": {
38372            "description": "OK",
38373            "schema": {
38374              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38375            }
38376          },
38377          "401": {
38378            "description": "Unauthorized"
38379          }
38380        },
38381        "schemes": [
38382          "https"
38383        ],
38384        "tags": [
38385          "core_v1"
38386        ],
38387        "x-kubernetes-action": "watchlist",
38388        "x-kubernetes-group-version-kind": {
38389          "group": "",
38390          "kind": "PersistentVolume",
38391          "version": "v1"
38392        }
38393      },
38394      "parameters": [
38395        {
38396          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38397          "in": "query",
38398          "name": "allowWatchBookmarks",
38399          "type": "boolean",
38400          "uniqueItems": true
38401        },
38402        {
38403          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38404          "in": "query",
38405          "name": "continue",
38406          "type": "string",
38407          "uniqueItems": true
38408        },
38409        {
38410          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38411          "in": "query",
38412          "name": "fieldSelector",
38413          "type": "string",
38414          "uniqueItems": true
38415        },
38416        {
38417          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38418          "in": "query",
38419          "name": "labelSelector",
38420          "type": "string",
38421          "uniqueItems": true
38422        },
38423        {
38424          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38425          "in": "query",
38426          "name": "limit",
38427          "type": "integer",
38428          "uniqueItems": true
38429        },
38430        {
38431          "description": "If 'true', then the output is pretty printed.",
38432          "in": "query",
38433          "name": "pretty",
38434          "type": "string",
38435          "uniqueItems": true
38436        },
38437        {
38438          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38439          "in": "query",
38440          "name": "resourceVersion",
38441          "type": "string",
38442          "uniqueItems": true
38443        },
38444        {
38445          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38446          "in": "query",
38447          "name": "resourceVersionMatch",
38448          "type": "string",
38449          "uniqueItems": true
38450        },
38451        {
38452          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38453          "in": "query",
38454          "name": "timeoutSeconds",
38455          "type": "integer",
38456          "uniqueItems": true
38457        },
38458        {
38459          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38460          "in": "query",
38461          "name": "watch",
38462          "type": "boolean",
38463          "uniqueItems": true
38464        }
38465      ]
38466    },
38467    "/api/v1/watch/persistentvolumes/{name}": {
38468      "get": {
38469        "consumes": [
38470          "*/*"
38471        ],
38472        "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.",
38473        "operationId": "watchCoreV1PersistentVolume",
38474        "produces": [
38475          "application/json",
38476          "application/yaml",
38477          "application/vnd.kubernetes.protobuf",
38478          "application/json;stream=watch",
38479          "application/vnd.kubernetes.protobuf;stream=watch"
38480        ],
38481        "responses": {
38482          "200": {
38483            "description": "OK",
38484            "schema": {
38485              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38486            }
38487          },
38488          "401": {
38489            "description": "Unauthorized"
38490          }
38491        },
38492        "schemes": [
38493          "https"
38494        ],
38495        "tags": [
38496          "core_v1"
38497        ],
38498        "x-kubernetes-action": "watch",
38499        "x-kubernetes-group-version-kind": {
38500          "group": "",
38501          "kind": "PersistentVolume",
38502          "version": "v1"
38503        }
38504      },
38505      "parameters": [
38506        {
38507          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38508          "in": "query",
38509          "name": "allowWatchBookmarks",
38510          "type": "boolean",
38511          "uniqueItems": true
38512        },
38513        {
38514          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38515          "in": "query",
38516          "name": "continue",
38517          "type": "string",
38518          "uniqueItems": true
38519        },
38520        {
38521          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38522          "in": "query",
38523          "name": "fieldSelector",
38524          "type": "string",
38525          "uniqueItems": true
38526        },
38527        {
38528          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38529          "in": "query",
38530          "name": "labelSelector",
38531          "type": "string",
38532          "uniqueItems": true
38533        },
38534        {
38535          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38536          "in": "query",
38537          "name": "limit",
38538          "type": "integer",
38539          "uniqueItems": true
38540        },
38541        {
38542          "description": "name of the PersistentVolume",
38543          "in": "path",
38544          "name": "name",
38545          "required": true,
38546          "type": "string",
38547          "uniqueItems": true
38548        },
38549        {
38550          "description": "If 'true', then the output is pretty printed.",
38551          "in": "query",
38552          "name": "pretty",
38553          "type": "string",
38554          "uniqueItems": true
38555        },
38556        {
38557          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38558          "in": "query",
38559          "name": "resourceVersion",
38560          "type": "string",
38561          "uniqueItems": true
38562        },
38563        {
38564          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38565          "in": "query",
38566          "name": "resourceVersionMatch",
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    },
38586    "/api/v1/watch/pods": {
38587      "get": {
38588        "consumes": [
38589          "*/*"
38590        ],
38591        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
38592        "operationId": "watchCoreV1PodListForAllNamespaces",
38593        "produces": [
38594          "application/json",
38595          "application/yaml",
38596          "application/vnd.kubernetes.protobuf",
38597          "application/json;stream=watch",
38598          "application/vnd.kubernetes.protobuf;stream=watch"
38599        ],
38600        "responses": {
38601          "200": {
38602            "description": "OK",
38603            "schema": {
38604              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38605            }
38606          },
38607          "401": {
38608            "description": "Unauthorized"
38609          }
38610        },
38611        "schemes": [
38612          "https"
38613        ],
38614        "tags": [
38615          "core_v1"
38616        ],
38617        "x-kubernetes-action": "watchlist",
38618        "x-kubernetes-group-version-kind": {
38619          "group": "",
38620          "kind": "Pod",
38621          "version": "v1"
38622        }
38623      },
38624      "parameters": [
38625        {
38626          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38627          "in": "query",
38628          "name": "allowWatchBookmarks",
38629          "type": "boolean",
38630          "uniqueItems": true
38631        },
38632        {
38633          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38634          "in": "query",
38635          "name": "continue",
38636          "type": "string",
38637          "uniqueItems": true
38638        },
38639        {
38640          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38641          "in": "query",
38642          "name": "fieldSelector",
38643          "type": "string",
38644          "uniqueItems": true
38645        },
38646        {
38647          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38648          "in": "query",
38649          "name": "labelSelector",
38650          "type": "string",
38651          "uniqueItems": true
38652        },
38653        {
38654          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38655          "in": "query",
38656          "name": "limit",
38657          "type": "integer",
38658          "uniqueItems": true
38659        },
38660        {
38661          "description": "If 'true', then the output is pretty printed.",
38662          "in": "query",
38663          "name": "pretty",
38664          "type": "string",
38665          "uniqueItems": true
38666        },
38667        {
38668          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38669          "in": "query",
38670          "name": "resourceVersion",
38671          "type": "string",
38672          "uniqueItems": true
38673        },
38674        {
38675          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38676          "in": "query",
38677          "name": "resourceVersionMatch",
38678          "type": "string",
38679          "uniqueItems": true
38680        },
38681        {
38682          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38683          "in": "query",
38684          "name": "timeoutSeconds",
38685          "type": "integer",
38686          "uniqueItems": true
38687        },
38688        {
38689          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38690          "in": "query",
38691          "name": "watch",
38692          "type": "boolean",
38693          "uniqueItems": true
38694        }
38695      ]
38696    },
38697    "/api/v1/watch/podtemplates": {
38698      "get": {
38699        "consumes": [
38700          "*/*"
38701        ],
38702        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
38703        "operationId": "watchCoreV1PodTemplateListForAllNamespaces",
38704        "produces": [
38705          "application/json",
38706          "application/yaml",
38707          "application/vnd.kubernetes.protobuf",
38708          "application/json;stream=watch",
38709          "application/vnd.kubernetes.protobuf;stream=watch"
38710        ],
38711        "responses": {
38712          "200": {
38713            "description": "OK",
38714            "schema": {
38715              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38716            }
38717          },
38718          "401": {
38719            "description": "Unauthorized"
38720          }
38721        },
38722        "schemes": [
38723          "https"
38724        ],
38725        "tags": [
38726          "core_v1"
38727        ],
38728        "x-kubernetes-action": "watchlist",
38729        "x-kubernetes-group-version-kind": {
38730          "group": "",
38731          "kind": "PodTemplate",
38732          "version": "v1"
38733        }
38734      },
38735      "parameters": [
38736        {
38737          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38738          "in": "query",
38739          "name": "allowWatchBookmarks",
38740          "type": "boolean",
38741          "uniqueItems": true
38742        },
38743        {
38744          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38745          "in": "query",
38746          "name": "continue",
38747          "type": "string",
38748          "uniqueItems": true
38749        },
38750        {
38751          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38752          "in": "query",
38753          "name": "fieldSelector",
38754          "type": "string",
38755          "uniqueItems": true
38756        },
38757        {
38758          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38759          "in": "query",
38760          "name": "labelSelector",
38761          "type": "string",
38762          "uniqueItems": true
38763        },
38764        {
38765          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38766          "in": "query",
38767          "name": "limit",
38768          "type": "integer",
38769          "uniqueItems": true
38770        },
38771        {
38772          "description": "If 'true', then the output is pretty printed.",
38773          "in": "query",
38774          "name": "pretty",
38775          "type": "string",
38776          "uniqueItems": true
38777        },
38778        {
38779          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38780          "in": "query",
38781          "name": "resourceVersion",
38782          "type": "string",
38783          "uniqueItems": true
38784        },
38785        {
38786          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38787          "in": "query",
38788          "name": "resourceVersionMatch",
38789          "type": "string",
38790          "uniqueItems": true
38791        },
38792        {
38793          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38794          "in": "query",
38795          "name": "timeoutSeconds",
38796          "type": "integer",
38797          "uniqueItems": true
38798        },
38799        {
38800          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38801          "in": "query",
38802          "name": "watch",
38803          "type": "boolean",
38804          "uniqueItems": true
38805        }
38806      ]
38807    },
38808    "/api/v1/watch/replicationcontrollers": {
38809      "get": {
38810        "consumes": [
38811          "*/*"
38812        ],
38813        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
38814        "operationId": "watchCoreV1ReplicationControllerListForAllNamespaces",
38815        "produces": [
38816          "application/json",
38817          "application/yaml",
38818          "application/vnd.kubernetes.protobuf",
38819          "application/json;stream=watch",
38820          "application/vnd.kubernetes.protobuf;stream=watch"
38821        ],
38822        "responses": {
38823          "200": {
38824            "description": "OK",
38825            "schema": {
38826              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38827            }
38828          },
38829          "401": {
38830            "description": "Unauthorized"
38831          }
38832        },
38833        "schemes": [
38834          "https"
38835        ],
38836        "tags": [
38837          "core_v1"
38838        ],
38839        "x-kubernetes-action": "watchlist",
38840        "x-kubernetes-group-version-kind": {
38841          "group": "",
38842          "kind": "ReplicationController",
38843          "version": "v1"
38844        }
38845      },
38846      "parameters": [
38847        {
38848          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38849          "in": "query",
38850          "name": "allowWatchBookmarks",
38851          "type": "boolean",
38852          "uniqueItems": true
38853        },
38854        {
38855          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38856          "in": "query",
38857          "name": "continue",
38858          "type": "string",
38859          "uniqueItems": true
38860        },
38861        {
38862          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38863          "in": "query",
38864          "name": "fieldSelector",
38865          "type": "string",
38866          "uniqueItems": true
38867        },
38868        {
38869          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38870          "in": "query",
38871          "name": "labelSelector",
38872          "type": "string",
38873          "uniqueItems": true
38874        },
38875        {
38876          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38877          "in": "query",
38878          "name": "limit",
38879          "type": "integer",
38880          "uniqueItems": true
38881        },
38882        {
38883          "description": "If 'true', then the output is pretty printed.",
38884          "in": "query",
38885          "name": "pretty",
38886          "type": "string",
38887          "uniqueItems": true
38888        },
38889        {
38890          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38891          "in": "query",
38892          "name": "resourceVersion",
38893          "type": "string",
38894          "uniqueItems": true
38895        },
38896        {
38897          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38898          "in": "query",
38899          "name": "resourceVersionMatch",
38900          "type": "string",
38901          "uniqueItems": true
38902        },
38903        {
38904          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38905          "in": "query",
38906          "name": "timeoutSeconds",
38907          "type": "integer",
38908          "uniqueItems": true
38909        },
38910        {
38911          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38912          "in": "query",
38913          "name": "watch",
38914          "type": "boolean",
38915          "uniqueItems": true
38916        }
38917      ]
38918    },
38919    "/api/v1/watch/resourcequotas": {
38920      "get": {
38921        "consumes": [
38922          "*/*"
38923        ],
38924        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
38925        "operationId": "watchCoreV1ResourceQuotaListForAllNamespaces",
38926        "produces": [
38927          "application/json",
38928          "application/yaml",
38929          "application/vnd.kubernetes.protobuf",
38930          "application/json;stream=watch",
38931          "application/vnd.kubernetes.protobuf;stream=watch"
38932        ],
38933        "responses": {
38934          "200": {
38935            "description": "OK",
38936            "schema": {
38937              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38938            }
38939          },
38940          "401": {
38941            "description": "Unauthorized"
38942          }
38943        },
38944        "schemes": [
38945          "https"
38946        ],
38947        "tags": [
38948          "core_v1"
38949        ],
38950        "x-kubernetes-action": "watchlist",
38951        "x-kubernetes-group-version-kind": {
38952          "group": "",
38953          "kind": "ResourceQuota",
38954          "version": "v1"
38955        }
38956      },
38957      "parameters": [
38958        {
38959          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38960          "in": "query",
38961          "name": "allowWatchBookmarks",
38962          "type": "boolean",
38963          "uniqueItems": true
38964        },
38965        {
38966          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38967          "in": "query",
38968          "name": "continue",
38969          "type": "string",
38970          "uniqueItems": true
38971        },
38972        {
38973          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38974          "in": "query",
38975          "name": "fieldSelector",
38976          "type": "string",
38977          "uniqueItems": true
38978        },
38979        {
38980          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38981          "in": "query",
38982          "name": "labelSelector",
38983          "type": "string",
38984          "uniqueItems": true
38985        },
38986        {
38987          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38988          "in": "query",
38989          "name": "limit",
38990          "type": "integer",
38991          "uniqueItems": true
38992        },
38993        {
38994          "description": "If 'true', then the output is pretty printed.",
38995          "in": "query",
38996          "name": "pretty",
38997          "type": "string",
38998          "uniqueItems": true
38999        },
39000        {
39001          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39002          "in": "query",
39003          "name": "resourceVersion",
39004          "type": "string",
39005          "uniqueItems": true
39006        },
39007        {
39008          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39009          "in": "query",
39010          "name": "resourceVersionMatch",
39011          "type": "string",
39012          "uniqueItems": true
39013        },
39014        {
39015          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39016          "in": "query",
39017          "name": "timeoutSeconds",
39018          "type": "integer",
39019          "uniqueItems": true
39020        },
39021        {
39022          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39023          "in": "query",
39024          "name": "watch",
39025          "type": "boolean",
39026          "uniqueItems": true
39027        }
39028      ]
39029    },
39030    "/api/v1/watch/secrets": {
39031      "get": {
39032        "consumes": [
39033          "*/*"
39034        ],
39035        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
39036        "operationId": "watchCoreV1SecretListForAllNamespaces",
39037        "produces": [
39038          "application/json",
39039          "application/yaml",
39040          "application/vnd.kubernetes.protobuf",
39041          "application/json;stream=watch",
39042          "application/vnd.kubernetes.protobuf;stream=watch"
39043        ],
39044        "responses": {
39045          "200": {
39046            "description": "OK",
39047            "schema": {
39048              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39049            }
39050          },
39051          "401": {
39052            "description": "Unauthorized"
39053          }
39054        },
39055        "schemes": [
39056          "https"
39057        ],
39058        "tags": [
39059          "core_v1"
39060        ],
39061        "x-kubernetes-action": "watchlist",
39062        "x-kubernetes-group-version-kind": {
39063          "group": "",
39064          "kind": "Secret",
39065          "version": "v1"
39066        }
39067      },
39068      "parameters": [
39069        {
39070          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39071          "in": "query",
39072          "name": "allowWatchBookmarks",
39073          "type": "boolean",
39074          "uniqueItems": true
39075        },
39076        {
39077          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39078          "in": "query",
39079          "name": "continue",
39080          "type": "string",
39081          "uniqueItems": true
39082        },
39083        {
39084          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39085          "in": "query",
39086          "name": "fieldSelector",
39087          "type": "string",
39088          "uniqueItems": true
39089        },
39090        {
39091          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39092          "in": "query",
39093          "name": "labelSelector",
39094          "type": "string",
39095          "uniqueItems": true
39096        },
39097        {
39098          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39099          "in": "query",
39100          "name": "limit",
39101          "type": "integer",
39102          "uniqueItems": true
39103        },
39104        {
39105          "description": "If 'true', then the output is pretty printed.",
39106          "in": "query",
39107          "name": "pretty",
39108          "type": "string",
39109          "uniqueItems": true
39110        },
39111        {
39112          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39113          "in": "query",
39114          "name": "resourceVersion",
39115          "type": "string",
39116          "uniqueItems": true
39117        },
39118        {
39119          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39120          "in": "query",
39121          "name": "resourceVersionMatch",
39122          "type": "string",
39123          "uniqueItems": true
39124        },
39125        {
39126          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39127          "in": "query",
39128          "name": "timeoutSeconds",
39129          "type": "integer",
39130          "uniqueItems": true
39131        },
39132        {
39133          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39134          "in": "query",
39135          "name": "watch",
39136          "type": "boolean",
39137          "uniqueItems": true
39138        }
39139      ]
39140    },
39141    "/api/v1/watch/serviceaccounts": {
39142      "get": {
39143        "consumes": [
39144          "*/*"
39145        ],
39146        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
39147        "operationId": "watchCoreV1ServiceAccountListForAllNamespaces",
39148        "produces": [
39149          "application/json",
39150          "application/yaml",
39151          "application/vnd.kubernetes.protobuf",
39152          "application/json;stream=watch",
39153          "application/vnd.kubernetes.protobuf;stream=watch"
39154        ],
39155        "responses": {
39156          "200": {
39157            "description": "OK",
39158            "schema": {
39159              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39160            }
39161          },
39162          "401": {
39163            "description": "Unauthorized"
39164          }
39165        },
39166        "schemes": [
39167          "https"
39168        ],
39169        "tags": [
39170          "core_v1"
39171        ],
39172        "x-kubernetes-action": "watchlist",
39173        "x-kubernetes-group-version-kind": {
39174          "group": "",
39175          "kind": "ServiceAccount",
39176          "version": "v1"
39177        }
39178      },
39179      "parameters": [
39180        {
39181          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39182          "in": "query",
39183          "name": "allowWatchBookmarks",
39184          "type": "boolean",
39185          "uniqueItems": true
39186        },
39187        {
39188          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39189          "in": "query",
39190          "name": "continue",
39191          "type": "string",
39192          "uniqueItems": true
39193        },
39194        {
39195          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39196          "in": "query",
39197          "name": "fieldSelector",
39198          "type": "string",
39199          "uniqueItems": true
39200        },
39201        {
39202          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39203          "in": "query",
39204          "name": "labelSelector",
39205          "type": "string",
39206          "uniqueItems": true
39207        },
39208        {
39209          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39210          "in": "query",
39211          "name": "limit",
39212          "type": "integer",
39213          "uniqueItems": true
39214        },
39215        {
39216          "description": "If 'true', then the output is pretty printed.",
39217          "in": "query",
39218          "name": "pretty",
39219          "type": "string",
39220          "uniqueItems": true
39221        },
39222        {
39223          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39224          "in": "query",
39225          "name": "resourceVersion",
39226          "type": "string",
39227          "uniqueItems": true
39228        },
39229        {
39230          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39231          "in": "query",
39232          "name": "resourceVersionMatch",
39233          "type": "string",
39234          "uniqueItems": true
39235        },
39236        {
39237          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39238          "in": "query",
39239          "name": "timeoutSeconds",
39240          "type": "integer",
39241          "uniqueItems": true
39242        },
39243        {
39244          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39245          "in": "query",
39246          "name": "watch",
39247          "type": "boolean",
39248          "uniqueItems": true
39249        }
39250      ]
39251    },
39252    "/api/v1/watch/services": {
39253      "get": {
39254        "consumes": [
39255          "*/*"
39256        ],
39257        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
39258        "operationId": "watchCoreV1ServiceListForAllNamespaces",
39259        "produces": [
39260          "application/json",
39261          "application/yaml",
39262          "application/vnd.kubernetes.protobuf",
39263          "application/json;stream=watch",
39264          "application/vnd.kubernetes.protobuf;stream=watch"
39265        ],
39266        "responses": {
39267          "200": {
39268            "description": "OK",
39269            "schema": {
39270              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39271            }
39272          },
39273          "401": {
39274            "description": "Unauthorized"
39275          }
39276        },
39277        "schemes": [
39278          "https"
39279        ],
39280        "tags": [
39281          "core_v1"
39282        ],
39283        "x-kubernetes-action": "watchlist",
39284        "x-kubernetes-group-version-kind": {
39285          "group": "",
39286          "kind": "Service",
39287          "version": "v1"
39288        }
39289      },
39290      "parameters": [
39291        {
39292          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39293          "in": "query",
39294          "name": "allowWatchBookmarks",
39295          "type": "boolean",
39296          "uniqueItems": true
39297        },
39298        {
39299          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39300          "in": "query",
39301          "name": "continue",
39302          "type": "string",
39303          "uniqueItems": true
39304        },
39305        {
39306          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39307          "in": "query",
39308          "name": "fieldSelector",
39309          "type": "string",
39310          "uniqueItems": true
39311        },
39312        {
39313          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39314          "in": "query",
39315          "name": "labelSelector",
39316          "type": "string",
39317          "uniqueItems": true
39318        },
39319        {
39320          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39321          "in": "query",
39322          "name": "limit",
39323          "type": "integer",
39324          "uniqueItems": true
39325        },
39326        {
39327          "description": "If 'true', then the output is pretty printed.",
39328          "in": "query",
39329          "name": "pretty",
39330          "type": "string",
39331          "uniqueItems": true
39332        },
39333        {
39334          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39335          "in": "query",
39336          "name": "resourceVersion",
39337          "type": "string",
39338          "uniqueItems": true
39339        },
39340        {
39341          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39342          "in": "query",
39343          "name": "resourceVersionMatch",
39344          "type": "string",
39345          "uniqueItems": true
39346        },
39347        {
39348          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39349          "in": "query",
39350          "name": "timeoutSeconds",
39351          "type": "integer",
39352          "uniqueItems": true
39353        },
39354        {
39355          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39356          "in": "query",
39357          "name": "watch",
39358          "type": "boolean",
39359          "uniqueItems": true
39360        }
39361      ]
39362    },
39363    "/apis/": {
39364      "get": {
39365        "consumes": [
39366          "application/json",
39367          "application/yaml",
39368          "application/vnd.kubernetes.protobuf"
39369        ],
39370        "description": "get available API versions",
39371        "operationId": "getAPIVersions",
39372        "produces": [
39373          "application/json",
39374          "application/yaml",
39375          "application/vnd.kubernetes.protobuf"
39376        ],
39377        "responses": {
39378          "200": {
39379            "description": "OK",
39380            "schema": {
39381              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList"
39382            }
39383          },
39384          "401": {
39385            "description": "Unauthorized"
39386          }
39387        },
39388        "schemes": [
39389          "https"
39390        ],
39391        "tags": [
39392          "apis"
39393        ]
39394      }
39395    },
39396    "/apis/admissionregistration.k8s.io/": {
39397      "get": {
39398        "consumes": [
39399          "application/json",
39400          "application/yaml",
39401          "application/vnd.kubernetes.protobuf"
39402        ],
39403        "description": "get information of a group",
39404        "operationId": "getAdmissionregistrationAPIGroup",
39405        "produces": [
39406          "application/json",
39407          "application/yaml",
39408          "application/vnd.kubernetes.protobuf"
39409        ],
39410        "responses": {
39411          "200": {
39412            "description": "OK",
39413            "schema": {
39414              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
39415            }
39416          },
39417          "401": {
39418            "description": "Unauthorized"
39419          }
39420        },
39421        "schemes": [
39422          "https"
39423        ],
39424        "tags": [
39425          "admissionregistration"
39426        ]
39427      }
39428    },
39429    "/apis/admissionregistration.k8s.io/v1/": {
39430      "get": {
39431        "consumes": [
39432          "application/json",
39433          "application/yaml",
39434          "application/vnd.kubernetes.protobuf"
39435        ],
39436        "description": "get available resources",
39437        "operationId": "getAdmissionregistrationV1APIResources",
39438        "produces": [
39439          "application/json",
39440          "application/yaml",
39441          "application/vnd.kubernetes.protobuf"
39442        ],
39443        "responses": {
39444          "200": {
39445            "description": "OK",
39446            "schema": {
39447              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
39448            }
39449          },
39450          "401": {
39451            "description": "Unauthorized"
39452          }
39453        },
39454        "schemes": [
39455          "https"
39456        ],
39457        "tags": [
39458          "admissionregistration_v1"
39459        ]
39460      }
39461    },
39462    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations": {
39463      "delete": {
39464        "consumes": [
39465          "*/*"
39466        ],
39467        "description": "delete collection of MutatingWebhookConfiguration",
39468        "operationId": "deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration",
39469        "parameters": [
39470          {
39471            "in": "body",
39472            "name": "body",
39473            "schema": {
39474              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
39475            }
39476          },
39477          {
39478            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39479            "in": "query",
39480            "name": "continue",
39481            "type": "string",
39482            "uniqueItems": true
39483          },
39484          {
39485            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39486            "in": "query",
39487            "name": "dryRun",
39488            "type": "string",
39489            "uniqueItems": true
39490          },
39491          {
39492            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39493            "in": "query",
39494            "name": "fieldSelector",
39495            "type": "string",
39496            "uniqueItems": true
39497          },
39498          {
39499            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
39500            "in": "query",
39501            "name": "gracePeriodSeconds",
39502            "type": "integer",
39503            "uniqueItems": true
39504          },
39505          {
39506            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39507            "in": "query",
39508            "name": "labelSelector",
39509            "type": "string",
39510            "uniqueItems": true
39511          },
39512          {
39513            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39514            "in": "query",
39515            "name": "limit",
39516            "type": "integer",
39517            "uniqueItems": true
39518          },
39519          {
39520            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
39521            "in": "query",
39522            "name": "orphanDependents",
39523            "type": "boolean",
39524            "uniqueItems": true
39525          },
39526          {
39527            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
39528            "in": "query",
39529            "name": "propagationPolicy",
39530            "type": "string",
39531            "uniqueItems": true
39532          },
39533          {
39534            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39535            "in": "query",
39536            "name": "resourceVersion",
39537            "type": "string",
39538            "uniqueItems": true
39539          },
39540          {
39541            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39542            "in": "query",
39543            "name": "resourceVersionMatch",
39544            "type": "string",
39545            "uniqueItems": true
39546          },
39547          {
39548            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39549            "in": "query",
39550            "name": "timeoutSeconds",
39551            "type": "integer",
39552            "uniqueItems": true
39553          }
39554        ],
39555        "produces": [
39556          "application/json",
39557          "application/yaml",
39558          "application/vnd.kubernetes.protobuf"
39559        ],
39560        "responses": {
39561          "200": {
39562            "description": "OK",
39563            "schema": {
39564              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39565            }
39566          },
39567          "401": {
39568            "description": "Unauthorized"
39569          }
39570        },
39571        "schemes": [
39572          "https"
39573        ],
39574        "tags": [
39575          "admissionregistration_v1"
39576        ],
39577        "x-kubernetes-action": "deletecollection",
39578        "x-kubernetes-group-version-kind": {
39579          "group": "admissionregistration.k8s.io",
39580          "kind": "MutatingWebhookConfiguration",
39581          "version": "v1"
39582        }
39583      },
39584      "get": {
39585        "consumes": [
39586          "*/*"
39587        ],
39588        "description": "list or watch objects of kind MutatingWebhookConfiguration",
39589        "operationId": "listAdmissionregistrationV1MutatingWebhookConfiguration",
39590        "parameters": [
39591          {
39592            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39593            "in": "query",
39594            "name": "allowWatchBookmarks",
39595            "type": "boolean",
39596            "uniqueItems": true
39597          },
39598          {
39599            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39600            "in": "query",
39601            "name": "continue",
39602            "type": "string",
39603            "uniqueItems": true
39604          },
39605          {
39606            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39607            "in": "query",
39608            "name": "fieldSelector",
39609            "type": "string",
39610            "uniqueItems": true
39611          },
39612          {
39613            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39614            "in": "query",
39615            "name": "labelSelector",
39616            "type": "string",
39617            "uniqueItems": true
39618          },
39619          {
39620            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39621            "in": "query",
39622            "name": "limit",
39623            "type": "integer",
39624            "uniqueItems": true
39625          },
39626          {
39627            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39628            "in": "query",
39629            "name": "resourceVersion",
39630            "type": "string",
39631            "uniqueItems": true
39632          },
39633          {
39634            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39635            "in": "query",
39636            "name": "resourceVersionMatch",
39637            "type": "string",
39638            "uniqueItems": true
39639          },
39640          {
39641            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39642            "in": "query",
39643            "name": "timeoutSeconds",
39644            "type": "integer",
39645            "uniqueItems": true
39646          },
39647          {
39648            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39649            "in": "query",
39650            "name": "watch",
39651            "type": "boolean",
39652            "uniqueItems": true
39653          }
39654        ],
39655        "produces": [
39656          "application/json",
39657          "application/yaml",
39658          "application/vnd.kubernetes.protobuf",
39659          "application/json;stream=watch",
39660          "application/vnd.kubernetes.protobuf;stream=watch"
39661        ],
39662        "responses": {
39663          "200": {
39664            "description": "OK",
39665            "schema": {
39666              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList"
39667            }
39668          },
39669          "401": {
39670            "description": "Unauthorized"
39671          }
39672        },
39673        "schemes": [
39674          "https"
39675        ],
39676        "tags": [
39677          "admissionregistration_v1"
39678        ],
39679        "x-kubernetes-action": "list",
39680        "x-kubernetes-group-version-kind": {
39681          "group": "admissionregistration.k8s.io",
39682          "kind": "MutatingWebhookConfiguration",
39683          "version": "v1"
39684        }
39685      },
39686      "parameters": [
39687        {
39688          "description": "If 'true', then the output is pretty printed.",
39689          "in": "query",
39690          "name": "pretty",
39691          "type": "string",
39692          "uniqueItems": true
39693        }
39694      ],
39695      "post": {
39696        "consumes": [
39697          "*/*"
39698        ],
39699        "description": "create a MutatingWebhookConfiguration",
39700        "operationId": "createAdmissionregistrationV1MutatingWebhookConfiguration",
39701        "parameters": [
39702          {
39703            "in": "body",
39704            "name": "body",
39705            "required": true,
39706            "schema": {
39707              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39708            }
39709          },
39710          {
39711            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39712            "in": "query",
39713            "name": "dryRun",
39714            "type": "string",
39715            "uniqueItems": true
39716          },
39717          {
39718            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39719            "in": "query",
39720            "name": "fieldManager",
39721            "type": "string",
39722            "uniqueItems": true
39723          }
39724        ],
39725        "produces": [
39726          "application/json",
39727          "application/yaml",
39728          "application/vnd.kubernetes.protobuf"
39729        ],
39730        "responses": {
39731          "200": {
39732            "description": "OK",
39733            "schema": {
39734              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39735            }
39736          },
39737          "201": {
39738            "description": "Created",
39739            "schema": {
39740              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39741            }
39742          },
39743          "202": {
39744            "description": "Accepted",
39745            "schema": {
39746              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39747            }
39748          },
39749          "401": {
39750            "description": "Unauthorized"
39751          }
39752        },
39753        "schemes": [
39754          "https"
39755        ],
39756        "tags": [
39757          "admissionregistration_v1"
39758        ],
39759        "x-kubernetes-action": "post",
39760        "x-kubernetes-group-version-kind": {
39761          "group": "admissionregistration.k8s.io",
39762          "kind": "MutatingWebhookConfiguration",
39763          "version": "v1"
39764        }
39765      }
39766    },
39767    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}": {
39768      "delete": {
39769        "consumes": [
39770          "*/*"
39771        ],
39772        "description": "delete a MutatingWebhookConfiguration",
39773        "operationId": "deleteAdmissionregistrationV1MutatingWebhookConfiguration",
39774        "parameters": [
39775          {
39776            "in": "body",
39777            "name": "body",
39778            "schema": {
39779              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
39780            }
39781          },
39782          {
39783            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39784            "in": "query",
39785            "name": "dryRun",
39786            "type": "string",
39787            "uniqueItems": true
39788          },
39789          {
39790            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
39791            "in": "query",
39792            "name": "gracePeriodSeconds",
39793            "type": "integer",
39794            "uniqueItems": true
39795          },
39796          {
39797            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
39798            "in": "query",
39799            "name": "orphanDependents",
39800            "type": "boolean",
39801            "uniqueItems": true
39802          },
39803          {
39804            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
39805            "in": "query",
39806            "name": "propagationPolicy",
39807            "type": "string",
39808            "uniqueItems": true
39809          }
39810        ],
39811        "produces": [
39812          "application/json",
39813          "application/yaml",
39814          "application/vnd.kubernetes.protobuf"
39815        ],
39816        "responses": {
39817          "200": {
39818            "description": "OK",
39819            "schema": {
39820              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39821            }
39822          },
39823          "202": {
39824            "description": "Accepted",
39825            "schema": {
39826              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39827            }
39828          },
39829          "401": {
39830            "description": "Unauthorized"
39831          }
39832        },
39833        "schemes": [
39834          "https"
39835        ],
39836        "tags": [
39837          "admissionregistration_v1"
39838        ],
39839        "x-kubernetes-action": "delete",
39840        "x-kubernetes-group-version-kind": {
39841          "group": "admissionregistration.k8s.io",
39842          "kind": "MutatingWebhookConfiguration",
39843          "version": "v1"
39844        }
39845      },
39846      "get": {
39847        "consumes": [
39848          "*/*"
39849        ],
39850        "description": "read the specified MutatingWebhookConfiguration",
39851        "operationId": "readAdmissionregistrationV1MutatingWebhookConfiguration",
39852        "produces": [
39853          "application/json",
39854          "application/yaml",
39855          "application/vnd.kubernetes.protobuf"
39856        ],
39857        "responses": {
39858          "200": {
39859            "description": "OK",
39860            "schema": {
39861              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39862            }
39863          },
39864          "401": {
39865            "description": "Unauthorized"
39866          }
39867        },
39868        "schemes": [
39869          "https"
39870        ],
39871        "tags": [
39872          "admissionregistration_v1"
39873        ],
39874        "x-kubernetes-action": "get",
39875        "x-kubernetes-group-version-kind": {
39876          "group": "admissionregistration.k8s.io",
39877          "kind": "MutatingWebhookConfiguration",
39878          "version": "v1"
39879        }
39880      },
39881      "parameters": [
39882        {
39883          "description": "name of the MutatingWebhookConfiguration",
39884          "in": "path",
39885          "name": "name",
39886          "required": true,
39887          "type": "string",
39888          "uniqueItems": true
39889        },
39890        {
39891          "description": "If 'true', then the output is pretty printed.",
39892          "in": "query",
39893          "name": "pretty",
39894          "type": "string",
39895          "uniqueItems": true
39896        }
39897      ],
39898      "patch": {
39899        "consumes": [
39900          "application/json-patch+json",
39901          "application/merge-patch+json",
39902          "application/strategic-merge-patch+json",
39903          "application/apply-patch+yaml"
39904        ],
39905        "description": "partially update the specified MutatingWebhookConfiguration",
39906        "operationId": "patchAdmissionregistrationV1MutatingWebhookConfiguration",
39907        "parameters": [
39908          {
39909            "in": "body",
39910            "name": "body",
39911            "required": true,
39912            "schema": {
39913              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
39914            }
39915          },
39916          {
39917            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39918            "in": "query",
39919            "name": "dryRun",
39920            "type": "string",
39921            "uniqueItems": true
39922          },
39923          {
39924            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
39925            "in": "query",
39926            "name": "fieldManager",
39927            "type": "string",
39928            "uniqueItems": true
39929          },
39930          {
39931            "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.",
39932            "in": "query",
39933            "name": "force",
39934            "type": "boolean",
39935            "uniqueItems": true
39936          }
39937        ],
39938        "produces": [
39939          "application/json",
39940          "application/yaml",
39941          "application/vnd.kubernetes.protobuf"
39942        ],
39943        "responses": {
39944          "200": {
39945            "description": "OK",
39946            "schema": {
39947              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39948            }
39949          },
39950          "401": {
39951            "description": "Unauthorized"
39952          }
39953        },
39954        "schemes": [
39955          "https"
39956        ],
39957        "tags": [
39958          "admissionregistration_v1"
39959        ],
39960        "x-kubernetes-action": "patch",
39961        "x-kubernetes-group-version-kind": {
39962          "group": "admissionregistration.k8s.io",
39963          "kind": "MutatingWebhookConfiguration",
39964          "version": "v1"
39965        }
39966      },
39967      "put": {
39968        "consumes": [
39969          "*/*"
39970        ],
39971        "description": "replace the specified MutatingWebhookConfiguration",
39972        "operationId": "replaceAdmissionregistrationV1MutatingWebhookConfiguration",
39973        "parameters": [
39974          {
39975            "in": "body",
39976            "name": "body",
39977            "required": true,
39978            "schema": {
39979              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39980            }
39981          },
39982          {
39983            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39984            "in": "query",
39985            "name": "dryRun",
39986            "type": "string",
39987            "uniqueItems": true
39988          },
39989          {
39990            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39991            "in": "query",
39992            "name": "fieldManager",
39993            "type": "string",
39994            "uniqueItems": true
39995          }
39996        ],
39997        "produces": [
39998          "application/json",
39999          "application/yaml",
40000          "application/vnd.kubernetes.protobuf"
40001        ],
40002        "responses": {
40003          "200": {
40004            "description": "OK",
40005            "schema": {
40006              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
40007            }
40008          },
40009          "201": {
40010            "description": "Created",
40011            "schema": {
40012              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
40013            }
40014          },
40015          "401": {
40016            "description": "Unauthorized"
40017          }
40018        },
40019        "schemes": [
40020          "https"
40021        ],
40022        "tags": [
40023          "admissionregistration_v1"
40024        ],
40025        "x-kubernetes-action": "put",
40026        "x-kubernetes-group-version-kind": {
40027          "group": "admissionregistration.k8s.io",
40028          "kind": "MutatingWebhookConfiguration",
40029          "version": "v1"
40030        }
40031      }
40032    },
40033    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations": {
40034      "delete": {
40035        "consumes": [
40036          "*/*"
40037        ],
40038        "description": "delete collection of ValidatingWebhookConfiguration",
40039        "operationId": "deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration",
40040        "parameters": [
40041          {
40042            "in": "body",
40043            "name": "body",
40044            "schema": {
40045              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40046            }
40047          },
40048          {
40049            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40050            "in": "query",
40051            "name": "continue",
40052            "type": "string",
40053            "uniqueItems": true
40054          },
40055          {
40056            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40057            "in": "query",
40058            "name": "dryRun",
40059            "type": "string",
40060            "uniqueItems": true
40061          },
40062          {
40063            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40064            "in": "query",
40065            "name": "fieldSelector",
40066            "type": "string",
40067            "uniqueItems": true
40068          },
40069          {
40070            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
40071            "in": "query",
40072            "name": "gracePeriodSeconds",
40073            "type": "integer",
40074            "uniqueItems": true
40075          },
40076          {
40077            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40078            "in": "query",
40079            "name": "labelSelector",
40080            "type": "string",
40081            "uniqueItems": true
40082          },
40083          {
40084            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40085            "in": "query",
40086            "name": "limit",
40087            "type": "integer",
40088            "uniqueItems": true
40089          },
40090          {
40091            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
40092            "in": "query",
40093            "name": "orphanDependents",
40094            "type": "boolean",
40095            "uniqueItems": true
40096          },
40097          {
40098            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
40099            "in": "query",
40100            "name": "propagationPolicy",
40101            "type": "string",
40102            "uniqueItems": true
40103          },
40104          {
40105            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40106            "in": "query",
40107            "name": "resourceVersion",
40108            "type": "string",
40109            "uniqueItems": true
40110          },
40111          {
40112            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40113            "in": "query",
40114            "name": "resourceVersionMatch",
40115            "type": "string",
40116            "uniqueItems": true
40117          },
40118          {
40119            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40120            "in": "query",
40121            "name": "timeoutSeconds",
40122            "type": "integer",
40123            "uniqueItems": true
40124          }
40125        ],
40126        "produces": [
40127          "application/json",
40128          "application/yaml",
40129          "application/vnd.kubernetes.protobuf"
40130        ],
40131        "responses": {
40132          "200": {
40133            "description": "OK",
40134            "schema": {
40135              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40136            }
40137          },
40138          "401": {
40139            "description": "Unauthorized"
40140          }
40141        },
40142        "schemes": [
40143          "https"
40144        ],
40145        "tags": [
40146          "admissionregistration_v1"
40147        ],
40148        "x-kubernetes-action": "deletecollection",
40149        "x-kubernetes-group-version-kind": {
40150          "group": "admissionregistration.k8s.io",
40151          "kind": "ValidatingWebhookConfiguration",
40152          "version": "v1"
40153        }
40154      },
40155      "get": {
40156        "consumes": [
40157          "*/*"
40158        ],
40159        "description": "list or watch objects of kind ValidatingWebhookConfiguration",
40160        "operationId": "listAdmissionregistrationV1ValidatingWebhookConfiguration",
40161        "parameters": [
40162          {
40163            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40164            "in": "query",
40165            "name": "allowWatchBookmarks",
40166            "type": "boolean",
40167            "uniqueItems": true
40168          },
40169          {
40170            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40171            "in": "query",
40172            "name": "continue",
40173            "type": "string",
40174            "uniqueItems": true
40175          },
40176          {
40177            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40178            "in": "query",
40179            "name": "fieldSelector",
40180            "type": "string",
40181            "uniqueItems": true
40182          },
40183          {
40184            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40185            "in": "query",
40186            "name": "labelSelector",
40187            "type": "string",
40188            "uniqueItems": true
40189          },
40190          {
40191            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40192            "in": "query",
40193            "name": "limit",
40194            "type": "integer",
40195            "uniqueItems": true
40196          },
40197          {
40198            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40199            "in": "query",
40200            "name": "resourceVersion",
40201            "type": "string",
40202            "uniqueItems": true
40203          },
40204          {
40205            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40206            "in": "query",
40207            "name": "resourceVersionMatch",
40208            "type": "string",
40209            "uniqueItems": true
40210          },
40211          {
40212            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40213            "in": "query",
40214            "name": "timeoutSeconds",
40215            "type": "integer",
40216            "uniqueItems": true
40217          },
40218          {
40219            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40220            "in": "query",
40221            "name": "watch",
40222            "type": "boolean",
40223            "uniqueItems": true
40224          }
40225        ],
40226        "produces": [
40227          "application/json",
40228          "application/yaml",
40229          "application/vnd.kubernetes.protobuf",
40230          "application/json;stream=watch",
40231          "application/vnd.kubernetes.protobuf;stream=watch"
40232        ],
40233        "responses": {
40234          "200": {
40235            "description": "OK",
40236            "schema": {
40237              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList"
40238            }
40239          },
40240          "401": {
40241            "description": "Unauthorized"
40242          }
40243        },
40244        "schemes": [
40245          "https"
40246        ],
40247        "tags": [
40248          "admissionregistration_v1"
40249        ],
40250        "x-kubernetes-action": "list",
40251        "x-kubernetes-group-version-kind": {
40252          "group": "admissionregistration.k8s.io",
40253          "kind": "ValidatingWebhookConfiguration",
40254          "version": "v1"
40255        }
40256      },
40257      "parameters": [
40258        {
40259          "description": "If 'true', then the output is pretty printed.",
40260          "in": "query",
40261          "name": "pretty",
40262          "type": "string",
40263          "uniqueItems": true
40264        }
40265      ],
40266      "post": {
40267        "consumes": [
40268          "*/*"
40269        ],
40270        "description": "create a ValidatingWebhookConfiguration",
40271        "operationId": "createAdmissionregistrationV1ValidatingWebhookConfiguration",
40272        "parameters": [
40273          {
40274            "in": "body",
40275            "name": "body",
40276            "required": true,
40277            "schema": {
40278              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40279            }
40280          },
40281          {
40282            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40283            "in": "query",
40284            "name": "dryRun",
40285            "type": "string",
40286            "uniqueItems": true
40287          },
40288          {
40289            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40290            "in": "query",
40291            "name": "fieldManager",
40292            "type": "string",
40293            "uniqueItems": true
40294          }
40295        ],
40296        "produces": [
40297          "application/json",
40298          "application/yaml",
40299          "application/vnd.kubernetes.protobuf"
40300        ],
40301        "responses": {
40302          "200": {
40303            "description": "OK",
40304            "schema": {
40305              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40306            }
40307          },
40308          "201": {
40309            "description": "Created",
40310            "schema": {
40311              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40312            }
40313          },
40314          "202": {
40315            "description": "Accepted",
40316            "schema": {
40317              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40318            }
40319          },
40320          "401": {
40321            "description": "Unauthorized"
40322          }
40323        },
40324        "schemes": [
40325          "https"
40326        ],
40327        "tags": [
40328          "admissionregistration_v1"
40329        ],
40330        "x-kubernetes-action": "post",
40331        "x-kubernetes-group-version-kind": {
40332          "group": "admissionregistration.k8s.io",
40333          "kind": "ValidatingWebhookConfiguration",
40334          "version": "v1"
40335        }
40336      }
40337    },
40338    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}": {
40339      "delete": {
40340        "consumes": [
40341          "*/*"
40342        ],
40343        "description": "delete a ValidatingWebhookConfiguration",
40344        "operationId": "deleteAdmissionregistrationV1ValidatingWebhookConfiguration",
40345        "parameters": [
40346          {
40347            "in": "body",
40348            "name": "body",
40349            "schema": {
40350              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40351            }
40352          },
40353          {
40354            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40355            "in": "query",
40356            "name": "dryRun",
40357            "type": "string",
40358            "uniqueItems": true
40359          },
40360          {
40361            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
40362            "in": "query",
40363            "name": "gracePeriodSeconds",
40364            "type": "integer",
40365            "uniqueItems": true
40366          },
40367          {
40368            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
40369            "in": "query",
40370            "name": "orphanDependents",
40371            "type": "boolean",
40372            "uniqueItems": true
40373          },
40374          {
40375            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
40376            "in": "query",
40377            "name": "propagationPolicy",
40378            "type": "string",
40379            "uniqueItems": true
40380          }
40381        ],
40382        "produces": [
40383          "application/json",
40384          "application/yaml",
40385          "application/vnd.kubernetes.protobuf"
40386        ],
40387        "responses": {
40388          "200": {
40389            "description": "OK",
40390            "schema": {
40391              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40392            }
40393          },
40394          "202": {
40395            "description": "Accepted",
40396            "schema": {
40397              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40398            }
40399          },
40400          "401": {
40401            "description": "Unauthorized"
40402          }
40403        },
40404        "schemes": [
40405          "https"
40406        ],
40407        "tags": [
40408          "admissionregistration_v1"
40409        ],
40410        "x-kubernetes-action": "delete",
40411        "x-kubernetes-group-version-kind": {
40412          "group": "admissionregistration.k8s.io",
40413          "kind": "ValidatingWebhookConfiguration",
40414          "version": "v1"
40415        }
40416      },
40417      "get": {
40418        "consumes": [
40419          "*/*"
40420        ],
40421        "description": "read the specified ValidatingWebhookConfiguration",
40422        "operationId": "readAdmissionregistrationV1ValidatingWebhookConfiguration",
40423        "produces": [
40424          "application/json",
40425          "application/yaml",
40426          "application/vnd.kubernetes.protobuf"
40427        ],
40428        "responses": {
40429          "200": {
40430            "description": "OK",
40431            "schema": {
40432              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40433            }
40434          },
40435          "401": {
40436            "description": "Unauthorized"
40437          }
40438        },
40439        "schemes": [
40440          "https"
40441        ],
40442        "tags": [
40443          "admissionregistration_v1"
40444        ],
40445        "x-kubernetes-action": "get",
40446        "x-kubernetes-group-version-kind": {
40447          "group": "admissionregistration.k8s.io",
40448          "kind": "ValidatingWebhookConfiguration",
40449          "version": "v1"
40450        }
40451      },
40452      "parameters": [
40453        {
40454          "description": "name of the ValidatingWebhookConfiguration",
40455          "in": "path",
40456          "name": "name",
40457          "required": true,
40458          "type": "string",
40459          "uniqueItems": true
40460        },
40461        {
40462          "description": "If 'true', then the output is pretty printed.",
40463          "in": "query",
40464          "name": "pretty",
40465          "type": "string",
40466          "uniqueItems": true
40467        }
40468      ],
40469      "patch": {
40470        "consumes": [
40471          "application/json-patch+json",
40472          "application/merge-patch+json",
40473          "application/strategic-merge-patch+json",
40474          "application/apply-patch+yaml"
40475        ],
40476        "description": "partially update the specified ValidatingWebhookConfiguration",
40477        "operationId": "patchAdmissionregistrationV1ValidatingWebhookConfiguration",
40478        "parameters": [
40479          {
40480            "in": "body",
40481            "name": "body",
40482            "required": true,
40483            "schema": {
40484              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
40485            }
40486          },
40487          {
40488            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40489            "in": "query",
40490            "name": "dryRun",
40491            "type": "string",
40492            "uniqueItems": true
40493          },
40494          {
40495            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
40496            "in": "query",
40497            "name": "fieldManager",
40498            "type": "string",
40499            "uniqueItems": true
40500          },
40501          {
40502            "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.",
40503            "in": "query",
40504            "name": "force",
40505            "type": "boolean",
40506            "uniqueItems": true
40507          }
40508        ],
40509        "produces": [
40510          "application/json",
40511          "application/yaml",
40512          "application/vnd.kubernetes.protobuf"
40513        ],
40514        "responses": {
40515          "200": {
40516            "description": "OK",
40517            "schema": {
40518              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40519            }
40520          },
40521          "401": {
40522            "description": "Unauthorized"
40523          }
40524        },
40525        "schemes": [
40526          "https"
40527        ],
40528        "tags": [
40529          "admissionregistration_v1"
40530        ],
40531        "x-kubernetes-action": "patch",
40532        "x-kubernetes-group-version-kind": {
40533          "group": "admissionregistration.k8s.io",
40534          "kind": "ValidatingWebhookConfiguration",
40535          "version": "v1"
40536        }
40537      },
40538      "put": {
40539        "consumes": [
40540          "*/*"
40541        ],
40542        "description": "replace the specified ValidatingWebhookConfiguration",
40543        "operationId": "replaceAdmissionregistrationV1ValidatingWebhookConfiguration",
40544        "parameters": [
40545          {
40546            "in": "body",
40547            "name": "body",
40548            "required": true,
40549            "schema": {
40550              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40551            }
40552          },
40553          {
40554            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40555            "in": "query",
40556            "name": "dryRun",
40557            "type": "string",
40558            "uniqueItems": true
40559          },
40560          {
40561            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40562            "in": "query",
40563            "name": "fieldManager",
40564            "type": "string",
40565            "uniqueItems": true
40566          }
40567        ],
40568        "produces": [
40569          "application/json",
40570          "application/yaml",
40571          "application/vnd.kubernetes.protobuf"
40572        ],
40573        "responses": {
40574          "200": {
40575            "description": "OK",
40576            "schema": {
40577              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40578            }
40579          },
40580          "201": {
40581            "description": "Created",
40582            "schema": {
40583              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40584            }
40585          },
40586          "401": {
40587            "description": "Unauthorized"
40588          }
40589        },
40590        "schemes": [
40591          "https"
40592        ],
40593        "tags": [
40594          "admissionregistration_v1"
40595        ],
40596        "x-kubernetes-action": "put",
40597        "x-kubernetes-group-version-kind": {
40598          "group": "admissionregistration.k8s.io",
40599          "kind": "ValidatingWebhookConfiguration",
40600          "version": "v1"
40601        }
40602      }
40603    },
40604    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations": {
40605      "get": {
40606        "consumes": [
40607          "*/*"
40608        ],
40609        "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
40610        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfigurationList",
40611        "produces": [
40612          "application/json",
40613          "application/yaml",
40614          "application/vnd.kubernetes.protobuf",
40615          "application/json;stream=watch",
40616          "application/vnd.kubernetes.protobuf;stream=watch"
40617        ],
40618        "responses": {
40619          "200": {
40620            "description": "OK",
40621            "schema": {
40622              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40623            }
40624          },
40625          "401": {
40626            "description": "Unauthorized"
40627          }
40628        },
40629        "schemes": [
40630          "https"
40631        ],
40632        "tags": [
40633          "admissionregistration_v1"
40634        ],
40635        "x-kubernetes-action": "watchlist",
40636        "x-kubernetes-group-version-kind": {
40637          "group": "admissionregistration.k8s.io",
40638          "kind": "MutatingWebhookConfiguration",
40639          "version": "v1"
40640        }
40641      },
40642      "parameters": [
40643        {
40644          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40645          "in": "query",
40646          "name": "allowWatchBookmarks",
40647          "type": "boolean",
40648          "uniqueItems": true
40649        },
40650        {
40651          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40652          "in": "query",
40653          "name": "continue",
40654          "type": "string",
40655          "uniqueItems": true
40656        },
40657        {
40658          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40659          "in": "query",
40660          "name": "fieldSelector",
40661          "type": "string",
40662          "uniqueItems": true
40663        },
40664        {
40665          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40666          "in": "query",
40667          "name": "labelSelector",
40668          "type": "string",
40669          "uniqueItems": true
40670        },
40671        {
40672          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40673          "in": "query",
40674          "name": "limit",
40675          "type": "integer",
40676          "uniqueItems": true
40677        },
40678        {
40679          "description": "If 'true', then the output is pretty printed.",
40680          "in": "query",
40681          "name": "pretty",
40682          "type": "string",
40683          "uniqueItems": true
40684        },
40685        {
40686          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40687          "in": "query",
40688          "name": "resourceVersion",
40689          "type": "string",
40690          "uniqueItems": true
40691        },
40692        {
40693          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40694          "in": "query",
40695          "name": "resourceVersionMatch",
40696          "type": "string",
40697          "uniqueItems": true
40698        },
40699        {
40700          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40701          "in": "query",
40702          "name": "timeoutSeconds",
40703          "type": "integer",
40704          "uniqueItems": true
40705        },
40706        {
40707          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40708          "in": "query",
40709          "name": "watch",
40710          "type": "boolean",
40711          "uniqueItems": true
40712        }
40713      ]
40714    },
40715    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/{name}": {
40716      "get": {
40717        "consumes": [
40718          "*/*"
40719        ],
40720        "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.",
40721        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfiguration",
40722        "produces": [
40723          "application/json",
40724          "application/yaml",
40725          "application/vnd.kubernetes.protobuf",
40726          "application/json;stream=watch",
40727          "application/vnd.kubernetes.protobuf;stream=watch"
40728        ],
40729        "responses": {
40730          "200": {
40731            "description": "OK",
40732            "schema": {
40733              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40734            }
40735          },
40736          "401": {
40737            "description": "Unauthorized"
40738          }
40739        },
40740        "schemes": [
40741          "https"
40742        ],
40743        "tags": [
40744          "admissionregistration_v1"
40745        ],
40746        "x-kubernetes-action": "watch",
40747        "x-kubernetes-group-version-kind": {
40748          "group": "admissionregistration.k8s.io",
40749          "kind": "MutatingWebhookConfiguration",
40750          "version": "v1"
40751        }
40752      },
40753      "parameters": [
40754        {
40755          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40756          "in": "query",
40757          "name": "allowWatchBookmarks",
40758          "type": "boolean",
40759          "uniqueItems": true
40760        },
40761        {
40762          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40763          "in": "query",
40764          "name": "continue",
40765          "type": "string",
40766          "uniqueItems": true
40767        },
40768        {
40769          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40770          "in": "query",
40771          "name": "fieldSelector",
40772          "type": "string",
40773          "uniqueItems": true
40774        },
40775        {
40776          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40777          "in": "query",
40778          "name": "labelSelector",
40779          "type": "string",
40780          "uniqueItems": true
40781        },
40782        {
40783          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40784          "in": "query",
40785          "name": "limit",
40786          "type": "integer",
40787          "uniqueItems": true
40788        },
40789        {
40790          "description": "name of the MutatingWebhookConfiguration",
40791          "in": "path",
40792          "name": "name",
40793          "required": true,
40794          "type": "string",
40795          "uniqueItems": true
40796        },
40797        {
40798          "description": "If 'true', then the output is pretty printed.",
40799          "in": "query",
40800          "name": "pretty",
40801          "type": "string",
40802          "uniqueItems": true
40803        },
40804        {
40805          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40806          "in": "query",
40807          "name": "resourceVersion",
40808          "type": "string",
40809          "uniqueItems": true
40810        },
40811        {
40812          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40813          "in": "query",
40814          "name": "resourceVersionMatch",
40815          "type": "string",
40816          "uniqueItems": true
40817        },
40818        {
40819          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40820          "in": "query",
40821          "name": "timeoutSeconds",
40822          "type": "integer",
40823          "uniqueItems": true
40824        },
40825        {
40826          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40827          "in": "query",
40828          "name": "watch",
40829          "type": "boolean",
40830          "uniqueItems": true
40831        }
40832      ]
40833    },
40834    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations": {
40835      "get": {
40836        "consumes": [
40837          "*/*"
40838        ],
40839        "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
40840        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfigurationList",
40841        "produces": [
40842          "application/json",
40843          "application/yaml",
40844          "application/vnd.kubernetes.protobuf",
40845          "application/json;stream=watch",
40846          "application/vnd.kubernetes.protobuf;stream=watch"
40847        ],
40848        "responses": {
40849          "200": {
40850            "description": "OK",
40851            "schema": {
40852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40853            }
40854          },
40855          "401": {
40856            "description": "Unauthorized"
40857          }
40858        },
40859        "schemes": [
40860          "https"
40861        ],
40862        "tags": [
40863          "admissionregistration_v1"
40864        ],
40865        "x-kubernetes-action": "watchlist",
40866        "x-kubernetes-group-version-kind": {
40867          "group": "admissionregistration.k8s.io",
40868          "kind": "ValidatingWebhookConfiguration",
40869          "version": "v1"
40870        }
40871      },
40872      "parameters": [
40873        {
40874          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40875          "in": "query",
40876          "name": "allowWatchBookmarks",
40877          "type": "boolean",
40878          "uniqueItems": true
40879        },
40880        {
40881          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40882          "in": "query",
40883          "name": "continue",
40884          "type": "string",
40885          "uniqueItems": true
40886        },
40887        {
40888          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40889          "in": "query",
40890          "name": "fieldSelector",
40891          "type": "string",
40892          "uniqueItems": true
40893        },
40894        {
40895          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40896          "in": "query",
40897          "name": "labelSelector",
40898          "type": "string",
40899          "uniqueItems": true
40900        },
40901        {
40902          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40903          "in": "query",
40904          "name": "limit",
40905          "type": "integer",
40906          "uniqueItems": true
40907        },
40908        {
40909          "description": "If 'true', then the output is pretty printed.",
40910          "in": "query",
40911          "name": "pretty",
40912          "type": "string",
40913          "uniqueItems": true
40914        },
40915        {
40916          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40917          "in": "query",
40918          "name": "resourceVersion",
40919          "type": "string",
40920          "uniqueItems": true
40921        },
40922        {
40923          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40924          "in": "query",
40925          "name": "resourceVersionMatch",
40926          "type": "string",
40927          "uniqueItems": true
40928        },
40929        {
40930          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40931          "in": "query",
40932          "name": "timeoutSeconds",
40933          "type": "integer",
40934          "uniqueItems": true
40935        },
40936        {
40937          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40938          "in": "query",
40939          "name": "watch",
40940          "type": "boolean",
40941          "uniqueItems": true
40942        }
40943      ]
40944    },
40945    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/{name}": {
40946      "get": {
40947        "consumes": [
40948          "*/*"
40949        ],
40950        "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.",
40951        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfiguration",
40952        "produces": [
40953          "application/json",
40954          "application/yaml",
40955          "application/vnd.kubernetes.protobuf",
40956          "application/json;stream=watch",
40957          "application/vnd.kubernetes.protobuf;stream=watch"
40958        ],
40959        "responses": {
40960          "200": {
40961            "description": "OK",
40962            "schema": {
40963              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40964            }
40965          },
40966          "401": {
40967            "description": "Unauthorized"
40968          }
40969        },
40970        "schemes": [
40971          "https"
40972        ],
40973        "tags": [
40974          "admissionregistration_v1"
40975        ],
40976        "x-kubernetes-action": "watch",
40977        "x-kubernetes-group-version-kind": {
40978          "group": "admissionregistration.k8s.io",
40979          "kind": "ValidatingWebhookConfiguration",
40980          "version": "v1"
40981        }
40982      },
40983      "parameters": [
40984        {
40985          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40986          "in": "query",
40987          "name": "allowWatchBookmarks",
40988          "type": "boolean",
40989          "uniqueItems": true
40990        },
40991        {
40992          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40993          "in": "query",
40994          "name": "continue",
40995          "type": "string",
40996          "uniqueItems": true
40997        },
40998        {
40999          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41000          "in": "query",
41001          "name": "fieldSelector",
41002          "type": "string",
41003          "uniqueItems": true
41004        },
41005        {
41006          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41007          "in": "query",
41008          "name": "labelSelector",
41009          "type": "string",
41010          "uniqueItems": true
41011        },
41012        {
41013          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41014          "in": "query",
41015          "name": "limit",
41016          "type": "integer",
41017          "uniqueItems": true
41018        },
41019        {
41020          "description": "name of the ValidatingWebhookConfiguration",
41021          "in": "path",
41022          "name": "name",
41023          "required": true,
41024          "type": "string",
41025          "uniqueItems": true
41026        },
41027        {
41028          "description": "If 'true', then the output is pretty printed.",
41029          "in": "query",
41030          "name": "pretty",
41031          "type": "string",
41032          "uniqueItems": true
41033        },
41034        {
41035          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41036          "in": "query",
41037          "name": "resourceVersion",
41038          "type": "string",
41039          "uniqueItems": true
41040        },
41041        {
41042          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41043          "in": "query",
41044          "name": "resourceVersionMatch",
41045          "type": "string",
41046          "uniqueItems": true
41047        },
41048        {
41049          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41050          "in": "query",
41051          "name": "timeoutSeconds",
41052          "type": "integer",
41053          "uniqueItems": true
41054        },
41055        {
41056          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41057          "in": "query",
41058          "name": "watch",
41059          "type": "boolean",
41060          "uniqueItems": true
41061        }
41062      ]
41063    },
41064    "/apis/admissionregistration.k8s.io/v1beta1/": {
41065      "get": {
41066        "consumes": [
41067          "application/json",
41068          "application/yaml",
41069          "application/vnd.kubernetes.protobuf"
41070        ],
41071        "description": "get available resources",
41072        "operationId": "getAdmissionregistrationV1beta1APIResources",
41073        "produces": [
41074          "application/json",
41075          "application/yaml",
41076          "application/vnd.kubernetes.protobuf"
41077        ],
41078        "responses": {
41079          "200": {
41080            "description": "OK",
41081            "schema": {
41082              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
41083            }
41084          },
41085          "401": {
41086            "description": "Unauthorized"
41087          }
41088        },
41089        "schemes": [
41090          "https"
41091        ],
41092        "tags": [
41093          "admissionregistration_v1beta1"
41094        ]
41095      }
41096    },
41097    "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations": {
41098      "delete": {
41099        "consumes": [
41100          "*/*"
41101        ],
41102        "description": "delete collection of MutatingWebhookConfiguration",
41103        "operationId": "deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration",
41104        "parameters": [
41105          {
41106            "in": "body",
41107            "name": "body",
41108            "schema": {
41109              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41110            }
41111          },
41112          {
41113            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41114            "in": "query",
41115            "name": "continue",
41116            "type": "string",
41117            "uniqueItems": true
41118          },
41119          {
41120            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41121            "in": "query",
41122            "name": "dryRun",
41123            "type": "string",
41124            "uniqueItems": true
41125          },
41126          {
41127            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41128            "in": "query",
41129            "name": "fieldSelector",
41130            "type": "string",
41131            "uniqueItems": true
41132          },
41133          {
41134            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41135            "in": "query",
41136            "name": "gracePeriodSeconds",
41137            "type": "integer",
41138            "uniqueItems": true
41139          },
41140          {
41141            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41142            "in": "query",
41143            "name": "labelSelector",
41144            "type": "string",
41145            "uniqueItems": true
41146          },
41147          {
41148            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41149            "in": "query",
41150            "name": "limit",
41151            "type": "integer",
41152            "uniqueItems": true
41153          },
41154          {
41155            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41156            "in": "query",
41157            "name": "orphanDependents",
41158            "type": "boolean",
41159            "uniqueItems": true
41160          },
41161          {
41162            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41163            "in": "query",
41164            "name": "propagationPolicy",
41165            "type": "string",
41166            "uniqueItems": true
41167          },
41168          {
41169            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41170            "in": "query",
41171            "name": "resourceVersion",
41172            "type": "string",
41173            "uniqueItems": true
41174          },
41175          {
41176            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41177            "in": "query",
41178            "name": "resourceVersionMatch",
41179            "type": "string",
41180            "uniqueItems": true
41181          },
41182          {
41183            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41184            "in": "query",
41185            "name": "timeoutSeconds",
41186            "type": "integer",
41187            "uniqueItems": true
41188          }
41189        ],
41190        "produces": [
41191          "application/json",
41192          "application/yaml",
41193          "application/vnd.kubernetes.protobuf"
41194        ],
41195        "responses": {
41196          "200": {
41197            "description": "OK",
41198            "schema": {
41199              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41200            }
41201          },
41202          "401": {
41203            "description": "Unauthorized"
41204          }
41205        },
41206        "schemes": [
41207          "https"
41208        ],
41209        "tags": [
41210          "admissionregistration_v1beta1"
41211        ],
41212        "x-kubernetes-action": "deletecollection",
41213        "x-kubernetes-group-version-kind": {
41214          "group": "admissionregistration.k8s.io",
41215          "kind": "MutatingWebhookConfiguration",
41216          "version": "v1beta1"
41217        }
41218      },
41219      "get": {
41220        "consumes": [
41221          "*/*"
41222        ],
41223        "description": "list or watch objects of kind MutatingWebhookConfiguration",
41224        "operationId": "listAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41225        "parameters": [
41226          {
41227            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
41228            "in": "query",
41229            "name": "allowWatchBookmarks",
41230            "type": "boolean",
41231            "uniqueItems": true
41232          },
41233          {
41234            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41235            "in": "query",
41236            "name": "continue",
41237            "type": "string",
41238            "uniqueItems": true
41239          },
41240          {
41241            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41242            "in": "query",
41243            "name": "fieldSelector",
41244            "type": "string",
41245            "uniqueItems": true
41246          },
41247          {
41248            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41249            "in": "query",
41250            "name": "labelSelector",
41251            "type": "string",
41252            "uniqueItems": true
41253          },
41254          {
41255            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41256            "in": "query",
41257            "name": "limit",
41258            "type": "integer",
41259            "uniqueItems": true
41260          },
41261          {
41262            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41263            "in": "query",
41264            "name": "resourceVersion",
41265            "type": "string",
41266            "uniqueItems": true
41267          },
41268          {
41269            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41270            "in": "query",
41271            "name": "resourceVersionMatch",
41272            "type": "string",
41273            "uniqueItems": true
41274          },
41275          {
41276            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41277            "in": "query",
41278            "name": "timeoutSeconds",
41279            "type": "integer",
41280            "uniqueItems": true
41281          },
41282          {
41283            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41284            "in": "query",
41285            "name": "watch",
41286            "type": "boolean",
41287            "uniqueItems": true
41288          }
41289        ],
41290        "produces": [
41291          "application/json",
41292          "application/yaml",
41293          "application/vnd.kubernetes.protobuf",
41294          "application/json;stream=watch",
41295          "application/vnd.kubernetes.protobuf;stream=watch"
41296        ],
41297        "responses": {
41298          "200": {
41299            "description": "OK",
41300            "schema": {
41301              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList"
41302            }
41303          },
41304          "401": {
41305            "description": "Unauthorized"
41306          }
41307        },
41308        "schemes": [
41309          "https"
41310        ],
41311        "tags": [
41312          "admissionregistration_v1beta1"
41313        ],
41314        "x-kubernetes-action": "list",
41315        "x-kubernetes-group-version-kind": {
41316          "group": "admissionregistration.k8s.io",
41317          "kind": "MutatingWebhookConfiguration",
41318          "version": "v1beta1"
41319        }
41320      },
41321      "parameters": [
41322        {
41323          "description": "If 'true', then the output is pretty printed.",
41324          "in": "query",
41325          "name": "pretty",
41326          "type": "string",
41327          "uniqueItems": true
41328        }
41329      ],
41330      "post": {
41331        "consumes": [
41332          "*/*"
41333        ],
41334        "description": "create a MutatingWebhookConfiguration",
41335        "operationId": "createAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41336        "parameters": [
41337          {
41338            "in": "body",
41339            "name": "body",
41340            "required": true,
41341            "schema": {
41342              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41343            }
41344          },
41345          {
41346            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41347            "in": "query",
41348            "name": "dryRun",
41349            "type": "string",
41350            "uniqueItems": true
41351          },
41352          {
41353            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41354            "in": "query",
41355            "name": "fieldManager",
41356            "type": "string",
41357            "uniqueItems": true
41358          }
41359        ],
41360        "produces": [
41361          "application/json",
41362          "application/yaml",
41363          "application/vnd.kubernetes.protobuf"
41364        ],
41365        "responses": {
41366          "200": {
41367            "description": "OK",
41368            "schema": {
41369              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41370            }
41371          },
41372          "201": {
41373            "description": "Created",
41374            "schema": {
41375              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41376            }
41377          },
41378          "202": {
41379            "description": "Accepted",
41380            "schema": {
41381              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41382            }
41383          },
41384          "401": {
41385            "description": "Unauthorized"
41386          }
41387        },
41388        "schemes": [
41389          "https"
41390        ],
41391        "tags": [
41392          "admissionregistration_v1beta1"
41393        ],
41394        "x-kubernetes-action": "post",
41395        "x-kubernetes-group-version-kind": {
41396          "group": "admissionregistration.k8s.io",
41397          "kind": "MutatingWebhookConfiguration",
41398          "version": "v1beta1"
41399        }
41400      }
41401    },
41402    "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}": {
41403      "delete": {
41404        "consumes": [
41405          "*/*"
41406        ],
41407        "description": "delete a MutatingWebhookConfiguration",
41408        "operationId": "deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41409        "parameters": [
41410          {
41411            "in": "body",
41412            "name": "body",
41413            "schema": {
41414              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41415            }
41416          },
41417          {
41418            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41419            "in": "query",
41420            "name": "dryRun",
41421            "type": "string",
41422            "uniqueItems": true
41423          },
41424          {
41425            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41426            "in": "query",
41427            "name": "gracePeriodSeconds",
41428            "type": "integer",
41429            "uniqueItems": true
41430          },
41431          {
41432            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41433            "in": "query",
41434            "name": "orphanDependents",
41435            "type": "boolean",
41436            "uniqueItems": true
41437          },
41438          {
41439            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41440            "in": "query",
41441            "name": "propagationPolicy",
41442            "type": "string",
41443            "uniqueItems": true
41444          }
41445        ],
41446        "produces": [
41447          "application/json",
41448          "application/yaml",
41449          "application/vnd.kubernetes.protobuf"
41450        ],
41451        "responses": {
41452          "200": {
41453            "description": "OK",
41454            "schema": {
41455              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41456            }
41457          },
41458          "202": {
41459            "description": "Accepted",
41460            "schema": {
41461              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41462            }
41463          },
41464          "401": {
41465            "description": "Unauthorized"
41466          }
41467        },
41468        "schemes": [
41469          "https"
41470        ],
41471        "tags": [
41472          "admissionregistration_v1beta1"
41473        ],
41474        "x-kubernetes-action": "delete",
41475        "x-kubernetes-group-version-kind": {
41476          "group": "admissionregistration.k8s.io",
41477          "kind": "MutatingWebhookConfiguration",
41478          "version": "v1beta1"
41479        }
41480      },
41481      "get": {
41482        "consumes": [
41483          "*/*"
41484        ],
41485        "description": "read the specified MutatingWebhookConfiguration",
41486        "operationId": "readAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41487        "produces": [
41488          "application/json",
41489          "application/yaml",
41490          "application/vnd.kubernetes.protobuf"
41491        ],
41492        "responses": {
41493          "200": {
41494            "description": "OK",
41495            "schema": {
41496              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41497            }
41498          },
41499          "401": {
41500            "description": "Unauthorized"
41501          }
41502        },
41503        "schemes": [
41504          "https"
41505        ],
41506        "tags": [
41507          "admissionregistration_v1beta1"
41508        ],
41509        "x-kubernetes-action": "get",
41510        "x-kubernetes-group-version-kind": {
41511          "group": "admissionregistration.k8s.io",
41512          "kind": "MutatingWebhookConfiguration",
41513          "version": "v1beta1"
41514        }
41515      },
41516      "parameters": [
41517        {
41518          "description": "name of the MutatingWebhookConfiguration",
41519          "in": "path",
41520          "name": "name",
41521          "required": true,
41522          "type": "string",
41523          "uniqueItems": true
41524        },
41525        {
41526          "description": "If 'true', then the output is pretty printed.",
41527          "in": "query",
41528          "name": "pretty",
41529          "type": "string",
41530          "uniqueItems": true
41531        }
41532      ],
41533      "patch": {
41534        "consumes": [
41535          "application/json-patch+json",
41536          "application/merge-patch+json",
41537          "application/strategic-merge-patch+json",
41538          "application/apply-patch+yaml"
41539        ],
41540        "description": "partially update the specified MutatingWebhookConfiguration",
41541        "operationId": "patchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41542        "parameters": [
41543          {
41544            "in": "body",
41545            "name": "body",
41546            "required": true,
41547            "schema": {
41548              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
41549            }
41550          },
41551          {
41552            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41553            "in": "query",
41554            "name": "dryRun",
41555            "type": "string",
41556            "uniqueItems": true
41557          },
41558          {
41559            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
41560            "in": "query",
41561            "name": "fieldManager",
41562            "type": "string",
41563            "uniqueItems": true
41564          },
41565          {
41566            "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.",
41567            "in": "query",
41568            "name": "force",
41569            "type": "boolean",
41570            "uniqueItems": true
41571          }
41572        ],
41573        "produces": [
41574          "application/json",
41575          "application/yaml",
41576          "application/vnd.kubernetes.protobuf"
41577        ],
41578        "responses": {
41579          "200": {
41580            "description": "OK",
41581            "schema": {
41582              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41583            }
41584          },
41585          "401": {
41586            "description": "Unauthorized"
41587          }
41588        },
41589        "schemes": [
41590          "https"
41591        ],
41592        "tags": [
41593          "admissionregistration_v1beta1"
41594        ],
41595        "x-kubernetes-action": "patch",
41596        "x-kubernetes-group-version-kind": {
41597          "group": "admissionregistration.k8s.io",
41598          "kind": "MutatingWebhookConfiguration",
41599          "version": "v1beta1"
41600        }
41601      },
41602      "put": {
41603        "consumes": [
41604          "*/*"
41605        ],
41606        "description": "replace the specified MutatingWebhookConfiguration",
41607        "operationId": "replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41608        "parameters": [
41609          {
41610            "in": "body",
41611            "name": "body",
41612            "required": true,
41613            "schema": {
41614              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41615            }
41616          },
41617          {
41618            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41619            "in": "query",
41620            "name": "dryRun",
41621            "type": "string",
41622            "uniqueItems": true
41623          },
41624          {
41625            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41626            "in": "query",
41627            "name": "fieldManager",
41628            "type": "string",
41629            "uniqueItems": true
41630          }
41631        ],
41632        "produces": [
41633          "application/json",
41634          "application/yaml",
41635          "application/vnd.kubernetes.protobuf"
41636        ],
41637        "responses": {
41638          "200": {
41639            "description": "OK",
41640            "schema": {
41641              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41642            }
41643          },
41644          "201": {
41645            "description": "Created",
41646            "schema": {
41647              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41648            }
41649          },
41650          "401": {
41651            "description": "Unauthorized"
41652          }
41653        },
41654        "schemes": [
41655          "https"
41656        ],
41657        "tags": [
41658          "admissionregistration_v1beta1"
41659        ],
41660        "x-kubernetes-action": "put",
41661        "x-kubernetes-group-version-kind": {
41662          "group": "admissionregistration.k8s.io",
41663          "kind": "MutatingWebhookConfiguration",
41664          "version": "v1beta1"
41665        }
41666      }
41667    },
41668    "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations": {
41669      "delete": {
41670        "consumes": [
41671          "*/*"
41672        ],
41673        "description": "delete collection of ValidatingWebhookConfiguration",
41674        "operationId": "deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration",
41675        "parameters": [
41676          {
41677            "in": "body",
41678            "name": "body",
41679            "schema": {
41680              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41681            }
41682          },
41683          {
41684            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41685            "in": "query",
41686            "name": "continue",
41687            "type": "string",
41688            "uniqueItems": true
41689          },
41690          {
41691            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41692            "in": "query",
41693            "name": "dryRun",
41694            "type": "string",
41695            "uniqueItems": true
41696          },
41697          {
41698            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41699            "in": "query",
41700            "name": "fieldSelector",
41701            "type": "string",
41702            "uniqueItems": true
41703          },
41704          {
41705            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41706            "in": "query",
41707            "name": "gracePeriodSeconds",
41708            "type": "integer",
41709            "uniqueItems": true
41710          },
41711          {
41712            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41713            "in": "query",
41714            "name": "labelSelector",
41715            "type": "string",
41716            "uniqueItems": true
41717          },
41718          {
41719            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41720            "in": "query",
41721            "name": "limit",
41722            "type": "integer",
41723            "uniqueItems": true
41724          },
41725          {
41726            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41727            "in": "query",
41728            "name": "orphanDependents",
41729            "type": "boolean",
41730            "uniqueItems": true
41731          },
41732          {
41733            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41734            "in": "query",
41735            "name": "propagationPolicy",
41736            "type": "string",
41737            "uniqueItems": true
41738          },
41739          {
41740            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41741            "in": "query",
41742            "name": "resourceVersion",
41743            "type": "string",
41744            "uniqueItems": true
41745          },
41746          {
41747            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41748            "in": "query",
41749            "name": "resourceVersionMatch",
41750            "type": "string",
41751            "uniqueItems": true
41752          },
41753          {
41754            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41755            "in": "query",
41756            "name": "timeoutSeconds",
41757            "type": "integer",
41758            "uniqueItems": true
41759          }
41760        ],
41761        "produces": [
41762          "application/json",
41763          "application/yaml",
41764          "application/vnd.kubernetes.protobuf"
41765        ],
41766        "responses": {
41767          "200": {
41768            "description": "OK",
41769            "schema": {
41770              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41771            }
41772          },
41773          "401": {
41774            "description": "Unauthorized"
41775          }
41776        },
41777        "schemes": [
41778          "https"
41779        ],
41780        "tags": [
41781          "admissionregistration_v1beta1"
41782        ],
41783        "x-kubernetes-action": "deletecollection",
41784        "x-kubernetes-group-version-kind": {
41785          "group": "admissionregistration.k8s.io",
41786          "kind": "ValidatingWebhookConfiguration",
41787          "version": "v1beta1"
41788        }
41789      },
41790      "get": {
41791        "consumes": [
41792          "*/*"
41793        ],
41794        "description": "list or watch objects of kind ValidatingWebhookConfiguration",
41795        "operationId": "listAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41796        "parameters": [
41797          {
41798            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
41799            "in": "query",
41800            "name": "allowWatchBookmarks",
41801            "type": "boolean",
41802            "uniqueItems": true
41803          },
41804          {
41805            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41806            "in": "query",
41807            "name": "continue",
41808            "type": "string",
41809            "uniqueItems": true
41810          },
41811          {
41812            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41813            "in": "query",
41814            "name": "fieldSelector",
41815            "type": "string",
41816            "uniqueItems": true
41817          },
41818          {
41819            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41820            "in": "query",
41821            "name": "labelSelector",
41822            "type": "string",
41823            "uniqueItems": true
41824          },
41825          {
41826            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41827            "in": "query",
41828            "name": "limit",
41829            "type": "integer",
41830            "uniqueItems": true
41831          },
41832          {
41833            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41834            "in": "query",
41835            "name": "resourceVersion",
41836            "type": "string",
41837            "uniqueItems": true
41838          },
41839          {
41840            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41841            "in": "query",
41842            "name": "resourceVersionMatch",
41843            "type": "string",
41844            "uniqueItems": true
41845          },
41846          {
41847            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41848            "in": "query",
41849            "name": "timeoutSeconds",
41850            "type": "integer",
41851            "uniqueItems": true
41852          },
41853          {
41854            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41855            "in": "query",
41856            "name": "watch",
41857            "type": "boolean",
41858            "uniqueItems": true
41859          }
41860        ],
41861        "produces": [
41862          "application/json",
41863          "application/yaml",
41864          "application/vnd.kubernetes.protobuf",
41865          "application/json;stream=watch",
41866          "application/vnd.kubernetes.protobuf;stream=watch"
41867        ],
41868        "responses": {
41869          "200": {
41870            "description": "OK",
41871            "schema": {
41872              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList"
41873            }
41874          },
41875          "401": {
41876            "description": "Unauthorized"
41877          }
41878        },
41879        "schemes": [
41880          "https"
41881        ],
41882        "tags": [
41883          "admissionregistration_v1beta1"
41884        ],
41885        "x-kubernetes-action": "list",
41886        "x-kubernetes-group-version-kind": {
41887          "group": "admissionregistration.k8s.io",
41888          "kind": "ValidatingWebhookConfiguration",
41889          "version": "v1beta1"
41890        }
41891      },
41892      "parameters": [
41893        {
41894          "description": "If 'true', then the output is pretty printed.",
41895          "in": "query",
41896          "name": "pretty",
41897          "type": "string",
41898          "uniqueItems": true
41899        }
41900      ],
41901      "post": {
41902        "consumes": [
41903          "*/*"
41904        ],
41905        "description": "create a ValidatingWebhookConfiguration",
41906        "operationId": "createAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41907        "parameters": [
41908          {
41909            "in": "body",
41910            "name": "body",
41911            "required": true,
41912            "schema": {
41913              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41914            }
41915          },
41916          {
41917            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41918            "in": "query",
41919            "name": "dryRun",
41920            "type": "string",
41921            "uniqueItems": true
41922          },
41923          {
41924            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41925            "in": "query",
41926            "name": "fieldManager",
41927            "type": "string",
41928            "uniqueItems": true
41929          }
41930        ],
41931        "produces": [
41932          "application/json",
41933          "application/yaml",
41934          "application/vnd.kubernetes.protobuf"
41935        ],
41936        "responses": {
41937          "200": {
41938            "description": "OK",
41939            "schema": {
41940              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41941            }
41942          },
41943          "201": {
41944            "description": "Created",
41945            "schema": {
41946              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41947            }
41948          },
41949          "202": {
41950            "description": "Accepted",
41951            "schema": {
41952              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41953            }
41954          },
41955          "401": {
41956            "description": "Unauthorized"
41957          }
41958        },
41959        "schemes": [
41960          "https"
41961        ],
41962        "tags": [
41963          "admissionregistration_v1beta1"
41964        ],
41965        "x-kubernetes-action": "post",
41966        "x-kubernetes-group-version-kind": {
41967          "group": "admissionregistration.k8s.io",
41968          "kind": "ValidatingWebhookConfiguration",
41969          "version": "v1beta1"
41970        }
41971      }
41972    },
41973    "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}": {
41974      "delete": {
41975        "consumes": [
41976          "*/*"
41977        ],
41978        "description": "delete a ValidatingWebhookConfiguration",
41979        "operationId": "deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41980        "parameters": [
41981          {
41982            "in": "body",
41983            "name": "body",
41984            "schema": {
41985              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41986            }
41987          },
41988          {
41989            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41990            "in": "query",
41991            "name": "dryRun",
41992            "type": "string",
41993            "uniqueItems": true
41994          },
41995          {
41996            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41997            "in": "query",
41998            "name": "gracePeriodSeconds",
41999            "type": "integer",
42000            "uniqueItems": true
42001          },
42002          {
42003            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
42004            "in": "query",
42005            "name": "orphanDependents",
42006            "type": "boolean",
42007            "uniqueItems": true
42008          },
42009          {
42010            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
42011            "in": "query",
42012            "name": "propagationPolicy",
42013            "type": "string",
42014            "uniqueItems": true
42015          }
42016        ],
42017        "produces": [
42018          "application/json",
42019          "application/yaml",
42020          "application/vnd.kubernetes.protobuf"
42021        ],
42022        "responses": {
42023          "200": {
42024            "description": "OK",
42025            "schema": {
42026              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42027            }
42028          },
42029          "202": {
42030            "description": "Accepted",
42031            "schema": {
42032              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42033            }
42034          },
42035          "401": {
42036            "description": "Unauthorized"
42037          }
42038        },
42039        "schemes": [
42040          "https"
42041        ],
42042        "tags": [
42043          "admissionregistration_v1beta1"
42044        ],
42045        "x-kubernetes-action": "delete",
42046        "x-kubernetes-group-version-kind": {
42047          "group": "admissionregistration.k8s.io",
42048          "kind": "ValidatingWebhookConfiguration",
42049          "version": "v1beta1"
42050        }
42051      },
42052      "get": {
42053        "consumes": [
42054          "*/*"
42055        ],
42056        "description": "read the specified ValidatingWebhookConfiguration",
42057        "operationId": "readAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42058        "produces": [
42059          "application/json",
42060          "application/yaml",
42061          "application/vnd.kubernetes.protobuf"
42062        ],
42063        "responses": {
42064          "200": {
42065            "description": "OK",
42066            "schema": {
42067              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42068            }
42069          },
42070          "401": {
42071            "description": "Unauthorized"
42072          }
42073        },
42074        "schemes": [
42075          "https"
42076        ],
42077        "tags": [
42078          "admissionregistration_v1beta1"
42079        ],
42080        "x-kubernetes-action": "get",
42081        "x-kubernetes-group-version-kind": {
42082          "group": "admissionregistration.k8s.io",
42083          "kind": "ValidatingWebhookConfiguration",
42084          "version": "v1beta1"
42085        }
42086      },
42087      "parameters": [
42088        {
42089          "description": "name of the ValidatingWebhookConfiguration",
42090          "in": "path",
42091          "name": "name",
42092          "required": true,
42093          "type": "string",
42094          "uniqueItems": true
42095        },
42096        {
42097          "description": "If 'true', then the output is pretty printed.",
42098          "in": "query",
42099          "name": "pretty",
42100          "type": "string",
42101          "uniqueItems": true
42102        }
42103      ],
42104      "patch": {
42105        "consumes": [
42106          "application/json-patch+json",
42107          "application/merge-patch+json",
42108          "application/strategic-merge-patch+json",
42109          "application/apply-patch+yaml"
42110        ],
42111        "description": "partially update the specified ValidatingWebhookConfiguration",
42112        "operationId": "patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42113        "parameters": [
42114          {
42115            "in": "body",
42116            "name": "body",
42117            "required": true,
42118            "schema": {
42119              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
42120            }
42121          },
42122          {
42123            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42124            "in": "query",
42125            "name": "dryRun",
42126            "type": "string",
42127            "uniqueItems": true
42128          },
42129          {
42130            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
42131            "in": "query",
42132            "name": "fieldManager",
42133            "type": "string",
42134            "uniqueItems": true
42135          },
42136          {
42137            "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.",
42138            "in": "query",
42139            "name": "force",
42140            "type": "boolean",
42141            "uniqueItems": true
42142          }
42143        ],
42144        "produces": [
42145          "application/json",
42146          "application/yaml",
42147          "application/vnd.kubernetes.protobuf"
42148        ],
42149        "responses": {
42150          "200": {
42151            "description": "OK",
42152            "schema": {
42153              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42154            }
42155          },
42156          "401": {
42157            "description": "Unauthorized"
42158          }
42159        },
42160        "schemes": [
42161          "https"
42162        ],
42163        "tags": [
42164          "admissionregistration_v1beta1"
42165        ],
42166        "x-kubernetes-action": "patch",
42167        "x-kubernetes-group-version-kind": {
42168          "group": "admissionregistration.k8s.io",
42169          "kind": "ValidatingWebhookConfiguration",
42170          "version": "v1beta1"
42171        }
42172      },
42173      "put": {
42174        "consumes": [
42175          "*/*"
42176        ],
42177        "description": "replace the specified ValidatingWebhookConfiguration",
42178        "operationId": "replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42179        "parameters": [
42180          {
42181            "in": "body",
42182            "name": "body",
42183            "required": true,
42184            "schema": {
42185              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42186            }
42187          },
42188          {
42189            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42190            "in": "query",
42191            "name": "dryRun",
42192            "type": "string",
42193            "uniqueItems": true
42194          },
42195          {
42196            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42197            "in": "query",
42198            "name": "fieldManager",
42199            "type": "string",
42200            "uniqueItems": true
42201          }
42202        ],
42203        "produces": [
42204          "application/json",
42205          "application/yaml",
42206          "application/vnd.kubernetes.protobuf"
42207        ],
42208        "responses": {
42209          "200": {
42210            "description": "OK",
42211            "schema": {
42212              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42213            }
42214          },
42215          "201": {
42216            "description": "Created",
42217            "schema": {
42218              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42219            }
42220          },
42221          "401": {
42222            "description": "Unauthorized"
42223          }
42224        },
42225        "schemes": [
42226          "https"
42227        ],
42228        "tags": [
42229          "admissionregistration_v1beta1"
42230        ],
42231        "x-kubernetes-action": "put",
42232        "x-kubernetes-group-version-kind": {
42233          "group": "admissionregistration.k8s.io",
42234          "kind": "ValidatingWebhookConfiguration",
42235          "version": "v1beta1"
42236        }
42237      }
42238    },
42239    "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations": {
42240      "get": {
42241        "consumes": [
42242          "*/*"
42243        ],
42244        "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
42245        "operationId": "watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList",
42246        "produces": [
42247          "application/json",
42248          "application/yaml",
42249          "application/vnd.kubernetes.protobuf",
42250          "application/json;stream=watch",
42251          "application/vnd.kubernetes.protobuf;stream=watch"
42252        ],
42253        "responses": {
42254          "200": {
42255            "description": "OK",
42256            "schema": {
42257              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42258            }
42259          },
42260          "401": {
42261            "description": "Unauthorized"
42262          }
42263        },
42264        "schemes": [
42265          "https"
42266        ],
42267        "tags": [
42268          "admissionregistration_v1beta1"
42269        ],
42270        "x-kubernetes-action": "watchlist",
42271        "x-kubernetes-group-version-kind": {
42272          "group": "admissionregistration.k8s.io",
42273          "kind": "MutatingWebhookConfiguration",
42274          "version": "v1beta1"
42275        }
42276      },
42277      "parameters": [
42278        {
42279          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42280          "in": "query",
42281          "name": "allowWatchBookmarks",
42282          "type": "boolean",
42283          "uniqueItems": true
42284        },
42285        {
42286          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42287          "in": "query",
42288          "name": "continue",
42289          "type": "string",
42290          "uniqueItems": true
42291        },
42292        {
42293          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42294          "in": "query",
42295          "name": "fieldSelector",
42296          "type": "string",
42297          "uniqueItems": true
42298        },
42299        {
42300          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42301          "in": "query",
42302          "name": "labelSelector",
42303          "type": "string",
42304          "uniqueItems": true
42305        },
42306        {
42307          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42308          "in": "query",
42309          "name": "limit",
42310          "type": "integer",
42311          "uniqueItems": true
42312        },
42313        {
42314          "description": "If 'true', then the output is pretty printed.",
42315          "in": "query",
42316          "name": "pretty",
42317          "type": "string",
42318          "uniqueItems": true
42319        },
42320        {
42321          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42322          "in": "query",
42323          "name": "resourceVersion",
42324          "type": "string",
42325          "uniqueItems": true
42326        },
42327        {
42328          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42329          "in": "query",
42330          "name": "resourceVersionMatch",
42331          "type": "string",
42332          "uniqueItems": true
42333        },
42334        {
42335          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42336          "in": "query",
42337          "name": "timeoutSeconds",
42338          "type": "integer",
42339          "uniqueItems": true
42340        },
42341        {
42342          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42343          "in": "query",
42344          "name": "watch",
42345          "type": "boolean",
42346          "uniqueItems": true
42347        }
42348      ]
42349    },
42350    "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/{name}": {
42351      "get": {
42352        "consumes": [
42353          "*/*"
42354        ],
42355        "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.",
42356        "operationId": "watchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
42357        "produces": [
42358          "application/json",
42359          "application/yaml",
42360          "application/vnd.kubernetes.protobuf",
42361          "application/json;stream=watch",
42362          "application/vnd.kubernetes.protobuf;stream=watch"
42363        ],
42364        "responses": {
42365          "200": {
42366            "description": "OK",
42367            "schema": {
42368              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42369            }
42370          },
42371          "401": {
42372            "description": "Unauthorized"
42373          }
42374        },
42375        "schemes": [
42376          "https"
42377        ],
42378        "tags": [
42379          "admissionregistration_v1beta1"
42380        ],
42381        "x-kubernetes-action": "watch",
42382        "x-kubernetes-group-version-kind": {
42383          "group": "admissionregistration.k8s.io",
42384          "kind": "MutatingWebhookConfiguration",
42385          "version": "v1beta1"
42386        }
42387      },
42388      "parameters": [
42389        {
42390          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42391          "in": "query",
42392          "name": "allowWatchBookmarks",
42393          "type": "boolean",
42394          "uniqueItems": true
42395        },
42396        {
42397          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42398          "in": "query",
42399          "name": "continue",
42400          "type": "string",
42401          "uniqueItems": true
42402        },
42403        {
42404          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42405          "in": "query",
42406          "name": "fieldSelector",
42407          "type": "string",
42408          "uniqueItems": true
42409        },
42410        {
42411          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42412          "in": "query",
42413          "name": "labelSelector",
42414          "type": "string",
42415          "uniqueItems": true
42416        },
42417        {
42418          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42419          "in": "query",
42420          "name": "limit",
42421          "type": "integer",
42422          "uniqueItems": true
42423        },
42424        {
42425          "description": "name of the MutatingWebhookConfiguration",
42426          "in": "path",
42427          "name": "name",
42428          "required": true,
42429          "type": "string",
42430          "uniqueItems": true
42431        },
42432        {
42433          "description": "If 'true', then the output is pretty printed.",
42434          "in": "query",
42435          "name": "pretty",
42436          "type": "string",
42437          "uniqueItems": true
42438        },
42439        {
42440          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42441          "in": "query",
42442          "name": "resourceVersion",
42443          "type": "string",
42444          "uniqueItems": true
42445        },
42446        {
42447          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42448          "in": "query",
42449          "name": "resourceVersionMatch",
42450          "type": "string",
42451          "uniqueItems": true
42452        },
42453        {
42454          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42455          "in": "query",
42456          "name": "timeoutSeconds",
42457          "type": "integer",
42458          "uniqueItems": true
42459        },
42460        {
42461          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42462          "in": "query",
42463          "name": "watch",
42464          "type": "boolean",
42465          "uniqueItems": true
42466        }
42467      ]
42468    },
42469    "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations": {
42470      "get": {
42471        "consumes": [
42472          "*/*"
42473        ],
42474        "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
42475        "operationId": "watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList",
42476        "produces": [
42477          "application/json",
42478          "application/yaml",
42479          "application/vnd.kubernetes.protobuf",
42480          "application/json;stream=watch",
42481          "application/vnd.kubernetes.protobuf;stream=watch"
42482        ],
42483        "responses": {
42484          "200": {
42485            "description": "OK",
42486            "schema": {
42487              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42488            }
42489          },
42490          "401": {
42491            "description": "Unauthorized"
42492          }
42493        },
42494        "schemes": [
42495          "https"
42496        ],
42497        "tags": [
42498          "admissionregistration_v1beta1"
42499        ],
42500        "x-kubernetes-action": "watchlist",
42501        "x-kubernetes-group-version-kind": {
42502          "group": "admissionregistration.k8s.io",
42503          "kind": "ValidatingWebhookConfiguration",
42504          "version": "v1beta1"
42505        }
42506      },
42507      "parameters": [
42508        {
42509          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42510          "in": "query",
42511          "name": "allowWatchBookmarks",
42512          "type": "boolean",
42513          "uniqueItems": true
42514        },
42515        {
42516          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42517          "in": "query",
42518          "name": "continue",
42519          "type": "string",
42520          "uniqueItems": true
42521        },
42522        {
42523          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42524          "in": "query",
42525          "name": "fieldSelector",
42526          "type": "string",
42527          "uniqueItems": true
42528        },
42529        {
42530          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42531          "in": "query",
42532          "name": "labelSelector",
42533          "type": "string",
42534          "uniqueItems": true
42535        },
42536        {
42537          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42538          "in": "query",
42539          "name": "limit",
42540          "type": "integer",
42541          "uniqueItems": true
42542        },
42543        {
42544          "description": "If 'true', then the output is pretty printed.",
42545          "in": "query",
42546          "name": "pretty",
42547          "type": "string",
42548          "uniqueItems": true
42549        },
42550        {
42551          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42552          "in": "query",
42553          "name": "resourceVersion",
42554          "type": "string",
42555          "uniqueItems": true
42556        },
42557        {
42558          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42559          "in": "query",
42560          "name": "resourceVersionMatch",
42561          "type": "string",
42562          "uniqueItems": true
42563        },
42564        {
42565          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42566          "in": "query",
42567          "name": "timeoutSeconds",
42568          "type": "integer",
42569          "uniqueItems": true
42570        },
42571        {
42572          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42573          "in": "query",
42574          "name": "watch",
42575          "type": "boolean",
42576          "uniqueItems": true
42577        }
42578      ]
42579    },
42580    "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/{name}": {
42581      "get": {
42582        "consumes": [
42583          "*/*"
42584        ],
42585        "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.",
42586        "operationId": "watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42587        "produces": [
42588          "application/json",
42589          "application/yaml",
42590          "application/vnd.kubernetes.protobuf",
42591          "application/json;stream=watch",
42592          "application/vnd.kubernetes.protobuf;stream=watch"
42593        ],
42594        "responses": {
42595          "200": {
42596            "description": "OK",
42597            "schema": {
42598              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42599            }
42600          },
42601          "401": {
42602            "description": "Unauthorized"
42603          }
42604        },
42605        "schemes": [
42606          "https"
42607        ],
42608        "tags": [
42609          "admissionregistration_v1beta1"
42610        ],
42611        "x-kubernetes-action": "watch",
42612        "x-kubernetes-group-version-kind": {
42613          "group": "admissionregistration.k8s.io",
42614          "kind": "ValidatingWebhookConfiguration",
42615          "version": "v1beta1"
42616        }
42617      },
42618      "parameters": [
42619        {
42620          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42621          "in": "query",
42622          "name": "allowWatchBookmarks",
42623          "type": "boolean",
42624          "uniqueItems": true
42625        },
42626        {
42627          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42628          "in": "query",
42629          "name": "continue",
42630          "type": "string",
42631          "uniqueItems": true
42632        },
42633        {
42634          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42635          "in": "query",
42636          "name": "fieldSelector",
42637          "type": "string",
42638          "uniqueItems": true
42639        },
42640        {
42641          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42642          "in": "query",
42643          "name": "labelSelector",
42644          "type": "string",
42645          "uniqueItems": true
42646        },
42647        {
42648          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42649          "in": "query",
42650          "name": "limit",
42651          "type": "integer",
42652          "uniqueItems": true
42653        },
42654        {
42655          "description": "name of the ValidatingWebhookConfiguration",
42656          "in": "path",
42657          "name": "name",
42658          "required": true,
42659          "type": "string",
42660          "uniqueItems": true
42661        },
42662        {
42663          "description": "If 'true', then the output is pretty printed.",
42664          "in": "query",
42665          "name": "pretty",
42666          "type": "string",
42667          "uniqueItems": true
42668        },
42669        {
42670          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42671          "in": "query",
42672          "name": "resourceVersion",
42673          "type": "string",
42674          "uniqueItems": true
42675        },
42676        {
42677          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42678          "in": "query",
42679          "name": "resourceVersionMatch",
42680          "type": "string",
42681          "uniqueItems": true
42682        },
42683        {
42684          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42685          "in": "query",
42686          "name": "timeoutSeconds",
42687          "type": "integer",
42688          "uniqueItems": true
42689        },
42690        {
42691          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42692          "in": "query",
42693          "name": "watch",
42694          "type": "boolean",
42695          "uniqueItems": true
42696        }
42697      ]
42698    },
42699    "/apis/apiextensions.k8s.io/": {
42700      "get": {
42701        "consumes": [
42702          "application/json",
42703          "application/yaml",
42704          "application/vnd.kubernetes.protobuf"
42705        ],
42706        "description": "get information of a group",
42707        "operationId": "getApiextensionsAPIGroup",
42708        "produces": [
42709          "application/json",
42710          "application/yaml",
42711          "application/vnd.kubernetes.protobuf"
42712        ],
42713        "responses": {
42714          "200": {
42715            "description": "OK",
42716            "schema": {
42717              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
42718            }
42719          },
42720          "401": {
42721            "description": "Unauthorized"
42722          }
42723        },
42724        "schemes": [
42725          "https"
42726        ],
42727        "tags": [
42728          "apiextensions"
42729        ]
42730      }
42731    },
42732    "/apis/apiextensions.k8s.io/v1/": {
42733      "get": {
42734        "consumes": [
42735          "application/json",
42736          "application/yaml",
42737          "application/vnd.kubernetes.protobuf"
42738        ],
42739        "description": "get available resources",
42740        "operationId": "getApiextensionsV1APIResources",
42741        "produces": [
42742          "application/json",
42743          "application/yaml",
42744          "application/vnd.kubernetes.protobuf"
42745        ],
42746        "responses": {
42747          "200": {
42748            "description": "OK",
42749            "schema": {
42750              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
42751            }
42752          },
42753          "401": {
42754            "description": "Unauthorized"
42755          }
42756        },
42757        "schemes": [
42758          "https"
42759        ],
42760        "tags": [
42761          "apiextensions_v1"
42762        ]
42763      }
42764    },
42765    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions": {
42766      "delete": {
42767        "consumes": [
42768          "*/*"
42769        ],
42770        "description": "delete collection of CustomResourceDefinition",
42771        "operationId": "deleteApiextensionsV1CollectionCustomResourceDefinition",
42772        "parameters": [
42773          {
42774            "in": "body",
42775            "name": "body",
42776            "schema": {
42777              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
42778            }
42779          },
42780          {
42781            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42782            "in": "query",
42783            "name": "continue",
42784            "type": "string",
42785            "uniqueItems": true
42786          },
42787          {
42788            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42789            "in": "query",
42790            "name": "dryRun",
42791            "type": "string",
42792            "uniqueItems": true
42793          },
42794          {
42795            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42796            "in": "query",
42797            "name": "fieldSelector",
42798            "type": "string",
42799            "uniqueItems": true
42800          },
42801          {
42802            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
42803            "in": "query",
42804            "name": "gracePeriodSeconds",
42805            "type": "integer",
42806            "uniqueItems": true
42807          },
42808          {
42809            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42810            "in": "query",
42811            "name": "labelSelector",
42812            "type": "string",
42813            "uniqueItems": true
42814          },
42815          {
42816            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42817            "in": "query",
42818            "name": "limit",
42819            "type": "integer",
42820            "uniqueItems": true
42821          },
42822          {
42823            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
42824            "in": "query",
42825            "name": "orphanDependents",
42826            "type": "boolean",
42827            "uniqueItems": true
42828          },
42829          {
42830            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
42831            "in": "query",
42832            "name": "propagationPolicy",
42833            "type": "string",
42834            "uniqueItems": true
42835          },
42836          {
42837            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42838            "in": "query",
42839            "name": "resourceVersion",
42840            "type": "string",
42841            "uniqueItems": true
42842          },
42843          {
42844            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42845            "in": "query",
42846            "name": "resourceVersionMatch",
42847            "type": "string",
42848            "uniqueItems": true
42849          },
42850          {
42851            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42852            "in": "query",
42853            "name": "timeoutSeconds",
42854            "type": "integer",
42855            "uniqueItems": true
42856          }
42857        ],
42858        "produces": [
42859          "application/json",
42860          "application/yaml",
42861          "application/vnd.kubernetes.protobuf"
42862        ],
42863        "responses": {
42864          "200": {
42865            "description": "OK",
42866            "schema": {
42867              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42868            }
42869          },
42870          "401": {
42871            "description": "Unauthorized"
42872          }
42873        },
42874        "schemes": [
42875          "https"
42876        ],
42877        "tags": [
42878          "apiextensions_v1"
42879        ],
42880        "x-kubernetes-action": "deletecollection",
42881        "x-kubernetes-group-version-kind": {
42882          "group": "apiextensions.k8s.io",
42883          "kind": "CustomResourceDefinition",
42884          "version": "v1"
42885        }
42886      },
42887      "get": {
42888        "consumes": [
42889          "*/*"
42890        ],
42891        "description": "list or watch objects of kind CustomResourceDefinition",
42892        "operationId": "listApiextensionsV1CustomResourceDefinition",
42893        "parameters": [
42894          {
42895            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42896            "in": "query",
42897            "name": "allowWatchBookmarks",
42898            "type": "boolean",
42899            "uniqueItems": true
42900          },
42901          {
42902            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42903            "in": "query",
42904            "name": "continue",
42905            "type": "string",
42906            "uniqueItems": true
42907          },
42908          {
42909            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42910            "in": "query",
42911            "name": "fieldSelector",
42912            "type": "string",
42913            "uniqueItems": true
42914          },
42915          {
42916            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42917            "in": "query",
42918            "name": "labelSelector",
42919            "type": "string",
42920            "uniqueItems": true
42921          },
42922          {
42923            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42924            "in": "query",
42925            "name": "limit",
42926            "type": "integer",
42927            "uniqueItems": true
42928          },
42929          {
42930            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42931            "in": "query",
42932            "name": "resourceVersion",
42933            "type": "string",
42934            "uniqueItems": true
42935          },
42936          {
42937            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42938            "in": "query",
42939            "name": "resourceVersionMatch",
42940            "type": "string",
42941            "uniqueItems": true
42942          },
42943          {
42944            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42945            "in": "query",
42946            "name": "timeoutSeconds",
42947            "type": "integer",
42948            "uniqueItems": true
42949          },
42950          {
42951            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42952            "in": "query",
42953            "name": "watch",
42954            "type": "boolean",
42955            "uniqueItems": true
42956          }
42957        ],
42958        "produces": [
42959          "application/json",
42960          "application/yaml",
42961          "application/vnd.kubernetes.protobuf",
42962          "application/json;stream=watch",
42963          "application/vnd.kubernetes.protobuf;stream=watch"
42964        ],
42965        "responses": {
42966          "200": {
42967            "description": "OK",
42968            "schema": {
42969              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList"
42970            }
42971          },
42972          "401": {
42973            "description": "Unauthorized"
42974          }
42975        },
42976        "schemes": [
42977          "https"
42978        ],
42979        "tags": [
42980          "apiextensions_v1"
42981        ],
42982        "x-kubernetes-action": "list",
42983        "x-kubernetes-group-version-kind": {
42984          "group": "apiextensions.k8s.io",
42985          "kind": "CustomResourceDefinition",
42986          "version": "v1"
42987        }
42988      },
42989      "parameters": [
42990        {
42991          "description": "If 'true', then the output is pretty printed.",
42992          "in": "query",
42993          "name": "pretty",
42994          "type": "string",
42995          "uniqueItems": true
42996        }
42997      ],
42998      "post": {
42999        "consumes": [
43000          "*/*"
43001        ],
43002        "description": "create a CustomResourceDefinition",
43003        "operationId": "createApiextensionsV1CustomResourceDefinition",
43004        "parameters": [
43005          {
43006            "in": "body",
43007            "name": "body",
43008            "required": true,
43009            "schema": {
43010              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43011            }
43012          },
43013          {
43014            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43015            "in": "query",
43016            "name": "dryRun",
43017            "type": "string",
43018            "uniqueItems": true
43019          },
43020          {
43021            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43022            "in": "query",
43023            "name": "fieldManager",
43024            "type": "string",
43025            "uniqueItems": true
43026          }
43027        ],
43028        "produces": [
43029          "application/json",
43030          "application/yaml",
43031          "application/vnd.kubernetes.protobuf"
43032        ],
43033        "responses": {
43034          "200": {
43035            "description": "OK",
43036            "schema": {
43037              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43038            }
43039          },
43040          "201": {
43041            "description": "Created",
43042            "schema": {
43043              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43044            }
43045          },
43046          "202": {
43047            "description": "Accepted",
43048            "schema": {
43049              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43050            }
43051          },
43052          "401": {
43053            "description": "Unauthorized"
43054          }
43055        },
43056        "schemes": [
43057          "https"
43058        ],
43059        "tags": [
43060          "apiextensions_v1"
43061        ],
43062        "x-kubernetes-action": "post",
43063        "x-kubernetes-group-version-kind": {
43064          "group": "apiextensions.k8s.io",
43065          "kind": "CustomResourceDefinition",
43066          "version": "v1"
43067        }
43068      }
43069    },
43070    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}": {
43071      "delete": {
43072        "consumes": [
43073          "*/*"
43074        ],
43075        "description": "delete a CustomResourceDefinition",
43076        "operationId": "deleteApiextensionsV1CustomResourceDefinition",
43077        "parameters": [
43078          {
43079            "in": "body",
43080            "name": "body",
43081            "schema": {
43082              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43083            }
43084          },
43085          {
43086            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43087            "in": "query",
43088            "name": "dryRun",
43089            "type": "string",
43090            "uniqueItems": true
43091          },
43092          {
43093            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
43094            "in": "query",
43095            "name": "gracePeriodSeconds",
43096            "type": "integer",
43097            "uniqueItems": true
43098          },
43099          {
43100            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
43101            "in": "query",
43102            "name": "orphanDependents",
43103            "type": "boolean",
43104            "uniqueItems": true
43105          },
43106          {
43107            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
43108            "in": "query",
43109            "name": "propagationPolicy",
43110            "type": "string",
43111            "uniqueItems": true
43112          }
43113        ],
43114        "produces": [
43115          "application/json",
43116          "application/yaml",
43117          "application/vnd.kubernetes.protobuf"
43118        ],
43119        "responses": {
43120          "200": {
43121            "description": "OK",
43122            "schema": {
43123              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43124            }
43125          },
43126          "202": {
43127            "description": "Accepted",
43128            "schema": {
43129              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43130            }
43131          },
43132          "401": {
43133            "description": "Unauthorized"
43134          }
43135        },
43136        "schemes": [
43137          "https"
43138        ],
43139        "tags": [
43140          "apiextensions_v1"
43141        ],
43142        "x-kubernetes-action": "delete",
43143        "x-kubernetes-group-version-kind": {
43144          "group": "apiextensions.k8s.io",
43145          "kind": "CustomResourceDefinition",
43146          "version": "v1"
43147        }
43148      },
43149      "get": {
43150        "consumes": [
43151          "*/*"
43152        ],
43153        "description": "read the specified CustomResourceDefinition",
43154        "operationId": "readApiextensionsV1CustomResourceDefinition",
43155        "produces": [
43156          "application/json",
43157          "application/yaml",
43158          "application/vnd.kubernetes.protobuf"
43159        ],
43160        "responses": {
43161          "200": {
43162            "description": "OK",
43163            "schema": {
43164              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43165            }
43166          },
43167          "401": {
43168            "description": "Unauthorized"
43169          }
43170        },
43171        "schemes": [
43172          "https"
43173        ],
43174        "tags": [
43175          "apiextensions_v1"
43176        ],
43177        "x-kubernetes-action": "get",
43178        "x-kubernetes-group-version-kind": {
43179          "group": "apiextensions.k8s.io",
43180          "kind": "CustomResourceDefinition",
43181          "version": "v1"
43182        }
43183      },
43184      "parameters": [
43185        {
43186          "description": "name of the CustomResourceDefinition",
43187          "in": "path",
43188          "name": "name",
43189          "required": true,
43190          "type": "string",
43191          "uniqueItems": true
43192        },
43193        {
43194          "description": "If 'true', then the output is pretty printed.",
43195          "in": "query",
43196          "name": "pretty",
43197          "type": "string",
43198          "uniqueItems": true
43199        }
43200      ],
43201      "patch": {
43202        "consumes": [
43203          "application/json-patch+json",
43204          "application/merge-patch+json",
43205          "application/strategic-merge-patch+json",
43206          "application/apply-patch+yaml"
43207        ],
43208        "description": "partially update the specified CustomResourceDefinition",
43209        "operationId": "patchApiextensionsV1CustomResourceDefinition",
43210        "parameters": [
43211          {
43212            "in": "body",
43213            "name": "body",
43214            "required": true,
43215            "schema": {
43216              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43217            }
43218          },
43219          {
43220            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43221            "in": "query",
43222            "name": "dryRun",
43223            "type": "string",
43224            "uniqueItems": true
43225          },
43226          {
43227            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
43228            "in": "query",
43229            "name": "fieldManager",
43230            "type": "string",
43231            "uniqueItems": true
43232          },
43233          {
43234            "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.",
43235            "in": "query",
43236            "name": "force",
43237            "type": "boolean",
43238            "uniqueItems": true
43239          }
43240        ],
43241        "produces": [
43242          "application/json",
43243          "application/yaml",
43244          "application/vnd.kubernetes.protobuf"
43245        ],
43246        "responses": {
43247          "200": {
43248            "description": "OK",
43249            "schema": {
43250              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43251            }
43252          },
43253          "401": {
43254            "description": "Unauthorized"
43255          }
43256        },
43257        "schemes": [
43258          "https"
43259        ],
43260        "tags": [
43261          "apiextensions_v1"
43262        ],
43263        "x-kubernetes-action": "patch",
43264        "x-kubernetes-group-version-kind": {
43265          "group": "apiextensions.k8s.io",
43266          "kind": "CustomResourceDefinition",
43267          "version": "v1"
43268        }
43269      },
43270      "put": {
43271        "consumes": [
43272          "*/*"
43273        ],
43274        "description": "replace the specified CustomResourceDefinition",
43275        "operationId": "replaceApiextensionsV1CustomResourceDefinition",
43276        "parameters": [
43277          {
43278            "in": "body",
43279            "name": "body",
43280            "required": true,
43281            "schema": {
43282              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43283            }
43284          },
43285          {
43286            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43287            "in": "query",
43288            "name": "dryRun",
43289            "type": "string",
43290            "uniqueItems": true
43291          },
43292          {
43293            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43294            "in": "query",
43295            "name": "fieldManager",
43296            "type": "string",
43297            "uniqueItems": true
43298          }
43299        ],
43300        "produces": [
43301          "application/json",
43302          "application/yaml",
43303          "application/vnd.kubernetes.protobuf"
43304        ],
43305        "responses": {
43306          "200": {
43307            "description": "OK",
43308            "schema": {
43309              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43310            }
43311          },
43312          "201": {
43313            "description": "Created",
43314            "schema": {
43315              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43316            }
43317          },
43318          "401": {
43319            "description": "Unauthorized"
43320          }
43321        },
43322        "schemes": [
43323          "https"
43324        ],
43325        "tags": [
43326          "apiextensions_v1"
43327        ],
43328        "x-kubernetes-action": "put",
43329        "x-kubernetes-group-version-kind": {
43330          "group": "apiextensions.k8s.io",
43331          "kind": "CustomResourceDefinition",
43332          "version": "v1"
43333        }
43334      }
43335    },
43336    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status": {
43337      "get": {
43338        "consumes": [
43339          "*/*"
43340        ],
43341        "description": "read status of the specified CustomResourceDefinition",
43342        "operationId": "readApiextensionsV1CustomResourceDefinitionStatus",
43343        "produces": [
43344          "application/json",
43345          "application/yaml",
43346          "application/vnd.kubernetes.protobuf"
43347        ],
43348        "responses": {
43349          "200": {
43350            "description": "OK",
43351            "schema": {
43352              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43353            }
43354          },
43355          "401": {
43356            "description": "Unauthorized"
43357          }
43358        },
43359        "schemes": [
43360          "https"
43361        ],
43362        "tags": [
43363          "apiextensions_v1"
43364        ],
43365        "x-kubernetes-action": "get",
43366        "x-kubernetes-group-version-kind": {
43367          "group": "apiextensions.k8s.io",
43368          "kind": "CustomResourceDefinition",
43369          "version": "v1"
43370        }
43371      },
43372      "parameters": [
43373        {
43374          "description": "name of the CustomResourceDefinition",
43375          "in": "path",
43376          "name": "name",
43377          "required": true,
43378          "type": "string",
43379          "uniqueItems": true
43380        },
43381        {
43382          "description": "If 'true', then the output is pretty printed.",
43383          "in": "query",
43384          "name": "pretty",
43385          "type": "string",
43386          "uniqueItems": true
43387        }
43388      ],
43389      "patch": {
43390        "consumes": [
43391          "application/json-patch+json",
43392          "application/merge-patch+json",
43393          "application/strategic-merge-patch+json",
43394          "application/apply-patch+yaml"
43395        ],
43396        "description": "partially update status of the specified CustomResourceDefinition",
43397        "operationId": "patchApiextensionsV1CustomResourceDefinitionStatus",
43398        "parameters": [
43399          {
43400            "in": "body",
43401            "name": "body",
43402            "required": true,
43403            "schema": {
43404              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43405            }
43406          },
43407          {
43408            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43409            "in": "query",
43410            "name": "dryRun",
43411            "type": "string",
43412            "uniqueItems": true
43413          },
43414          {
43415            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
43416            "in": "query",
43417            "name": "fieldManager",
43418            "type": "string",
43419            "uniqueItems": true
43420          },
43421          {
43422            "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.",
43423            "in": "query",
43424            "name": "force",
43425            "type": "boolean",
43426            "uniqueItems": true
43427          }
43428        ],
43429        "produces": [
43430          "application/json",
43431          "application/yaml",
43432          "application/vnd.kubernetes.protobuf"
43433        ],
43434        "responses": {
43435          "200": {
43436            "description": "OK",
43437            "schema": {
43438              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43439            }
43440          },
43441          "401": {
43442            "description": "Unauthorized"
43443          }
43444        },
43445        "schemes": [
43446          "https"
43447        ],
43448        "tags": [
43449          "apiextensions_v1"
43450        ],
43451        "x-kubernetes-action": "patch",
43452        "x-kubernetes-group-version-kind": {
43453          "group": "apiextensions.k8s.io",
43454          "kind": "CustomResourceDefinition",
43455          "version": "v1"
43456        }
43457      },
43458      "put": {
43459        "consumes": [
43460          "*/*"
43461        ],
43462        "description": "replace status of the specified CustomResourceDefinition",
43463        "operationId": "replaceApiextensionsV1CustomResourceDefinitionStatus",
43464        "parameters": [
43465          {
43466            "in": "body",
43467            "name": "body",
43468            "required": true,
43469            "schema": {
43470              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43471            }
43472          },
43473          {
43474            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43475            "in": "query",
43476            "name": "dryRun",
43477            "type": "string",
43478            "uniqueItems": true
43479          },
43480          {
43481            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43482            "in": "query",
43483            "name": "fieldManager",
43484            "type": "string",
43485            "uniqueItems": true
43486          }
43487        ],
43488        "produces": [
43489          "application/json",
43490          "application/yaml",
43491          "application/vnd.kubernetes.protobuf"
43492        ],
43493        "responses": {
43494          "200": {
43495            "description": "OK",
43496            "schema": {
43497              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43498            }
43499          },
43500          "201": {
43501            "description": "Created",
43502            "schema": {
43503              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43504            }
43505          },
43506          "401": {
43507            "description": "Unauthorized"
43508          }
43509        },
43510        "schemes": [
43511          "https"
43512        ],
43513        "tags": [
43514          "apiextensions_v1"
43515        ],
43516        "x-kubernetes-action": "put",
43517        "x-kubernetes-group-version-kind": {
43518          "group": "apiextensions.k8s.io",
43519          "kind": "CustomResourceDefinition",
43520          "version": "v1"
43521        }
43522      }
43523    },
43524    "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions": {
43525      "get": {
43526        "consumes": [
43527          "*/*"
43528        ],
43529        "description": "watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead.",
43530        "operationId": "watchApiextensionsV1CustomResourceDefinitionList",
43531        "produces": [
43532          "application/json",
43533          "application/yaml",
43534          "application/vnd.kubernetes.protobuf",
43535          "application/json;stream=watch",
43536          "application/vnd.kubernetes.protobuf;stream=watch"
43537        ],
43538        "responses": {
43539          "200": {
43540            "description": "OK",
43541            "schema": {
43542              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
43543            }
43544          },
43545          "401": {
43546            "description": "Unauthorized"
43547          }
43548        },
43549        "schemes": [
43550          "https"
43551        ],
43552        "tags": [
43553          "apiextensions_v1"
43554        ],
43555        "x-kubernetes-action": "watchlist",
43556        "x-kubernetes-group-version-kind": {
43557          "group": "apiextensions.k8s.io",
43558          "kind": "CustomResourceDefinition",
43559          "version": "v1"
43560        }
43561      },
43562      "parameters": [
43563        {
43564          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
43565          "in": "query",
43566          "name": "allowWatchBookmarks",
43567          "type": "boolean",
43568          "uniqueItems": true
43569        },
43570        {
43571          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43572          "in": "query",
43573          "name": "continue",
43574          "type": "string",
43575          "uniqueItems": true
43576        },
43577        {
43578          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43579          "in": "query",
43580          "name": "fieldSelector",
43581          "type": "string",
43582          "uniqueItems": true
43583        },
43584        {
43585          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43586          "in": "query",
43587          "name": "labelSelector",
43588          "type": "string",
43589          "uniqueItems": true
43590        },
43591        {
43592          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43593          "in": "query",
43594          "name": "limit",
43595          "type": "integer",
43596          "uniqueItems": true
43597        },
43598        {
43599          "description": "If 'true', then the output is pretty printed.",
43600          "in": "query",
43601          "name": "pretty",
43602          "type": "string",
43603          "uniqueItems": true
43604        },
43605        {
43606          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43607          "in": "query",
43608          "name": "resourceVersion",
43609          "type": "string",
43610          "uniqueItems": true
43611        },
43612        {
43613          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43614          "in": "query",
43615          "name": "resourceVersionMatch",
43616          "type": "string",
43617          "uniqueItems": true
43618        },
43619        {
43620          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43621          "in": "query",
43622          "name": "timeoutSeconds",
43623          "type": "integer",
43624          "uniqueItems": true
43625        },
43626        {
43627          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43628          "in": "query",
43629          "name": "watch",
43630          "type": "boolean",
43631          "uniqueItems": true
43632        }
43633      ]
43634    },
43635    "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/{name}": {
43636      "get": {
43637        "consumes": [
43638          "*/*"
43639        ],
43640        "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.",
43641        "operationId": "watchApiextensionsV1CustomResourceDefinition",
43642        "produces": [
43643          "application/json",
43644          "application/yaml",
43645          "application/vnd.kubernetes.protobuf",
43646          "application/json;stream=watch",
43647          "application/vnd.kubernetes.protobuf;stream=watch"
43648        ],
43649        "responses": {
43650          "200": {
43651            "description": "OK",
43652            "schema": {
43653              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
43654            }
43655          },
43656          "401": {
43657            "description": "Unauthorized"
43658          }
43659        },
43660        "schemes": [
43661          "https"
43662        ],
43663        "tags": [
43664          "apiextensions_v1"
43665        ],
43666        "x-kubernetes-action": "watch",
43667        "x-kubernetes-group-version-kind": {
43668          "group": "apiextensions.k8s.io",
43669          "kind": "CustomResourceDefinition",
43670          "version": "v1"
43671        }
43672      },
43673      "parameters": [
43674        {
43675          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
43676          "in": "query",
43677          "name": "allowWatchBookmarks",
43678          "type": "boolean",
43679          "uniqueItems": true
43680        },
43681        {
43682          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43683          "in": "query",
43684          "name": "continue",
43685          "type": "string",
43686          "uniqueItems": true
43687        },
43688        {
43689          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43690          "in": "query",
43691          "name": "fieldSelector",
43692          "type": "string",
43693          "uniqueItems": true
43694        },
43695        {
43696          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43697          "in": "query",
43698          "name": "labelSelector",
43699          "type": "string",
43700          "uniqueItems": true
43701        },
43702        {
43703          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43704          "in": "query",
43705          "name": "limit",
43706          "type": "integer",
43707          "uniqueItems": true
43708        },
43709        {
43710          "description": "name of the CustomResourceDefinition",
43711          "in": "path",
43712          "name": "name",
43713          "required": true,
43714          "type": "string",
43715          "uniqueItems": true
43716        },
43717        {
43718          "description": "If 'true', then the output is pretty printed.",
43719          "in": "query",
43720          "name": "pretty",
43721          "type": "string",
43722          "uniqueItems": true
43723        },
43724        {
43725          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43726          "in": "query",
43727          "name": "resourceVersion",
43728          "type": "string",
43729          "uniqueItems": true
43730        },
43731        {
43732          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43733          "in": "query",
43734          "name": "resourceVersionMatch",
43735          "type": "string",
43736          "uniqueItems": true
43737        },
43738        {
43739          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43740          "in": "query",
43741          "name": "timeoutSeconds",
43742          "type": "integer",
43743          "uniqueItems": true
43744        },
43745        {
43746          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43747          "in": "query",
43748          "name": "watch",
43749          "type": "boolean",
43750          "uniqueItems": true
43751        }
43752      ]
43753    },
43754    "/apis/apiextensions.k8s.io/v1beta1/": {
43755      "get": {
43756        "consumes": [
43757          "application/json",
43758          "application/yaml",
43759          "application/vnd.kubernetes.protobuf"
43760        ],
43761        "description": "get available resources",
43762        "operationId": "getApiextensionsV1beta1APIResources",
43763        "produces": [
43764          "application/json",
43765          "application/yaml",
43766          "application/vnd.kubernetes.protobuf"
43767        ],
43768        "responses": {
43769          "200": {
43770            "description": "OK",
43771            "schema": {
43772              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
43773            }
43774          },
43775          "401": {
43776            "description": "Unauthorized"
43777          }
43778        },
43779        "schemes": [
43780          "https"
43781        ],
43782        "tags": [
43783          "apiextensions_v1beta1"
43784        ]
43785      }
43786    },
43787    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions": {
43788      "delete": {
43789        "consumes": [
43790          "*/*"
43791        ],
43792        "description": "delete collection of CustomResourceDefinition",
43793        "operationId": "deleteApiextensionsV1beta1CollectionCustomResourceDefinition",
43794        "parameters": [
43795          {
43796            "in": "body",
43797            "name": "body",
43798            "schema": {
43799              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43800            }
43801          },
43802          {
43803            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43804            "in": "query",
43805            "name": "continue",
43806            "type": "string",
43807            "uniqueItems": true
43808          },
43809          {
43810            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43811            "in": "query",
43812            "name": "dryRun",
43813            "type": "string",
43814            "uniqueItems": true
43815          },
43816          {
43817            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43818            "in": "query",
43819            "name": "fieldSelector",
43820            "type": "string",
43821            "uniqueItems": true
43822          },
43823          {
43824            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
43825            "in": "query",
43826            "name": "gracePeriodSeconds",
43827            "type": "integer",
43828            "uniqueItems": true
43829          },
43830          {
43831            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43832            "in": "query",
43833            "name": "labelSelector",
43834            "type": "string",
43835            "uniqueItems": true
43836          },
43837          {
43838            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43839            "in": "query",
43840            "name": "limit",
43841            "type": "integer",
43842            "uniqueItems": true
43843          },
43844          {
43845            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
43846            "in": "query",
43847            "name": "orphanDependents",
43848            "type": "boolean",
43849            "uniqueItems": true
43850          },
43851          {
43852            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
43853            "in": "query",
43854            "name": "propagationPolicy",
43855            "type": "string",
43856            "uniqueItems": true
43857          },
43858          {
43859            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43860            "in": "query",
43861            "name": "resourceVersion",
43862            "type": "string",
43863            "uniqueItems": true
43864          },
43865          {
43866            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43867            "in": "query",
43868            "name": "resourceVersionMatch",
43869            "type": "string",
43870            "uniqueItems": true
43871          },
43872          {
43873            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43874            "in": "query",
43875            "name": "timeoutSeconds",
43876            "type": "integer",
43877            "uniqueItems": true
43878          }
43879        ],
43880        "produces": [
43881          "application/json",
43882          "application/yaml",
43883          "application/vnd.kubernetes.protobuf"
43884        ],
43885        "responses": {
43886          "200": {
43887            "description": "OK",
43888            "schema": {
43889              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43890            }
43891          },
43892          "401": {
43893            "description": "Unauthorized"
43894          }
43895        },
43896        "schemes": [
43897          "https"
43898        ],
43899        "tags": [
43900          "apiextensions_v1beta1"
43901        ],
43902        "x-kubernetes-action": "deletecollection",
43903        "x-kubernetes-group-version-kind": {
43904          "group": "apiextensions.k8s.io",
43905          "kind": "CustomResourceDefinition",
43906          "version": "v1beta1"
43907        }
43908      },
43909      "get": {
43910        "consumes": [
43911          "*/*"
43912        ],
43913        "description": "list or watch objects of kind CustomResourceDefinition",
43914        "operationId": "listApiextensionsV1beta1CustomResourceDefinition",
43915        "parameters": [
43916          {
43917            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
43918            "in": "query",
43919            "name": "allowWatchBookmarks",
43920            "type": "boolean",
43921            "uniqueItems": true
43922          },
43923          {
43924            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43925            "in": "query",
43926            "name": "continue",
43927            "type": "string",
43928            "uniqueItems": true
43929          },
43930          {
43931            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43932            "in": "query",
43933            "name": "fieldSelector",
43934            "type": "string",
43935            "uniqueItems": true
43936          },
43937          {
43938            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43939            "in": "query",
43940            "name": "labelSelector",
43941            "type": "string",
43942            "uniqueItems": true
43943          },
43944          {
43945            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43946            "in": "query",
43947            "name": "limit",
43948            "type": "integer",
43949            "uniqueItems": true
43950          },
43951          {
43952            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43953            "in": "query",
43954            "name": "resourceVersion",
43955            "type": "string",
43956            "uniqueItems": true
43957          },
43958          {
43959            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43960            "in": "query",
43961            "name": "resourceVersionMatch",
43962            "type": "string",
43963            "uniqueItems": true
43964          },
43965          {
43966            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43967            "in": "query",
43968            "name": "timeoutSeconds",
43969            "type": "integer",
43970            "uniqueItems": true
43971          },
43972          {
43973            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43974            "in": "query",
43975            "name": "watch",
43976            "type": "boolean",
43977            "uniqueItems": true
43978          }
43979        ],
43980        "produces": [
43981          "application/json",
43982          "application/yaml",
43983          "application/vnd.kubernetes.protobuf",
43984          "application/json;stream=watch",
43985          "application/vnd.kubernetes.protobuf;stream=watch"
43986        ],
43987        "responses": {
43988          "200": {
43989            "description": "OK",
43990            "schema": {
43991              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList"
43992            }
43993          },
43994          "401": {
43995            "description": "Unauthorized"
43996          }
43997        },
43998        "schemes": [
43999          "https"
44000        ],
44001        "tags": [
44002          "apiextensions_v1beta1"
44003        ],
44004        "x-kubernetes-action": "list",
44005        "x-kubernetes-group-version-kind": {
44006          "group": "apiextensions.k8s.io",
44007          "kind": "CustomResourceDefinition",
44008          "version": "v1beta1"
44009        }
44010      },
44011      "parameters": [
44012        {
44013          "description": "If 'true', then the output is pretty printed.",
44014          "in": "query",
44015          "name": "pretty",
44016          "type": "string",
44017          "uniqueItems": true
44018        }
44019      ],
44020      "post": {
44021        "consumes": [
44022          "*/*"
44023        ],
44024        "description": "create a CustomResourceDefinition",
44025        "operationId": "createApiextensionsV1beta1CustomResourceDefinition",
44026        "parameters": [
44027          {
44028            "in": "body",
44029            "name": "body",
44030            "required": true,
44031            "schema": {
44032              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44033            }
44034          },
44035          {
44036            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44037            "in": "query",
44038            "name": "dryRun",
44039            "type": "string",
44040            "uniqueItems": true
44041          },
44042          {
44043            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44044            "in": "query",
44045            "name": "fieldManager",
44046            "type": "string",
44047            "uniqueItems": true
44048          }
44049        ],
44050        "produces": [
44051          "application/json",
44052          "application/yaml",
44053          "application/vnd.kubernetes.protobuf"
44054        ],
44055        "responses": {
44056          "200": {
44057            "description": "OK",
44058            "schema": {
44059              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44060            }
44061          },
44062          "201": {
44063            "description": "Created",
44064            "schema": {
44065              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44066            }
44067          },
44068          "202": {
44069            "description": "Accepted",
44070            "schema": {
44071              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44072            }
44073          },
44074          "401": {
44075            "description": "Unauthorized"
44076          }
44077        },
44078        "schemes": [
44079          "https"
44080        ],
44081        "tags": [
44082          "apiextensions_v1beta1"
44083        ],
44084        "x-kubernetes-action": "post",
44085        "x-kubernetes-group-version-kind": {
44086          "group": "apiextensions.k8s.io",
44087          "kind": "CustomResourceDefinition",
44088          "version": "v1beta1"
44089        }
44090      }
44091    },
44092    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}": {
44093      "delete": {
44094        "consumes": [
44095          "*/*"
44096        ],
44097        "description": "delete a CustomResourceDefinition",
44098        "operationId": "deleteApiextensionsV1beta1CustomResourceDefinition",
44099        "parameters": [
44100          {
44101            "in": "body",
44102            "name": "body",
44103            "schema": {
44104              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
44105            }
44106          },
44107          {
44108            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44109            "in": "query",
44110            "name": "dryRun",
44111            "type": "string",
44112            "uniqueItems": true
44113          },
44114          {
44115            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
44116            "in": "query",
44117            "name": "gracePeriodSeconds",
44118            "type": "integer",
44119            "uniqueItems": true
44120          },
44121          {
44122            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
44123            "in": "query",
44124            "name": "orphanDependents",
44125            "type": "boolean",
44126            "uniqueItems": true
44127          },
44128          {
44129            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
44130            "in": "query",
44131            "name": "propagationPolicy",
44132            "type": "string",
44133            "uniqueItems": true
44134          }
44135        ],
44136        "produces": [
44137          "application/json",
44138          "application/yaml",
44139          "application/vnd.kubernetes.protobuf"
44140        ],
44141        "responses": {
44142          "200": {
44143            "description": "OK",
44144            "schema": {
44145              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44146            }
44147          },
44148          "202": {
44149            "description": "Accepted",
44150            "schema": {
44151              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44152            }
44153          },
44154          "401": {
44155            "description": "Unauthorized"
44156          }
44157        },
44158        "schemes": [
44159          "https"
44160        ],
44161        "tags": [
44162          "apiextensions_v1beta1"
44163        ],
44164        "x-kubernetes-action": "delete",
44165        "x-kubernetes-group-version-kind": {
44166          "group": "apiextensions.k8s.io",
44167          "kind": "CustomResourceDefinition",
44168          "version": "v1beta1"
44169        }
44170      },
44171      "get": {
44172        "consumes": [
44173          "*/*"
44174        ],
44175        "description": "read the specified CustomResourceDefinition",
44176        "operationId": "readApiextensionsV1beta1CustomResourceDefinition",
44177        "produces": [
44178          "application/json",
44179          "application/yaml",
44180          "application/vnd.kubernetes.protobuf"
44181        ],
44182        "responses": {
44183          "200": {
44184            "description": "OK",
44185            "schema": {
44186              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44187            }
44188          },
44189          "401": {
44190            "description": "Unauthorized"
44191          }
44192        },
44193        "schemes": [
44194          "https"
44195        ],
44196        "tags": [
44197          "apiextensions_v1beta1"
44198        ],
44199        "x-kubernetes-action": "get",
44200        "x-kubernetes-group-version-kind": {
44201          "group": "apiextensions.k8s.io",
44202          "kind": "CustomResourceDefinition",
44203          "version": "v1beta1"
44204        }
44205      },
44206      "parameters": [
44207        {
44208          "description": "name of the CustomResourceDefinition",
44209          "in": "path",
44210          "name": "name",
44211          "required": true,
44212          "type": "string",
44213          "uniqueItems": true
44214        },
44215        {
44216          "description": "If 'true', then the output is pretty printed.",
44217          "in": "query",
44218          "name": "pretty",
44219          "type": "string",
44220          "uniqueItems": true
44221        }
44222      ],
44223      "patch": {
44224        "consumes": [
44225          "application/json-patch+json",
44226          "application/merge-patch+json",
44227          "application/strategic-merge-patch+json",
44228          "application/apply-patch+yaml"
44229        ],
44230        "description": "partially update the specified CustomResourceDefinition",
44231        "operationId": "patchApiextensionsV1beta1CustomResourceDefinition",
44232        "parameters": [
44233          {
44234            "in": "body",
44235            "name": "body",
44236            "required": true,
44237            "schema": {
44238              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44239            }
44240          },
44241          {
44242            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44243            "in": "query",
44244            "name": "dryRun",
44245            "type": "string",
44246            "uniqueItems": true
44247          },
44248          {
44249            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
44250            "in": "query",
44251            "name": "fieldManager",
44252            "type": "string",
44253            "uniqueItems": true
44254          },
44255          {
44256            "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.",
44257            "in": "query",
44258            "name": "force",
44259            "type": "boolean",
44260            "uniqueItems": true
44261          }
44262        ],
44263        "produces": [
44264          "application/json",
44265          "application/yaml",
44266          "application/vnd.kubernetes.protobuf"
44267        ],
44268        "responses": {
44269          "200": {
44270            "description": "OK",
44271            "schema": {
44272              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44273            }
44274          },
44275          "401": {
44276            "description": "Unauthorized"
44277          }
44278        },
44279        "schemes": [
44280          "https"
44281        ],
44282        "tags": [
44283          "apiextensions_v1beta1"
44284        ],
44285        "x-kubernetes-action": "patch",
44286        "x-kubernetes-group-version-kind": {
44287          "group": "apiextensions.k8s.io",
44288          "kind": "CustomResourceDefinition",
44289          "version": "v1beta1"
44290        }
44291      },
44292      "put": {
44293        "consumes": [
44294          "*/*"
44295        ],
44296        "description": "replace the specified CustomResourceDefinition",
44297        "operationId": "replaceApiextensionsV1beta1CustomResourceDefinition",
44298        "parameters": [
44299          {
44300            "in": "body",
44301            "name": "body",
44302            "required": true,
44303            "schema": {
44304              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44305            }
44306          },
44307          {
44308            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44309            "in": "query",
44310            "name": "dryRun",
44311            "type": "string",
44312            "uniqueItems": true
44313          },
44314          {
44315            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44316            "in": "query",
44317            "name": "fieldManager",
44318            "type": "string",
44319            "uniqueItems": true
44320          }
44321        ],
44322        "produces": [
44323          "application/json",
44324          "application/yaml",
44325          "application/vnd.kubernetes.protobuf"
44326        ],
44327        "responses": {
44328          "200": {
44329            "description": "OK",
44330            "schema": {
44331              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44332            }
44333          },
44334          "201": {
44335            "description": "Created",
44336            "schema": {
44337              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44338            }
44339          },
44340          "401": {
44341            "description": "Unauthorized"
44342          }
44343        },
44344        "schemes": [
44345          "https"
44346        ],
44347        "tags": [
44348          "apiextensions_v1beta1"
44349        ],
44350        "x-kubernetes-action": "put",
44351        "x-kubernetes-group-version-kind": {
44352          "group": "apiextensions.k8s.io",
44353          "kind": "CustomResourceDefinition",
44354          "version": "v1beta1"
44355        }
44356      }
44357    },
44358    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status": {
44359      "get": {
44360        "consumes": [
44361          "*/*"
44362        ],
44363        "description": "read status of the specified CustomResourceDefinition",
44364        "operationId": "readApiextensionsV1beta1CustomResourceDefinitionStatus",
44365        "produces": [
44366          "application/json",
44367          "application/yaml",
44368          "application/vnd.kubernetes.protobuf"
44369        ],
44370        "responses": {
44371          "200": {
44372            "description": "OK",
44373            "schema": {
44374              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44375            }
44376          },
44377          "401": {
44378            "description": "Unauthorized"
44379          }
44380        },
44381        "schemes": [
44382          "https"
44383        ],
44384        "tags": [
44385          "apiextensions_v1beta1"
44386        ],
44387        "x-kubernetes-action": "get",
44388        "x-kubernetes-group-version-kind": {
44389          "group": "apiextensions.k8s.io",
44390          "kind": "CustomResourceDefinition",
44391          "version": "v1beta1"
44392        }
44393      },
44394      "parameters": [
44395        {
44396          "description": "name of the CustomResourceDefinition",
44397          "in": "path",
44398          "name": "name",
44399          "required": true,
44400          "type": "string",
44401          "uniqueItems": true
44402        },
44403        {
44404          "description": "If 'true', then the output is pretty printed.",
44405          "in": "query",
44406          "name": "pretty",
44407          "type": "string",
44408          "uniqueItems": true
44409        }
44410      ],
44411      "patch": {
44412        "consumes": [
44413          "application/json-patch+json",
44414          "application/merge-patch+json",
44415          "application/strategic-merge-patch+json",
44416          "application/apply-patch+yaml"
44417        ],
44418        "description": "partially update status of the specified CustomResourceDefinition",
44419        "operationId": "patchApiextensionsV1beta1CustomResourceDefinitionStatus",
44420        "parameters": [
44421          {
44422            "in": "body",
44423            "name": "body",
44424            "required": true,
44425            "schema": {
44426              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44427            }
44428          },
44429          {
44430            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44431            "in": "query",
44432            "name": "dryRun",
44433            "type": "string",
44434            "uniqueItems": true
44435          },
44436          {
44437            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
44438            "in": "query",
44439            "name": "fieldManager",
44440            "type": "string",
44441            "uniqueItems": true
44442          },
44443          {
44444            "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.",
44445            "in": "query",
44446            "name": "force",
44447            "type": "boolean",
44448            "uniqueItems": true
44449          }
44450        ],
44451        "produces": [
44452          "application/json",
44453          "application/yaml",
44454          "application/vnd.kubernetes.protobuf"
44455        ],
44456        "responses": {
44457          "200": {
44458            "description": "OK",
44459            "schema": {
44460              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44461            }
44462          },
44463          "401": {
44464            "description": "Unauthorized"
44465          }
44466        },
44467        "schemes": [
44468          "https"
44469        ],
44470        "tags": [
44471          "apiextensions_v1beta1"
44472        ],
44473        "x-kubernetes-action": "patch",
44474        "x-kubernetes-group-version-kind": {
44475          "group": "apiextensions.k8s.io",
44476          "kind": "CustomResourceDefinition",
44477          "version": "v1beta1"
44478        }
44479      },
44480      "put": {
44481        "consumes": [
44482          "*/*"
44483        ],
44484        "description": "replace status of the specified CustomResourceDefinition",
44485        "operationId": "replaceApiextensionsV1beta1CustomResourceDefinitionStatus",
44486        "parameters": [
44487          {
44488            "in": "body",
44489            "name": "body",
44490            "required": true,
44491            "schema": {
44492              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44493            }
44494          },
44495          {
44496            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44497            "in": "query",
44498            "name": "dryRun",
44499            "type": "string",
44500            "uniqueItems": true
44501          },
44502          {
44503            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44504            "in": "query",
44505            "name": "fieldManager",
44506            "type": "string",
44507            "uniqueItems": true
44508          }
44509        ],
44510        "produces": [
44511          "application/json",
44512          "application/yaml",
44513          "application/vnd.kubernetes.protobuf"
44514        ],
44515        "responses": {
44516          "200": {
44517            "description": "OK",
44518            "schema": {
44519              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44520            }
44521          },
44522          "201": {
44523            "description": "Created",
44524            "schema": {
44525              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44526            }
44527          },
44528          "401": {
44529            "description": "Unauthorized"
44530          }
44531        },
44532        "schemes": [
44533          "https"
44534        ],
44535        "tags": [
44536          "apiextensions_v1beta1"
44537        ],
44538        "x-kubernetes-action": "put",
44539        "x-kubernetes-group-version-kind": {
44540          "group": "apiextensions.k8s.io",
44541          "kind": "CustomResourceDefinition",
44542          "version": "v1beta1"
44543        }
44544      }
44545    },
44546    "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions": {
44547      "get": {
44548        "consumes": [
44549          "*/*"
44550        ],
44551        "description": "watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead.",
44552        "operationId": "watchApiextensionsV1beta1CustomResourceDefinitionList",
44553        "produces": [
44554          "application/json",
44555          "application/yaml",
44556          "application/vnd.kubernetes.protobuf",
44557          "application/json;stream=watch",
44558          "application/vnd.kubernetes.protobuf;stream=watch"
44559        ],
44560        "responses": {
44561          "200": {
44562            "description": "OK",
44563            "schema": {
44564              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
44565            }
44566          },
44567          "401": {
44568            "description": "Unauthorized"
44569          }
44570        },
44571        "schemes": [
44572          "https"
44573        ],
44574        "tags": [
44575          "apiextensions_v1beta1"
44576        ],
44577        "x-kubernetes-action": "watchlist",
44578        "x-kubernetes-group-version-kind": {
44579          "group": "apiextensions.k8s.io",
44580          "kind": "CustomResourceDefinition",
44581          "version": "v1beta1"
44582        }
44583      },
44584      "parameters": [
44585        {
44586          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
44587          "in": "query",
44588          "name": "allowWatchBookmarks",
44589          "type": "boolean",
44590          "uniqueItems": true
44591        },
44592        {
44593          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44594          "in": "query",
44595          "name": "continue",
44596          "type": "string",
44597          "uniqueItems": true
44598        },
44599        {
44600          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44601          "in": "query",
44602          "name": "fieldSelector",
44603          "type": "string",
44604          "uniqueItems": true
44605        },
44606        {
44607          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44608          "in": "query",
44609          "name": "labelSelector",
44610          "type": "string",
44611          "uniqueItems": true
44612        },
44613        {
44614          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44615          "in": "query",
44616          "name": "limit",
44617          "type": "integer",
44618          "uniqueItems": true
44619        },
44620        {
44621          "description": "If 'true', then the output is pretty printed.",
44622          "in": "query",
44623          "name": "pretty",
44624          "type": "string",
44625          "uniqueItems": true
44626        },
44627        {
44628          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44629          "in": "query",
44630          "name": "resourceVersion",
44631          "type": "string",
44632          "uniqueItems": true
44633        },
44634        {
44635          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44636          "in": "query",
44637          "name": "resourceVersionMatch",
44638          "type": "string",
44639          "uniqueItems": true
44640        },
44641        {
44642          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44643          "in": "query",
44644          "name": "timeoutSeconds",
44645          "type": "integer",
44646          "uniqueItems": true
44647        },
44648        {
44649          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44650          "in": "query",
44651          "name": "watch",
44652          "type": "boolean",
44653          "uniqueItems": true
44654        }
44655      ]
44656    },
44657    "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{name}": {
44658      "get": {
44659        "consumes": [
44660          "*/*"
44661        ],
44662        "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.",
44663        "operationId": "watchApiextensionsV1beta1CustomResourceDefinition",
44664        "produces": [
44665          "application/json",
44666          "application/yaml",
44667          "application/vnd.kubernetes.protobuf",
44668          "application/json;stream=watch",
44669          "application/vnd.kubernetes.protobuf;stream=watch"
44670        ],
44671        "responses": {
44672          "200": {
44673            "description": "OK",
44674            "schema": {
44675              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
44676            }
44677          },
44678          "401": {
44679            "description": "Unauthorized"
44680          }
44681        },
44682        "schemes": [
44683          "https"
44684        ],
44685        "tags": [
44686          "apiextensions_v1beta1"
44687        ],
44688        "x-kubernetes-action": "watch",
44689        "x-kubernetes-group-version-kind": {
44690          "group": "apiextensions.k8s.io",
44691          "kind": "CustomResourceDefinition",
44692          "version": "v1beta1"
44693        }
44694      },
44695      "parameters": [
44696        {
44697          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
44698          "in": "query",
44699          "name": "allowWatchBookmarks",
44700          "type": "boolean",
44701          "uniqueItems": true
44702        },
44703        {
44704          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44705          "in": "query",
44706          "name": "continue",
44707          "type": "string",
44708          "uniqueItems": true
44709        },
44710        {
44711          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44712          "in": "query",
44713          "name": "fieldSelector",
44714          "type": "string",
44715          "uniqueItems": true
44716        },
44717        {
44718          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44719          "in": "query",
44720          "name": "labelSelector",
44721          "type": "string",
44722          "uniqueItems": true
44723        },
44724        {
44725          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44726          "in": "query",
44727          "name": "limit",
44728          "type": "integer",
44729          "uniqueItems": true
44730        },
44731        {
44732          "description": "name of the CustomResourceDefinition",
44733          "in": "path",
44734          "name": "name",
44735          "required": true,
44736          "type": "string",
44737          "uniqueItems": true
44738        },
44739        {
44740          "description": "If 'true', then the output is pretty printed.",
44741          "in": "query",
44742          "name": "pretty",
44743          "type": "string",
44744          "uniqueItems": true
44745        },
44746        {
44747          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44748          "in": "query",
44749          "name": "resourceVersion",
44750          "type": "string",
44751          "uniqueItems": true
44752        },
44753        {
44754          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44755          "in": "query",
44756          "name": "resourceVersionMatch",
44757          "type": "string",
44758          "uniqueItems": true
44759        },
44760        {
44761          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44762          "in": "query",
44763          "name": "timeoutSeconds",
44764          "type": "integer",
44765          "uniqueItems": true
44766        },
44767        {
44768          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44769          "in": "query",
44770          "name": "watch",
44771          "type": "boolean",
44772          "uniqueItems": true
44773        }
44774      ]
44775    },
44776    "/apis/apiregistration.k8s.io/": {
44777      "get": {
44778        "consumes": [
44779          "application/json",
44780          "application/yaml",
44781          "application/vnd.kubernetes.protobuf"
44782        ],
44783        "description": "get information of a group",
44784        "operationId": "getApiregistrationAPIGroup",
44785        "produces": [
44786          "application/json",
44787          "application/yaml",
44788          "application/vnd.kubernetes.protobuf"
44789        ],
44790        "responses": {
44791          "200": {
44792            "description": "OK",
44793            "schema": {
44794              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
44795            }
44796          },
44797          "401": {
44798            "description": "Unauthorized"
44799          }
44800        },
44801        "schemes": [
44802          "https"
44803        ],
44804        "tags": [
44805          "apiregistration"
44806        ]
44807      }
44808    },
44809    "/apis/apiregistration.k8s.io/v1/": {
44810      "get": {
44811        "consumes": [
44812          "application/json",
44813          "application/yaml",
44814          "application/vnd.kubernetes.protobuf"
44815        ],
44816        "description": "get available resources",
44817        "operationId": "getApiregistrationV1APIResources",
44818        "produces": [
44819          "application/json",
44820          "application/yaml",
44821          "application/vnd.kubernetes.protobuf"
44822        ],
44823        "responses": {
44824          "200": {
44825            "description": "OK",
44826            "schema": {
44827              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
44828            }
44829          },
44830          "401": {
44831            "description": "Unauthorized"
44832          }
44833        },
44834        "schemes": [
44835          "https"
44836        ],
44837        "tags": [
44838          "apiregistration_v1"
44839        ]
44840      }
44841    },
44842    "/apis/apiregistration.k8s.io/v1/apiservices": {
44843      "delete": {
44844        "consumes": [
44845          "*/*"
44846        ],
44847        "description": "delete collection of APIService",
44848        "operationId": "deleteApiregistrationV1CollectionAPIService",
44849        "parameters": [
44850          {
44851            "in": "body",
44852            "name": "body",
44853            "schema": {
44854              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
44855            }
44856          },
44857          {
44858            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44859            "in": "query",
44860            "name": "continue",
44861            "type": "string",
44862            "uniqueItems": true
44863          },
44864          {
44865            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44866            "in": "query",
44867            "name": "dryRun",
44868            "type": "string",
44869            "uniqueItems": true
44870          },
44871          {
44872            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44873            "in": "query",
44874            "name": "fieldSelector",
44875            "type": "string",
44876            "uniqueItems": true
44877          },
44878          {
44879            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
44880            "in": "query",
44881            "name": "gracePeriodSeconds",
44882            "type": "integer",
44883            "uniqueItems": true
44884          },
44885          {
44886            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44887            "in": "query",
44888            "name": "labelSelector",
44889            "type": "string",
44890            "uniqueItems": true
44891          },
44892          {
44893            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44894            "in": "query",
44895            "name": "limit",
44896            "type": "integer",
44897            "uniqueItems": true
44898          },
44899          {
44900            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
44901            "in": "query",
44902            "name": "orphanDependents",
44903            "type": "boolean",
44904            "uniqueItems": true
44905          },
44906          {
44907            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
44908            "in": "query",
44909            "name": "propagationPolicy",
44910            "type": "string",
44911            "uniqueItems": true
44912          },
44913          {
44914            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44915            "in": "query",
44916            "name": "resourceVersion",
44917            "type": "string",
44918            "uniqueItems": true
44919          },
44920          {
44921            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44922            "in": "query",
44923            "name": "resourceVersionMatch",
44924            "type": "string",
44925            "uniqueItems": true
44926          },
44927          {
44928            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44929            "in": "query",
44930            "name": "timeoutSeconds",
44931            "type": "integer",
44932            "uniqueItems": true
44933          }
44934        ],
44935        "produces": [
44936          "application/json",
44937          "application/yaml",
44938          "application/vnd.kubernetes.protobuf"
44939        ],
44940        "responses": {
44941          "200": {
44942            "description": "OK",
44943            "schema": {
44944              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44945            }
44946          },
44947          "401": {
44948            "description": "Unauthorized"
44949          }
44950        },
44951        "schemes": [
44952          "https"
44953        ],
44954        "tags": [
44955          "apiregistration_v1"
44956        ],
44957        "x-kubernetes-action": "deletecollection",
44958        "x-kubernetes-group-version-kind": {
44959          "group": "apiregistration.k8s.io",
44960          "kind": "APIService",
44961          "version": "v1"
44962        }
44963      },
44964      "get": {
44965        "consumes": [
44966          "*/*"
44967        ],
44968        "description": "list or watch objects of kind APIService",
44969        "operationId": "listApiregistrationV1APIService",
44970        "parameters": [
44971          {
44972            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
44973            "in": "query",
44974            "name": "allowWatchBookmarks",
44975            "type": "boolean",
44976            "uniqueItems": true
44977          },
44978          {
44979            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44980            "in": "query",
44981            "name": "continue",
44982            "type": "string",
44983            "uniqueItems": true
44984          },
44985          {
44986            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44987            "in": "query",
44988            "name": "fieldSelector",
44989            "type": "string",
44990            "uniqueItems": true
44991          },
44992          {
44993            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44994            "in": "query",
44995            "name": "labelSelector",
44996            "type": "string",
44997            "uniqueItems": true
44998          },
44999          {
45000            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45001            "in": "query",
45002            "name": "limit",
45003            "type": "integer",
45004            "uniqueItems": true
45005          },
45006          {
45007            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45008            "in": "query",
45009            "name": "resourceVersion",
45010            "type": "string",
45011            "uniqueItems": true
45012          },
45013          {
45014            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45015            "in": "query",
45016            "name": "resourceVersionMatch",
45017            "type": "string",
45018            "uniqueItems": true
45019          },
45020          {
45021            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45022            "in": "query",
45023            "name": "timeoutSeconds",
45024            "type": "integer",
45025            "uniqueItems": true
45026          },
45027          {
45028            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45029            "in": "query",
45030            "name": "watch",
45031            "type": "boolean",
45032            "uniqueItems": true
45033          }
45034        ],
45035        "produces": [
45036          "application/json",
45037          "application/yaml",
45038          "application/vnd.kubernetes.protobuf",
45039          "application/json;stream=watch",
45040          "application/vnd.kubernetes.protobuf;stream=watch"
45041        ],
45042        "responses": {
45043          "200": {
45044            "description": "OK",
45045            "schema": {
45046              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList"
45047            }
45048          },
45049          "401": {
45050            "description": "Unauthorized"
45051          }
45052        },
45053        "schemes": [
45054          "https"
45055        ],
45056        "tags": [
45057          "apiregistration_v1"
45058        ],
45059        "x-kubernetes-action": "list",
45060        "x-kubernetes-group-version-kind": {
45061          "group": "apiregistration.k8s.io",
45062          "kind": "APIService",
45063          "version": "v1"
45064        }
45065      },
45066      "parameters": [
45067        {
45068          "description": "If 'true', then the output is pretty printed.",
45069          "in": "query",
45070          "name": "pretty",
45071          "type": "string",
45072          "uniqueItems": true
45073        }
45074      ],
45075      "post": {
45076        "consumes": [
45077          "*/*"
45078        ],
45079        "description": "create an APIService",
45080        "operationId": "createApiregistrationV1APIService",
45081        "parameters": [
45082          {
45083            "in": "body",
45084            "name": "body",
45085            "required": true,
45086            "schema": {
45087              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45088            }
45089          },
45090          {
45091            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45092            "in": "query",
45093            "name": "dryRun",
45094            "type": "string",
45095            "uniqueItems": true
45096          },
45097          {
45098            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45099            "in": "query",
45100            "name": "fieldManager",
45101            "type": "string",
45102            "uniqueItems": true
45103          }
45104        ],
45105        "produces": [
45106          "application/json",
45107          "application/yaml",
45108          "application/vnd.kubernetes.protobuf"
45109        ],
45110        "responses": {
45111          "200": {
45112            "description": "OK",
45113            "schema": {
45114              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45115            }
45116          },
45117          "201": {
45118            "description": "Created",
45119            "schema": {
45120              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45121            }
45122          },
45123          "202": {
45124            "description": "Accepted",
45125            "schema": {
45126              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45127            }
45128          },
45129          "401": {
45130            "description": "Unauthorized"
45131          }
45132        },
45133        "schemes": [
45134          "https"
45135        ],
45136        "tags": [
45137          "apiregistration_v1"
45138        ],
45139        "x-kubernetes-action": "post",
45140        "x-kubernetes-group-version-kind": {
45141          "group": "apiregistration.k8s.io",
45142          "kind": "APIService",
45143          "version": "v1"
45144        }
45145      }
45146    },
45147    "/apis/apiregistration.k8s.io/v1/apiservices/{name}": {
45148      "delete": {
45149        "consumes": [
45150          "*/*"
45151        ],
45152        "description": "delete an APIService",
45153        "operationId": "deleteApiregistrationV1APIService",
45154        "parameters": [
45155          {
45156            "in": "body",
45157            "name": "body",
45158            "schema": {
45159              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
45160            }
45161          },
45162          {
45163            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45164            "in": "query",
45165            "name": "dryRun",
45166            "type": "string",
45167            "uniqueItems": true
45168          },
45169          {
45170            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
45171            "in": "query",
45172            "name": "gracePeriodSeconds",
45173            "type": "integer",
45174            "uniqueItems": true
45175          },
45176          {
45177            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
45178            "in": "query",
45179            "name": "orphanDependents",
45180            "type": "boolean",
45181            "uniqueItems": true
45182          },
45183          {
45184            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
45185            "in": "query",
45186            "name": "propagationPolicy",
45187            "type": "string",
45188            "uniqueItems": true
45189          }
45190        ],
45191        "produces": [
45192          "application/json",
45193          "application/yaml",
45194          "application/vnd.kubernetes.protobuf"
45195        ],
45196        "responses": {
45197          "200": {
45198            "description": "OK",
45199            "schema": {
45200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45201            }
45202          },
45203          "202": {
45204            "description": "Accepted",
45205            "schema": {
45206              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45207            }
45208          },
45209          "401": {
45210            "description": "Unauthorized"
45211          }
45212        },
45213        "schemes": [
45214          "https"
45215        ],
45216        "tags": [
45217          "apiregistration_v1"
45218        ],
45219        "x-kubernetes-action": "delete",
45220        "x-kubernetes-group-version-kind": {
45221          "group": "apiregistration.k8s.io",
45222          "kind": "APIService",
45223          "version": "v1"
45224        }
45225      },
45226      "get": {
45227        "consumes": [
45228          "*/*"
45229        ],
45230        "description": "read the specified APIService",
45231        "operationId": "readApiregistrationV1APIService",
45232        "produces": [
45233          "application/json",
45234          "application/yaml",
45235          "application/vnd.kubernetes.protobuf"
45236        ],
45237        "responses": {
45238          "200": {
45239            "description": "OK",
45240            "schema": {
45241              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45242            }
45243          },
45244          "401": {
45245            "description": "Unauthorized"
45246          }
45247        },
45248        "schemes": [
45249          "https"
45250        ],
45251        "tags": [
45252          "apiregistration_v1"
45253        ],
45254        "x-kubernetes-action": "get",
45255        "x-kubernetes-group-version-kind": {
45256          "group": "apiregistration.k8s.io",
45257          "kind": "APIService",
45258          "version": "v1"
45259        }
45260      },
45261      "parameters": [
45262        {
45263          "description": "name of the APIService",
45264          "in": "path",
45265          "name": "name",
45266          "required": true,
45267          "type": "string",
45268          "uniqueItems": true
45269        },
45270        {
45271          "description": "If 'true', then the output is pretty printed.",
45272          "in": "query",
45273          "name": "pretty",
45274          "type": "string",
45275          "uniqueItems": true
45276        }
45277      ],
45278      "patch": {
45279        "consumes": [
45280          "application/json-patch+json",
45281          "application/merge-patch+json",
45282          "application/strategic-merge-patch+json",
45283          "application/apply-patch+yaml"
45284        ],
45285        "description": "partially update the specified APIService",
45286        "operationId": "patchApiregistrationV1APIService",
45287        "parameters": [
45288          {
45289            "in": "body",
45290            "name": "body",
45291            "required": true,
45292            "schema": {
45293              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
45294            }
45295          },
45296          {
45297            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45298            "in": "query",
45299            "name": "dryRun",
45300            "type": "string",
45301            "uniqueItems": true
45302          },
45303          {
45304            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
45305            "in": "query",
45306            "name": "fieldManager",
45307            "type": "string",
45308            "uniqueItems": true
45309          },
45310          {
45311            "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.",
45312            "in": "query",
45313            "name": "force",
45314            "type": "boolean",
45315            "uniqueItems": true
45316          }
45317        ],
45318        "produces": [
45319          "application/json",
45320          "application/yaml",
45321          "application/vnd.kubernetes.protobuf"
45322        ],
45323        "responses": {
45324          "200": {
45325            "description": "OK",
45326            "schema": {
45327              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45328            }
45329          },
45330          "401": {
45331            "description": "Unauthorized"
45332          }
45333        },
45334        "schemes": [
45335          "https"
45336        ],
45337        "tags": [
45338          "apiregistration_v1"
45339        ],
45340        "x-kubernetes-action": "patch",
45341        "x-kubernetes-group-version-kind": {
45342          "group": "apiregistration.k8s.io",
45343          "kind": "APIService",
45344          "version": "v1"
45345        }
45346      },
45347      "put": {
45348        "consumes": [
45349          "*/*"
45350        ],
45351        "description": "replace the specified APIService",
45352        "operationId": "replaceApiregistrationV1APIService",
45353        "parameters": [
45354          {
45355            "in": "body",
45356            "name": "body",
45357            "required": true,
45358            "schema": {
45359              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45360            }
45361          },
45362          {
45363            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45364            "in": "query",
45365            "name": "dryRun",
45366            "type": "string",
45367            "uniqueItems": true
45368          },
45369          {
45370            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45371            "in": "query",
45372            "name": "fieldManager",
45373            "type": "string",
45374            "uniqueItems": true
45375          }
45376        ],
45377        "produces": [
45378          "application/json",
45379          "application/yaml",
45380          "application/vnd.kubernetes.protobuf"
45381        ],
45382        "responses": {
45383          "200": {
45384            "description": "OK",
45385            "schema": {
45386              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45387            }
45388          },
45389          "201": {
45390            "description": "Created",
45391            "schema": {
45392              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45393            }
45394          },
45395          "401": {
45396            "description": "Unauthorized"
45397          }
45398        },
45399        "schemes": [
45400          "https"
45401        ],
45402        "tags": [
45403          "apiregistration_v1"
45404        ],
45405        "x-kubernetes-action": "put",
45406        "x-kubernetes-group-version-kind": {
45407          "group": "apiregistration.k8s.io",
45408          "kind": "APIService",
45409          "version": "v1"
45410        }
45411      }
45412    },
45413    "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status": {
45414      "get": {
45415        "consumes": [
45416          "*/*"
45417        ],
45418        "description": "read status of the specified APIService",
45419        "operationId": "readApiregistrationV1APIServiceStatus",
45420        "produces": [
45421          "application/json",
45422          "application/yaml",
45423          "application/vnd.kubernetes.protobuf"
45424        ],
45425        "responses": {
45426          "200": {
45427            "description": "OK",
45428            "schema": {
45429              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45430            }
45431          },
45432          "401": {
45433            "description": "Unauthorized"
45434          }
45435        },
45436        "schemes": [
45437          "https"
45438        ],
45439        "tags": [
45440          "apiregistration_v1"
45441        ],
45442        "x-kubernetes-action": "get",
45443        "x-kubernetes-group-version-kind": {
45444          "group": "apiregistration.k8s.io",
45445          "kind": "APIService",
45446          "version": "v1"
45447        }
45448      },
45449      "parameters": [
45450        {
45451          "description": "name of the APIService",
45452          "in": "path",
45453          "name": "name",
45454          "required": true,
45455          "type": "string",
45456          "uniqueItems": true
45457        },
45458        {
45459          "description": "If 'true', then the output is pretty printed.",
45460          "in": "query",
45461          "name": "pretty",
45462          "type": "string",
45463          "uniqueItems": true
45464        }
45465      ],
45466      "patch": {
45467        "consumes": [
45468          "application/json-patch+json",
45469          "application/merge-patch+json",
45470          "application/strategic-merge-patch+json",
45471          "application/apply-patch+yaml"
45472        ],
45473        "description": "partially update status of the specified APIService",
45474        "operationId": "patchApiregistrationV1APIServiceStatus",
45475        "parameters": [
45476          {
45477            "in": "body",
45478            "name": "body",
45479            "required": true,
45480            "schema": {
45481              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
45482            }
45483          },
45484          {
45485            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45486            "in": "query",
45487            "name": "dryRun",
45488            "type": "string",
45489            "uniqueItems": true
45490          },
45491          {
45492            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
45493            "in": "query",
45494            "name": "fieldManager",
45495            "type": "string",
45496            "uniqueItems": true
45497          },
45498          {
45499            "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.",
45500            "in": "query",
45501            "name": "force",
45502            "type": "boolean",
45503            "uniqueItems": true
45504          }
45505        ],
45506        "produces": [
45507          "application/json",
45508          "application/yaml",
45509          "application/vnd.kubernetes.protobuf"
45510        ],
45511        "responses": {
45512          "200": {
45513            "description": "OK",
45514            "schema": {
45515              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45516            }
45517          },
45518          "401": {
45519            "description": "Unauthorized"
45520          }
45521        },
45522        "schemes": [
45523          "https"
45524        ],
45525        "tags": [
45526          "apiregistration_v1"
45527        ],
45528        "x-kubernetes-action": "patch",
45529        "x-kubernetes-group-version-kind": {
45530          "group": "apiregistration.k8s.io",
45531          "kind": "APIService",
45532          "version": "v1"
45533        }
45534      },
45535      "put": {
45536        "consumes": [
45537          "*/*"
45538        ],
45539        "description": "replace status of the specified APIService",
45540        "operationId": "replaceApiregistrationV1APIServiceStatus",
45541        "parameters": [
45542          {
45543            "in": "body",
45544            "name": "body",
45545            "required": true,
45546            "schema": {
45547              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45548            }
45549          },
45550          {
45551            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45552            "in": "query",
45553            "name": "dryRun",
45554            "type": "string",
45555            "uniqueItems": true
45556          },
45557          {
45558            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45559            "in": "query",
45560            "name": "fieldManager",
45561            "type": "string",
45562            "uniqueItems": true
45563          }
45564        ],
45565        "produces": [
45566          "application/json",
45567          "application/yaml",
45568          "application/vnd.kubernetes.protobuf"
45569        ],
45570        "responses": {
45571          "200": {
45572            "description": "OK",
45573            "schema": {
45574              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45575            }
45576          },
45577          "201": {
45578            "description": "Created",
45579            "schema": {
45580              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45581            }
45582          },
45583          "401": {
45584            "description": "Unauthorized"
45585          }
45586        },
45587        "schemes": [
45588          "https"
45589        ],
45590        "tags": [
45591          "apiregistration_v1"
45592        ],
45593        "x-kubernetes-action": "put",
45594        "x-kubernetes-group-version-kind": {
45595          "group": "apiregistration.k8s.io",
45596          "kind": "APIService",
45597          "version": "v1"
45598        }
45599      }
45600    },
45601    "/apis/apiregistration.k8s.io/v1/watch/apiservices": {
45602      "get": {
45603        "consumes": [
45604          "*/*"
45605        ],
45606        "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.",
45607        "operationId": "watchApiregistrationV1APIServiceList",
45608        "produces": [
45609          "application/json",
45610          "application/yaml",
45611          "application/vnd.kubernetes.protobuf",
45612          "application/json;stream=watch",
45613          "application/vnd.kubernetes.protobuf;stream=watch"
45614        ],
45615        "responses": {
45616          "200": {
45617            "description": "OK",
45618            "schema": {
45619              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45620            }
45621          },
45622          "401": {
45623            "description": "Unauthorized"
45624          }
45625        },
45626        "schemes": [
45627          "https"
45628        ],
45629        "tags": [
45630          "apiregistration_v1"
45631        ],
45632        "x-kubernetes-action": "watchlist",
45633        "x-kubernetes-group-version-kind": {
45634          "group": "apiregistration.k8s.io",
45635          "kind": "APIService",
45636          "version": "v1"
45637        }
45638      },
45639      "parameters": [
45640        {
45641          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
45642          "in": "query",
45643          "name": "allowWatchBookmarks",
45644          "type": "boolean",
45645          "uniqueItems": true
45646        },
45647        {
45648          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45649          "in": "query",
45650          "name": "continue",
45651          "type": "string",
45652          "uniqueItems": true
45653        },
45654        {
45655          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45656          "in": "query",
45657          "name": "fieldSelector",
45658          "type": "string",
45659          "uniqueItems": true
45660        },
45661        {
45662          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45663          "in": "query",
45664          "name": "labelSelector",
45665          "type": "string",
45666          "uniqueItems": true
45667        },
45668        {
45669          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45670          "in": "query",
45671          "name": "limit",
45672          "type": "integer",
45673          "uniqueItems": true
45674        },
45675        {
45676          "description": "If 'true', then the output is pretty printed.",
45677          "in": "query",
45678          "name": "pretty",
45679          "type": "string",
45680          "uniqueItems": true
45681        },
45682        {
45683          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45684          "in": "query",
45685          "name": "resourceVersion",
45686          "type": "string",
45687          "uniqueItems": true
45688        },
45689        {
45690          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45691          "in": "query",
45692          "name": "resourceVersionMatch",
45693          "type": "string",
45694          "uniqueItems": true
45695        },
45696        {
45697          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45698          "in": "query",
45699          "name": "timeoutSeconds",
45700          "type": "integer",
45701          "uniqueItems": true
45702        },
45703        {
45704          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45705          "in": "query",
45706          "name": "watch",
45707          "type": "boolean",
45708          "uniqueItems": true
45709        }
45710      ]
45711    },
45712    "/apis/apiregistration.k8s.io/v1/watch/apiservices/{name}": {
45713      "get": {
45714        "consumes": [
45715          "*/*"
45716        ],
45717        "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.",
45718        "operationId": "watchApiregistrationV1APIService",
45719        "produces": [
45720          "application/json",
45721          "application/yaml",
45722          "application/vnd.kubernetes.protobuf",
45723          "application/json;stream=watch",
45724          "application/vnd.kubernetes.protobuf;stream=watch"
45725        ],
45726        "responses": {
45727          "200": {
45728            "description": "OK",
45729            "schema": {
45730              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45731            }
45732          },
45733          "401": {
45734            "description": "Unauthorized"
45735          }
45736        },
45737        "schemes": [
45738          "https"
45739        ],
45740        "tags": [
45741          "apiregistration_v1"
45742        ],
45743        "x-kubernetes-action": "watch",
45744        "x-kubernetes-group-version-kind": {
45745          "group": "apiregistration.k8s.io",
45746          "kind": "APIService",
45747          "version": "v1"
45748        }
45749      },
45750      "parameters": [
45751        {
45752          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
45753          "in": "query",
45754          "name": "allowWatchBookmarks",
45755          "type": "boolean",
45756          "uniqueItems": true
45757        },
45758        {
45759          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45760          "in": "query",
45761          "name": "continue",
45762          "type": "string",
45763          "uniqueItems": true
45764        },
45765        {
45766          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45767          "in": "query",
45768          "name": "fieldSelector",
45769          "type": "string",
45770          "uniqueItems": true
45771        },
45772        {
45773          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45774          "in": "query",
45775          "name": "labelSelector",
45776          "type": "string",
45777          "uniqueItems": true
45778        },
45779        {
45780          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45781          "in": "query",
45782          "name": "limit",
45783          "type": "integer",
45784          "uniqueItems": true
45785        },
45786        {
45787          "description": "name of the APIService",
45788          "in": "path",
45789          "name": "name",
45790          "required": true,
45791          "type": "string",
45792          "uniqueItems": true
45793        },
45794        {
45795          "description": "If 'true', then the output is pretty printed.",
45796          "in": "query",
45797          "name": "pretty",
45798          "type": "string",
45799          "uniqueItems": true
45800        },
45801        {
45802          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45803          "in": "query",
45804          "name": "resourceVersion",
45805          "type": "string",
45806          "uniqueItems": true
45807        },
45808        {
45809          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45810          "in": "query",
45811          "name": "resourceVersionMatch",
45812          "type": "string",
45813          "uniqueItems": true
45814        },
45815        {
45816          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45817          "in": "query",
45818          "name": "timeoutSeconds",
45819          "type": "integer",
45820          "uniqueItems": true
45821        },
45822        {
45823          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45824          "in": "query",
45825          "name": "watch",
45826          "type": "boolean",
45827          "uniqueItems": true
45828        }
45829      ]
45830    },
45831    "/apis/apiregistration.k8s.io/v1beta1/": {
45832      "get": {
45833        "consumes": [
45834          "application/json",
45835          "application/yaml",
45836          "application/vnd.kubernetes.protobuf"
45837        ],
45838        "description": "get available resources",
45839        "operationId": "getApiregistrationV1beta1APIResources",
45840        "produces": [
45841          "application/json",
45842          "application/yaml",
45843          "application/vnd.kubernetes.protobuf"
45844        ],
45845        "responses": {
45846          "200": {
45847            "description": "OK",
45848            "schema": {
45849              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
45850            }
45851          },
45852          "401": {
45853            "description": "Unauthorized"
45854          }
45855        },
45856        "schemes": [
45857          "https"
45858        ],
45859        "tags": [
45860          "apiregistration_v1beta1"
45861        ]
45862      }
45863    },
45864    "/apis/apiregistration.k8s.io/v1beta1/apiservices": {
45865      "delete": {
45866        "consumes": [
45867          "*/*"
45868        ],
45869        "description": "delete collection of APIService",
45870        "operationId": "deleteApiregistrationV1beta1CollectionAPIService",
45871        "parameters": [
45872          {
45873            "in": "body",
45874            "name": "body",
45875            "schema": {
45876              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
45877            }
45878          },
45879          {
45880            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45881            "in": "query",
45882            "name": "continue",
45883            "type": "string",
45884            "uniqueItems": true
45885          },
45886          {
45887            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45888            "in": "query",
45889            "name": "dryRun",
45890            "type": "string",
45891            "uniqueItems": true
45892          },
45893          {
45894            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45895            "in": "query",
45896            "name": "fieldSelector",
45897            "type": "string",
45898            "uniqueItems": true
45899          },
45900          {
45901            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
45902            "in": "query",
45903            "name": "gracePeriodSeconds",
45904            "type": "integer",
45905            "uniqueItems": true
45906          },
45907          {
45908            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45909            "in": "query",
45910            "name": "labelSelector",
45911            "type": "string",
45912            "uniqueItems": true
45913          },
45914          {
45915            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45916            "in": "query",
45917            "name": "limit",
45918            "type": "integer",
45919            "uniqueItems": true
45920          },
45921          {
45922            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
45923            "in": "query",
45924            "name": "orphanDependents",
45925            "type": "boolean",
45926            "uniqueItems": true
45927          },
45928          {
45929            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
45930            "in": "query",
45931            "name": "propagationPolicy",
45932            "type": "string",
45933            "uniqueItems": true
45934          },
45935          {
45936            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45937            "in": "query",
45938            "name": "resourceVersion",
45939            "type": "string",
45940            "uniqueItems": true
45941          },
45942          {
45943            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45944            "in": "query",
45945            "name": "resourceVersionMatch",
45946            "type": "string",
45947            "uniqueItems": true
45948          },
45949          {
45950            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45951            "in": "query",
45952            "name": "timeoutSeconds",
45953            "type": "integer",
45954            "uniqueItems": true
45955          }
45956        ],
45957        "produces": [
45958          "application/json",
45959          "application/yaml",
45960          "application/vnd.kubernetes.protobuf"
45961        ],
45962        "responses": {
45963          "200": {
45964            "description": "OK",
45965            "schema": {
45966              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45967            }
45968          },
45969          "401": {
45970            "description": "Unauthorized"
45971          }
45972        },
45973        "schemes": [
45974          "https"
45975        ],
45976        "tags": [
45977          "apiregistration_v1beta1"
45978        ],
45979        "x-kubernetes-action": "deletecollection",
45980        "x-kubernetes-group-version-kind": {
45981          "group": "apiregistration.k8s.io",
45982          "kind": "APIService",
45983          "version": "v1beta1"
45984        }
45985      },
45986      "get": {
45987        "consumes": [
45988          "*/*"
45989        ],
45990        "description": "list or watch objects of kind APIService",
45991        "operationId": "listApiregistrationV1beta1APIService",
45992        "parameters": [
45993          {
45994            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
45995            "in": "query",
45996            "name": "allowWatchBookmarks",
45997            "type": "boolean",
45998            "uniqueItems": true
45999          },
46000          {
46001            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46002            "in": "query",
46003            "name": "continue",
46004            "type": "string",
46005            "uniqueItems": true
46006          },
46007          {
46008            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46009            "in": "query",
46010            "name": "fieldSelector",
46011            "type": "string",
46012            "uniqueItems": true
46013          },
46014          {
46015            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46016            "in": "query",
46017            "name": "labelSelector",
46018            "type": "string",
46019            "uniqueItems": true
46020          },
46021          {
46022            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46023            "in": "query",
46024            "name": "limit",
46025            "type": "integer",
46026            "uniqueItems": true
46027          },
46028          {
46029            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46030            "in": "query",
46031            "name": "resourceVersion",
46032            "type": "string",
46033            "uniqueItems": true
46034          },
46035          {
46036            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46037            "in": "query",
46038            "name": "resourceVersionMatch",
46039            "type": "string",
46040            "uniqueItems": true
46041          },
46042          {
46043            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46044            "in": "query",
46045            "name": "timeoutSeconds",
46046            "type": "integer",
46047            "uniqueItems": true
46048          },
46049          {
46050            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46051            "in": "query",
46052            "name": "watch",
46053            "type": "boolean",
46054            "uniqueItems": true
46055          }
46056        ],
46057        "produces": [
46058          "application/json",
46059          "application/yaml",
46060          "application/vnd.kubernetes.protobuf",
46061          "application/json;stream=watch",
46062          "application/vnd.kubernetes.protobuf;stream=watch"
46063        ],
46064        "responses": {
46065          "200": {
46066            "description": "OK",
46067            "schema": {
46068              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList"
46069            }
46070          },
46071          "401": {
46072            "description": "Unauthorized"
46073          }
46074        },
46075        "schemes": [
46076          "https"
46077        ],
46078        "tags": [
46079          "apiregistration_v1beta1"
46080        ],
46081        "x-kubernetes-action": "list",
46082        "x-kubernetes-group-version-kind": {
46083          "group": "apiregistration.k8s.io",
46084          "kind": "APIService",
46085          "version": "v1beta1"
46086        }
46087      },
46088      "parameters": [
46089        {
46090          "description": "If 'true', then the output is pretty printed.",
46091          "in": "query",
46092          "name": "pretty",
46093          "type": "string",
46094          "uniqueItems": true
46095        }
46096      ],
46097      "post": {
46098        "consumes": [
46099          "*/*"
46100        ],
46101        "description": "create an APIService",
46102        "operationId": "createApiregistrationV1beta1APIService",
46103        "parameters": [
46104          {
46105            "in": "body",
46106            "name": "body",
46107            "required": true,
46108            "schema": {
46109              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46110            }
46111          },
46112          {
46113            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46114            "in": "query",
46115            "name": "dryRun",
46116            "type": "string",
46117            "uniqueItems": true
46118          },
46119          {
46120            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46121            "in": "query",
46122            "name": "fieldManager",
46123            "type": "string",
46124            "uniqueItems": true
46125          }
46126        ],
46127        "produces": [
46128          "application/json",
46129          "application/yaml",
46130          "application/vnd.kubernetes.protobuf"
46131        ],
46132        "responses": {
46133          "200": {
46134            "description": "OK",
46135            "schema": {
46136              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46137            }
46138          },
46139          "201": {
46140            "description": "Created",
46141            "schema": {
46142              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46143            }
46144          },
46145          "202": {
46146            "description": "Accepted",
46147            "schema": {
46148              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46149            }
46150          },
46151          "401": {
46152            "description": "Unauthorized"
46153          }
46154        },
46155        "schemes": [
46156          "https"
46157        ],
46158        "tags": [
46159          "apiregistration_v1beta1"
46160        ],
46161        "x-kubernetes-action": "post",
46162        "x-kubernetes-group-version-kind": {
46163          "group": "apiregistration.k8s.io",
46164          "kind": "APIService",
46165          "version": "v1beta1"
46166        }
46167      }
46168    },
46169    "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}": {
46170      "delete": {
46171        "consumes": [
46172          "*/*"
46173        ],
46174        "description": "delete an APIService",
46175        "operationId": "deleteApiregistrationV1beta1APIService",
46176        "parameters": [
46177          {
46178            "in": "body",
46179            "name": "body",
46180            "schema": {
46181              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
46182            }
46183          },
46184          {
46185            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46186            "in": "query",
46187            "name": "dryRun",
46188            "type": "string",
46189            "uniqueItems": true
46190          },
46191          {
46192            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
46193            "in": "query",
46194            "name": "gracePeriodSeconds",
46195            "type": "integer",
46196            "uniqueItems": true
46197          },
46198          {
46199            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
46200            "in": "query",
46201            "name": "orphanDependents",
46202            "type": "boolean",
46203            "uniqueItems": true
46204          },
46205          {
46206            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
46207            "in": "query",
46208            "name": "propagationPolicy",
46209            "type": "string",
46210            "uniqueItems": true
46211          }
46212        ],
46213        "produces": [
46214          "application/json",
46215          "application/yaml",
46216          "application/vnd.kubernetes.protobuf"
46217        ],
46218        "responses": {
46219          "200": {
46220            "description": "OK",
46221            "schema": {
46222              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46223            }
46224          },
46225          "202": {
46226            "description": "Accepted",
46227            "schema": {
46228              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46229            }
46230          },
46231          "401": {
46232            "description": "Unauthorized"
46233          }
46234        },
46235        "schemes": [
46236          "https"
46237        ],
46238        "tags": [
46239          "apiregistration_v1beta1"
46240        ],
46241        "x-kubernetes-action": "delete",
46242        "x-kubernetes-group-version-kind": {
46243          "group": "apiregistration.k8s.io",
46244          "kind": "APIService",
46245          "version": "v1beta1"
46246        }
46247      },
46248      "get": {
46249        "consumes": [
46250          "*/*"
46251        ],
46252        "description": "read the specified APIService",
46253        "operationId": "readApiregistrationV1beta1APIService",
46254        "produces": [
46255          "application/json",
46256          "application/yaml",
46257          "application/vnd.kubernetes.protobuf"
46258        ],
46259        "responses": {
46260          "200": {
46261            "description": "OK",
46262            "schema": {
46263              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46264            }
46265          },
46266          "401": {
46267            "description": "Unauthorized"
46268          }
46269        },
46270        "schemes": [
46271          "https"
46272        ],
46273        "tags": [
46274          "apiregistration_v1beta1"
46275        ],
46276        "x-kubernetes-action": "get",
46277        "x-kubernetes-group-version-kind": {
46278          "group": "apiregistration.k8s.io",
46279          "kind": "APIService",
46280          "version": "v1beta1"
46281        }
46282      },
46283      "parameters": [
46284        {
46285          "description": "name of the APIService",
46286          "in": "path",
46287          "name": "name",
46288          "required": true,
46289          "type": "string",
46290          "uniqueItems": true
46291        },
46292        {
46293          "description": "If 'true', then the output is pretty printed.",
46294          "in": "query",
46295          "name": "pretty",
46296          "type": "string",
46297          "uniqueItems": true
46298        }
46299      ],
46300      "patch": {
46301        "consumes": [
46302          "application/json-patch+json",
46303          "application/merge-patch+json",
46304          "application/strategic-merge-patch+json",
46305          "application/apply-patch+yaml"
46306        ],
46307        "description": "partially update the specified APIService",
46308        "operationId": "patchApiregistrationV1beta1APIService",
46309        "parameters": [
46310          {
46311            "in": "body",
46312            "name": "body",
46313            "required": true,
46314            "schema": {
46315              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
46316            }
46317          },
46318          {
46319            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46320            "in": "query",
46321            "name": "dryRun",
46322            "type": "string",
46323            "uniqueItems": true
46324          },
46325          {
46326            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
46327            "in": "query",
46328            "name": "fieldManager",
46329            "type": "string",
46330            "uniqueItems": true
46331          },
46332          {
46333            "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.",
46334            "in": "query",
46335            "name": "force",
46336            "type": "boolean",
46337            "uniqueItems": true
46338          }
46339        ],
46340        "produces": [
46341          "application/json",
46342          "application/yaml",
46343          "application/vnd.kubernetes.protobuf"
46344        ],
46345        "responses": {
46346          "200": {
46347            "description": "OK",
46348            "schema": {
46349              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46350            }
46351          },
46352          "401": {
46353            "description": "Unauthorized"
46354          }
46355        },
46356        "schemes": [
46357          "https"
46358        ],
46359        "tags": [
46360          "apiregistration_v1beta1"
46361        ],
46362        "x-kubernetes-action": "patch",
46363        "x-kubernetes-group-version-kind": {
46364          "group": "apiregistration.k8s.io",
46365          "kind": "APIService",
46366          "version": "v1beta1"
46367        }
46368      },
46369      "put": {
46370        "consumes": [
46371          "*/*"
46372        ],
46373        "description": "replace the specified APIService",
46374        "operationId": "replaceApiregistrationV1beta1APIService",
46375        "parameters": [
46376          {
46377            "in": "body",
46378            "name": "body",
46379            "required": true,
46380            "schema": {
46381              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46382            }
46383          },
46384          {
46385            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46386            "in": "query",
46387            "name": "dryRun",
46388            "type": "string",
46389            "uniqueItems": true
46390          },
46391          {
46392            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46393            "in": "query",
46394            "name": "fieldManager",
46395            "type": "string",
46396            "uniqueItems": true
46397          }
46398        ],
46399        "produces": [
46400          "application/json",
46401          "application/yaml",
46402          "application/vnd.kubernetes.protobuf"
46403        ],
46404        "responses": {
46405          "200": {
46406            "description": "OK",
46407            "schema": {
46408              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46409            }
46410          },
46411          "201": {
46412            "description": "Created",
46413            "schema": {
46414              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46415            }
46416          },
46417          "401": {
46418            "description": "Unauthorized"
46419          }
46420        },
46421        "schemes": [
46422          "https"
46423        ],
46424        "tags": [
46425          "apiregistration_v1beta1"
46426        ],
46427        "x-kubernetes-action": "put",
46428        "x-kubernetes-group-version-kind": {
46429          "group": "apiregistration.k8s.io",
46430          "kind": "APIService",
46431          "version": "v1beta1"
46432        }
46433      }
46434    },
46435    "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status": {
46436      "get": {
46437        "consumes": [
46438          "*/*"
46439        ],
46440        "description": "read status of the specified APIService",
46441        "operationId": "readApiregistrationV1beta1APIServiceStatus",
46442        "produces": [
46443          "application/json",
46444          "application/yaml",
46445          "application/vnd.kubernetes.protobuf"
46446        ],
46447        "responses": {
46448          "200": {
46449            "description": "OK",
46450            "schema": {
46451              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46452            }
46453          },
46454          "401": {
46455            "description": "Unauthorized"
46456          }
46457        },
46458        "schemes": [
46459          "https"
46460        ],
46461        "tags": [
46462          "apiregistration_v1beta1"
46463        ],
46464        "x-kubernetes-action": "get",
46465        "x-kubernetes-group-version-kind": {
46466          "group": "apiregistration.k8s.io",
46467          "kind": "APIService",
46468          "version": "v1beta1"
46469        }
46470      },
46471      "parameters": [
46472        {
46473          "description": "name of the APIService",
46474          "in": "path",
46475          "name": "name",
46476          "required": true,
46477          "type": "string",
46478          "uniqueItems": true
46479        },
46480        {
46481          "description": "If 'true', then the output is pretty printed.",
46482          "in": "query",
46483          "name": "pretty",
46484          "type": "string",
46485          "uniqueItems": true
46486        }
46487      ],
46488      "patch": {
46489        "consumes": [
46490          "application/json-patch+json",
46491          "application/merge-patch+json",
46492          "application/strategic-merge-patch+json",
46493          "application/apply-patch+yaml"
46494        ],
46495        "description": "partially update status of the specified APIService",
46496        "operationId": "patchApiregistrationV1beta1APIServiceStatus",
46497        "parameters": [
46498          {
46499            "in": "body",
46500            "name": "body",
46501            "required": true,
46502            "schema": {
46503              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
46504            }
46505          },
46506          {
46507            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46508            "in": "query",
46509            "name": "dryRun",
46510            "type": "string",
46511            "uniqueItems": true
46512          },
46513          {
46514            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
46515            "in": "query",
46516            "name": "fieldManager",
46517            "type": "string",
46518            "uniqueItems": true
46519          },
46520          {
46521            "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.",
46522            "in": "query",
46523            "name": "force",
46524            "type": "boolean",
46525            "uniqueItems": true
46526          }
46527        ],
46528        "produces": [
46529          "application/json",
46530          "application/yaml",
46531          "application/vnd.kubernetes.protobuf"
46532        ],
46533        "responses": {
46534          "200": {
46535            "description": "OK",
46536            "schema": {
46537              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46538            }
46539          },
46540          "401": {
46541            "description": "Unauthorized"
46542          }
46543        },
46544        "schemes": [
46545          "https"
46546        ],
46547        "tags": [
46548          "apiregistration_v1beta1"
46549        ],
46550        "x-kubernetes-action": "patch",
46551        "x-kubernetes-group-version-kind": {
46552          "group": "apiregistration.k8s.io",
46553          "kind": "APIService",
46554          "version": "v1beta1"
46555        }
46556      },
46557      "put": {
46558        "consumes": [
46559          "*/*"
46560        ],
46561        "description": "replace status of the specified APIService",
46562        "operationId": "replaceApiregistrationV1beta1APIServiceStatus",
46563        "parameters": [
46564          {
46565            "in": "body",
46566            "name": "body",
46567            "required": true,
46568            "schema": {
46569              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46570            }
46571          },
46572          {
46573            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46574            "in": "query",
46575            "name": "dryRun",
46576            "type": "string",
46577            "uniqueItems": true
46578          },
46579          {
46580            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46581            "in": "query",
46582            "name": "fieldManager",
46583            "type": "string",
46584            "uniqueItems": true
46585          }
46586        ],
46587        "produces": [
46588          "application/json",
46589          "application/yaml",
46590          "application/vnd.kubernetes.protobuf"
46591        ],
46592        "responses": {
46593          "200": {
46594            "description": "OK",
46595            "schema": {
46596              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46597            }
46598          },
46599          "201": {
46600            "description": "Created",
46601            "schema": {
46602              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46603            }
46604          },
46605          "401": {
46606            "description": "Unauthorized"
46607          }
46608        },
46609        "schemes": [
46610          "https"
46611        ],
46612        "tags": [
46613          "apiregistration_v1beta1"
46614        ],
46615        "x-kubernetes-action": "put",
46616        "x-kubernetes-group-version-kind": {
46617          "group": "apiregistration.k8s.io",
46618          "kind": "APIService",
46619          "version": "v1beta1"
46620        }
46621      }
46622    },
46623    "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices": {
46624      "get": {
46625        "consumes": [
46626          "*/*"
46627        ],
46628        "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.",
46629        "operationId": "watchApiregistrationV1beta1APIServiceList",
46630        "produces": [
46631          "application/json",
46632          "application/yaml",
46633          "application/vnd.kubernetes.protobuf",
46634          "application/json;stream=watch",
46635          "application/vnd.kubernetes.protobuf;stream=watch"
46636        ],
46637        "responses": {
46638          "200": {
46639            "description": "OK",
46640            "schema": {
46641              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46642            }
46643          },
46644          "401": {
46645            "description": "Unauthorized"
46646          }
46647        },
46648        "schemes": [
46649          "https"
46650        ],
46651        "tags": [
46652          "apiregistration_v1beta1"
46653        ],
46654        "x-kubernetes-action": "watchlist",
46655        "x-kubernetes-group-version-kind": {
46656          "group": "apiregistration.k8s.io",
46657          "kind": "APIService",
46658          "version": "v1beta1"
46659        }
46660      },
46661      "parameters": [
46662        {
46663          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
46664          "in": "query",
46665          "name": "allowWatchBookmarks",
46666          "type": "boolean",
46667          "uniqueItems": true
46668        },
46669        {
46670          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46671          "in": "query",
46672          "name": "continue",
46673          "type": "string",
46674          "uniqueItems": true
46675        },
46676        {
46677          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46678          "in": "query",
46679          "name": "fieldSelector",
46680          "type": "string",
46681          "uniqueItems": true
46682        },
46683        {
46684          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46685          "in": "query",
46686          "name": "labelSelector",
46687          "type": "string",
46688          "uniqueItems": true
46689        },
46690        {
46691          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46692          "in": "query",
46693          "name": "limit",
46694          "type": "integer",
46695          "uniqueItems": true
46696        },
46697        {
46698          "description": "If 'true', then the output is pretty printed.",
46699          "in": "query",
46700          "name": "pretty",
46701          "type": "string",
46702          "uniqueItems": true
46703        },
46704        {
46705          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46706          "in": "query",
46707          "name": "resourceVersion",
46708          "type": "string",
46709          "uniqueItems": true
46710        },
46711        {
46712          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46713          "in": "query",
46714          "name": "resourceVersionMatch",
46715          "type": "string",
46716          "uniqueItems": true
46717        },
46718        {
46719          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46720          "in": "query",
46721          "name": "timeoutSeconds",
46722          "type": "integer",
46723          "uniqueItems": true
46724        },
46725        {
46726          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46727          "in": "query",
46728          "name": "watch",
46729          "type": "boolean",
46730          "uniqueItems": true
46731        }
46732      ]
46733    },
46734    "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/{name}": {
46735      "get": {
46736        "consumes": [
46737          "*/*"
46738        ],
46739        "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.",
46740        "operationId": "watchApiregistrationV1beta1APIService",
46741        "produces": [
46742          "application/json",
46743          "application/yaml",
46744          "application/vnd.kubernetes.protobuf",
46745          "application/json;stream=watch",
46746          "application/vnd.kubernetes.protobuf;stream=watch"
46747        ],
46748        "responses": {
46749          "200": {
46750            "description": "OK",
46751            "schema": {
46752              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46753            }
46754          },
46755          "401": {
46756            "description": "Unauthorized"
46757          }
46758        },
46759        "schemes": [
46760          "https"
46761        ],
46762        "tags": [
46763          "apiregistration_v1beta1"
46764        ],
46765        "x-kubernetes-action": "watch",
46766        "x-kubernetes-group-version-kind": {
46767          "group": "apiregistration.k8s.io",
46768          "kind": "APIService",
46769          "version": "v1beta1"
46770        }
46771      },
46772      "parameters": [
46773        {
46774          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
46775          "in": "query",
46776          "name": "allowWatchBookmarks",
46777          "type": "boolean",
46778          "uniqueItems": true
46779        },
46780        {
46781          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46782          "in": "query",
46783          "name": "continue",
46784          "type": "string",
46785          "uniqueItems": true
46786        },
46787        {
46788          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46789          "in": "query",
46790          "name": "fieldSelector",
46791          "type": "string",
46792          "uniqueItems": true
46793        },
46794        {
46795          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46796          "in": "query",
46797          "name": "labelSelector",
46798          "type": "string",
46799          "uniqueItems": true
46800        },
46801        {
46802          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46803          "in": "query",
46804          "name": "limit",
46805          "type": "integer",
46806          "uniqueItems": true
46807        },
46808        {
46809          "description": "name of the APIService",
46810          "in": "path",
46811          "name": "name",
46812          "required": true,
46813          "type": "string",
46814          "uniqueItems": true
46815        },
46816        {
46817          "description": "If 'true', then the output is pretty printed.",
46818          "in": "query",
46819          "name": "pretty",
46820          "type": "string",
46821          "uniqueItems": true
46822        },
46823        {
46824          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46825          "in": "query",
46826          "name": "resourceVersion",
46827          "type": "string",
46828          "uniqueItems": true
46829        },
46830        {
46831          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46832          "in": "query",
46833          "name": "resourceVersionMatch",
46834          "type": "string",
46835          "uniqueItems": true
46836        },
46837        {
46838          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46839          "in": "query",
46840          "name": "timeoutSeconds",
46841          "type": "integer",
46842          "uniqueItems": true
46843        },
46844        {
46845          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46846          "in": "query",
46847          "name": "watch",
46848          "type": "boolean",
46849          "uniqueItems": true
46850        }
46851      ]
46852    },
46853    "/apis/apps/": {
46854      "get": {
46855        "consumes": [
46856          "application/json",
46857          "application/yaml",
46858          "application/vnd.kubernetes.protobuf"
46859        ],
46860        "description": "get information of a group",
46861        "operationId": "getAppsAPIGroup",
46862        "produces": [
46863          "application/json",
46864          "application/yaml",
46865          "application/vnd.kubernetes.protobuf"
46866        ],
46867        "responses": {
46868          "200": {
46869            "description": "OK",
46870            "schema": {
46871              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
46872            }
46873          },
46874          "401": {
46875            "description": "Unauthorized"
46876          }
46877        },
46878        "schemes": [
46879          "https"
46880        ],
46881        "tags": [
46882          "apps"
46883        ]
46884      }
46885    },
46886    "/apis/apps/v1/": {
46887      "get": {
46888        "consumes": [
46889          "application/json",
46890          "application/yaml",
46891          "application/vnd.kubernetes.protobuf"
46892        ],
46893        "description": "get available resources",
46894        "operationId": "getAppsV1APIResources",
46895        "produces": [
46896          "application/json",
46897          "application/yaml",
46898          "application/vnd.kubernetes.protobuf"
46899        ],
46900        "responses": {
46901          "200": {
46902            "description": "OK",
46903            "schema": {
46904              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
46905            }
46906          },
46907          "401": {
46908            "description": "Unauthorized"
46909          }
46910        },
46911        "schemes": [
46912          "https"
46913        ],
46914        "tags": [
46915          "apps_v1"
46916        ]
46917      }
46918    },
46919    "/apis/apps/v1/controllerrevisions": {
46920      "get": {
46921        "consumes": [
46922          "*/*"
46923        ],
46924        "description": "list or watch objects of kind ControllerRevision",
46925        "operationId": "listAppsV1ControllerRevisionForAllNamespaces",
46926        "produces": [
46927          "application/json",
46928          "application/yaml",
46929          "application/vnd.kubernetes.protobuf",
46930          "application/json;stream=watch",
46931          "application/vnd.kubernetes.protobuf;stream=watch"
46932        ],
46933        "responses": {
46934          "200": {
46935            "description": "OK",
46936            "schema": {
46937              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
46938            }
46939          },
46940          "401": {
46941            "description": "Unauthorized"
46942          }
46943        },
46944        "schemes": [
46945          "https"
46946        ],
46947        "tags": [
46948          "apps_v1"
46949        ],
46950        "x-kubernetes-action": "list",
46951        "x-kubernetes-group-version-kind": {
46952          "group": "apps",
46953          "kind": "ControllerRevision",
46954          "version": "v1"
46955        }
46956      },
46957      "parameters": [
46958        {
46959          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
46960          "in": "query",
46961          "name": "allowWatchBookmarks",
46962          "type": "boolean",
46963          "uniqueItems": true
46964        },
46965        {
46966          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46967          "in": "query",
46968          "name": "continue",
46969          "type": "string",
46970          "uniqueItems": true
46971        },
46972        {
46973          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46974          "in": "query",
46975          "name": "fieldSelector",
46976          "type": "string",
46977          "uniqueItems": true
46978        },
46979        {
46980          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46981          "in": "query",
46982          "name": "labelSelector",
46983          "type": "string",
46984          "uniqueItems": true
46985        },
46986        {
46987          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46988          "in": "query",
46989          "name": "limit",
46990          "type": "integer",
46991          "uniqueItems": true
46992        },
46993        {
46994          "description": "If 'true', then the output is pretty printed.",
46995          "in": "query",
46996          "name": "pretty",
46997          "type": "string",
46998          "uniqueItems": true
46999        },
47000        {
47001          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47002          "in": "query",
47003          "name": "resourceVersion",
47004          "type": "string",
47005          "uniqueItems": true
47006        },
47007        {
47008          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47009          "in": "query",
47010          "name": "resourceVersionMatch",
47011          "type": "string",
47012          "uniqueItems": true
47013        },
47014        {
47015          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47016          "in": "query",
47017          "name": "timeoutSeconds",
47018          "type": "integer",
47019          "uniqueItems": true
47020        },
47021        {
47022          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47023          "in": "query",
47024          "name": "watch",
47025          "type": "boolean",
47026          "uniqueItems": true
47027        }
47028      ]
47029    },
47030    "/apis/apps/v1/daemonsets": {
47031      "get": {
47032        "consumes": [
47033          "*/*"
47034        ],
47035        "description": "list or watch objects of kind DaemonSet",
47036        "operationId": "listAppsV1DaemonSetForAllNamespaces",
47037        "produces": [
47038          "application/json",
47039          "application/yaml",
47040          "application/vnd.kubernetes.protobuf",
47041          "application/json;stream=watch",
47042          "application/vnd.kubernetes.protobuf;stream=watch"
47043        ],
47044        "responses": {
47045          "200": {
47046            "description": "OK",
47047            "schema": {
47048              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
47049            }
47050          },
47051          "401": {
47052            "description": "Unauthorized"
47053          }
47054        },
47055        "schemes": [
47056          "https"
47057        ],
47058        "tags": [
47059          "apps_v1"
47060        ],
47061        "x-kubernetes-action": "list",
47062        "x-kubernetes-group-version-kind": {
47063          "group": "apps",
47064          "kind": "DaemonSet",
47065          "version": "v1"
47066        }
47067      },
47068      "parameters": [
47069        {
47070          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47071          "in": "query",
47072          "name": "allowWatchBookmarks",
47073          "type": "boolean",
47074          "uniqueItems": true
47075        },
47076        {
47077          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47078          "in": "query",
47079          "name": "continue",
47080          "type": "string",
47081          "uniqueItems": true
47082        },
47083        {
47084          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47085          "in": "query",
47086          "name": "fieldSelector",
47087          "type": "string",
47088          "uniqueItems": true
47089        },
47090        {
47091          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47092          "in": "query",
47093          "name": "labelSelector",
47094          "type": "string",
47095          "uniqueItems": true
47096        },
47097        {
47098          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47099          "in": "query",
47100          "name": "limit",
47101          "type": "integer",
47102          "uniqueItems": true
47103        },
47104        {
47105          "description": "If 'true', then the output is pretty printed.",
47106          "in": "query",
47107          "name": "pretty",
47108          "type": "string",
47109          "uniqueItems": true
47110        },
47111        {
47112          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47113          "in": "query",
47114          "name": "resourceVersion",
47115          "type": "string",
47116          "uniqueItems": true
47117        },
47118        {
47119          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47120          "in": "query",
47121          "name": "resourceVersionMatch",
47122          "type": "string",
47123          "uniqueItems": true
47124        },
47125        {
47126          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47127          "in": "query",
47128          "name": "timeoutSeconds",
47129          "type": "integer",
47130          "uniqueItems": true
47131        },
47132        {
47133          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47134          "in": "query",
47135          "name": "watch",
47136          "type": "boolean",
47137          "uniqueItems": true
47138        }
47139      ]
47140    },
47141    "/apis/apps/v1/deployments": {
47142      "get": {
47143        "consumes": [
47144          "*/*"
47145        ],
47146        "description": "list or watch objects of kind Deployment",
47147        "operationId": "listAppsV1DeploymentForAllNamespaces",
47148        "produces": [
47149          "application/json",
47150          "application/yaml",
47151          "application/vnd.kubernetes.protobuf",
47152          "application/json;stream=watch",
47153          "application/vnd.kubernetes.protobuf;stream=watch"
47154        ],
47155        "responses": {
47156          "200": {
47157            "description": "OK",
47158            "schema": {
47159              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
47160            }
47161          },
47162          "401": {
47163            "description": "Unauthorized"
47164          }
47165        },
47166        "schemes": [
47167          "https"
47168        ],
47169        "tags": [
47170          "apps_v1"
47171        ],
47172        "x-kubernetes-action": "list",
47173        "x-kubernetes-group-version-kind": {
47174          "group": "apps",
47175          "kind": "Deployment",
47176          "version": "v1"
47177        }
47178      },
47179      "parameters": [
47180        {
47181          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47182          "in": "query",
47183          "name": "allowWatchBookmarks",
47184          "type": "boolean",
47185          "uniqueItems": true
47186        },
47187        {
47188          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47189          "in": "query",
47190          "name": "continue",
47191          "type": "string",
47192          "uniqueItems": true
47193        },
47194        {
47195          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47196          "in": "query",
47197          "name": "fieldSelector",
47198          "type": "string",
47199          "uniqueItems": true
47200        },
47201        {
47202          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47203          "in": "query",
47204          "name": "labelSelector",
47205          "type": "string",
47206          "uniqueItems": true
47207        },
47208        {
47209          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47210          "in": "query",
47211          "name": "limit",
47212          "type": "integer",
47213          "uniqueItems": true
47214        },
47215        {
47216          "description": "If 'true', then the output is pretty printed.",
47217          "in": "query",
47218          "name": "pretty",
47219          "type": "string",
47220          "uniqueItems": true
47221        },
47222        {
47223          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47224          "in": "query",
47225          "name": "resourceVersion",
47226          "type": "string",
47227          "uniqueItems": true
47228        },
47229        {
47230          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47231          "in": "query",
47232          "name": "resourceVersionMatch",
47233          "type": "string",
47234          "uniqueItems": true
47235        },
47236        {
47237          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47238          "in": "query",
47239          "name": "timeoutSeconds",
47240          "type": "integer",
47241          "uniqueItems": true
47242        },
47243        {
47244          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47245          "in": "query",
47246          "name": "watch",
47247          "type": "boolean",
47248          "uniqueItems": true
47249        }
47250      ]
47251    },
47252    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions": {
47253      "delete": {
47254        "consumes": [
47255          "*/*"
47256        ],
47257        "description": "delete collection of ControllerRevision",
47258        "operationId": "deleteAppsV1CollectionNamespacedControllerRevision",
47259        "parameters": [
47260          {
47261            "in": "body",
47262            "name": "body",
47263            "schema": {
47264              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47265            }
47266          },
47267          {
47268            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47269            "in": "query",
47270            "name": "continue",
47271            "type": "string",
47272            "uniqueItems": true
47273          },
47274          {
47275            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47276            "in": "query",
47277            "name": "dryRun",
47278            "type": "string",
47279            "uniqueItems": true
47280          },
47281          {
47282            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47283            "in": "query",
47284            "name": "fieldSelector",
47285            "type": "string",
47286            "uniqueItems": true
47287          },
47288          {
47289            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47290            "in": "query",
47291            "name": "gracePeriodSeconds",
47292            "type": "integer",
47293            "uniqueItems": true
47294          },
47295          {
47296            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47297            "in": "query",
47298            "name": "labelSelector",
47299            "type": "string",
47300            "uniqueItems": true
47301          },
47302          {
47303            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47304            "in": "query",
47305            "name": "limit",
47306            "type": "integer",
47307            "uniqueItems": true
47308          },
47309          {
47310            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47311            "in": "query",
47312            "name": "orphanDependents",
47313            "type": "boolean",
47314            "uniqueItems": true
47315          },
47316          {
47317            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47318            "in": "query",
47319            "name": "propagationPolicy",
47320            "type": "string",
47321            "uniqueItems": true
47322          },
47323          {
47324            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47325            "in": "query",
47326            "name": "resourceVersion",
47327            "type": "string",
47328            "uniqueItems": true
47329          },
47330          {
47331            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47332            "in": "query",
47333            "name": "resourceVersionMatch",
47334            "type": "string",
47335            "uniqueItems": true
47336          },
47337          {
47338            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47339            "in": "query",
47340            "name": "timeoutSeconds",
47341            "type": "integer",
47342            "uniqueItems": true
47343          }
47344        ],
47345        "produces": [
47346          "application/json",
47347          "application/yaml",
47348          "application/vnd.kubernetes.protobuf"
47349        ],
47350        "responses": {
47351          "200": {
47352            "description": "OK",
47353            "schema": {
47354              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47355            }
47356          },
47357          "401": {
47358            "description": "Unauthorized"
47359          }
47360        },
47361        "schemes": [
47362          "https"
47363        ],
47364        "tags": [
47365          "apps_v1"
47366        ],
47367        "x-kubernetes-action": "deletecollection",
47368        "x-kubernetes-group-version-kind": {
47369          "group": "apps",
47370          "kind": "ControllerRevision",
47371          "version": "v1"
47372        }
47373      },
47374      "get": {
47375        "consumes": [
47376          "*/*"
47377        ],
47378        "description": "list or watch objects of kind ControllerRevision",
47379        "operationId": "listAppsV1NamespacedControllerRevision",
47380        "parameters": [
47381          {
47382            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47383            "in": "query",
47384            "name": "allowWatchBookmarks",
47385            "type": "boolean",
47386            "uniqueItems": true
47387          },
47388          {
47389            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47390            "in": "query",
47391            "name": "continue",
47392            "type": "string",
47393            "uniqueItems": true
47394          },
47395          {
47396            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47397            "in": "query",
47398            "name": "fieldSelector",
47399            "type": "string",
47400            "uniqueItems": true
47401          },
47402          {
47403            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47404            "in": "query",
47405            "name": "labelSelector",
47406            "type": "string",
47407            "uniqueItems": true
47408          },
47409          {
47410            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47411            "in": "query",
47412            "name": "limit",
47413            "type": "integer",
47414            "uniqueItems": true
47415          },
47416          {
47417            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47418            "in": "query",
47419            "name": "resourceVersion",
47420            "type": "string",
47421            "uniqueItems": true
47422          },
47423          {
47424            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47425            "in": "query",
47426            "name": "resourceVersionMatch",
47427            "type": "string",
47428            "uniqueItems": true
47429          },
47430          {
47431            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47432            "in": "query",
47433            "name": "timeoutSeconds",
47434            "type": "integer",
47435            "uniqueItems": true
47436          },
47437          {
47438            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47439            "in": "query",
47440            "name": "watch",
47441            "type": "boolean",
47442            "uniqueItems": true
47443          }
47444        ],
47445        "produces": [
47446          "application/json",
47447          "application/yaml",
47448          "application/vnd.kubernetes.protobuf",
47449          "application/json;stream=watch",
47450          "application/vnd.kubernetes.protobuf;stream=watch"
47451        ],
47452        "responses": {
47453          "200": {
47454            "description": "OK",
47455            "schema": {
47456              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
47457            }
47458          },
47459          "401": {
47460            "description": "Unauthorized"
47461          }
47462        },
47463        "schemes": [
47464          "https"
47465        ],
47466        "tags": [
47467          "apps_v1"
47468        ],
47469        "x-kubernetes-action": "list",
47470        "x-kubernetes-group-version-kind": {
47471          "group": "apps",
47472          "kind": "ControllerRevision",
47473          "version": "v1"
47474        }
47475      },
47476      "parameters": [
47477        {
47478          "description": "object name and auth scope, such as for teams and projects",
47479          "in": "path",
47480          "name": "namespace",
47481          "required": true,
47482          "type": "string",
47483          "uniqueItems": true
47484        },
47485        {
47486          "description": "If 'true', then the output is pretty printed.",
47487          "in": "query",
47488          "name": "pretty",
47489          "type": "string",
47490          "uniqueItems": true
47491        }
47492      ],
47493      "post": {
47494        "consumes": [
47495          "*/*"
47496        ],
47497        "description": "create a ControllerRevision",
47498        "operationId": "createAppsV1NamespacedControllerRevision",
47499        "parameters": [
47500          {
47501            "in": "body",
47502            "name": "body",
47503            "required": true,
47504            "schema": {
47505              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47506            }
47507          },
47508          {
47509            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47510            "in": "query",
47511            "name": "dryRun",
47512            "type": "string",
47513            "uniqueItems": true
47514          },
47515          {
47516            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47517            "in": "query",
47518            "name": "fieldManager",
47519            "type": "string",
47520            "uniqueItems": true
47521          }
47522        ],
47523        "produces": [
47524          "application/json",
47525          "application/yaml",
47526          "application/vnd.kubernetes.protobuf"
47527        ],
47528        "responses": {
47529          "200": {
47530            "description": "OK",
47531            "schema": {
47532              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47533            }
47534          },
47535          "201": {
47536            "description": "Created",
47537            "schema": {
47538              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47539            }
47540          },
47541          "202": {
47542            "description": "Accepted",
47543            "schema": {
47544              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47545            }
47546          },
47547          "401": {
47548            "description": "Unauthorized"
47549          }
47550        },
47551        "schemes": [
47552          "https"
47553        ],
47554        "tags": [
47555          "apps_v1"
47556        ],
47557        "x-kubernetes-action": "post",
47558        "x-kubernetes-group-version-kind": {
47559          "group": "apps",
47560          "kind": "ControllerRevision",
47561          "version": "v1"
47562        }
47563      }
47564    },
47565    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": {
47566      "delete": {
47567        "consumes": [
47568          "*/*"
47569        ],
47570        "description": "delete a ControllerRevision",
47571        "operationId": "deleteAppsV1NamespacedControllerRevision",
47572        "parameters": [
47573          {
47574            "in": "body",
47575            "name": "body",
47576            "schema": {
47577              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47578            }
47579          },
47580          {
47581            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47582            "in": "query",
47583            "name": "dryRun",
47584            "type": "string",
47585            "uniqueItems": true
47586          },
47587          {
47588            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47589            "in": "query",
47590            "name": "gracePeriodSeconds",
47591            "type": "integer",
47592            "uniqueItems": true
47593          },
47594          {
47595            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47596            "in": "query",
47597            "name": "orphanDependents",
47598            "type": "boolean",
47599            "uniqueItems": true
47600          },
47601          {
47602            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47603            "in": "query",
47604            "name": "propagationPolicy",
47605            "type": "string",
47606            "uniqueItems": true
47607          }
47608        ],
47609        "produces": [
47610          "application/json",
47611          "application/yaml",
47612          "application/vnd.kubernetes.protobuf"
47613        ],
47614        "responses": {
47615          "200": {
47616            "description": "OK",
47617            "schema": {
47618              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47619            }
47620          },
47621          "202": {
47622            "description": "Accepted",
47623            "schema": {
47624              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47625            }
47626          },
47627          "401": {
47628            "description": "Unauthorized"
47629          }
47630        },
47631        "schemes": [
47632          "https"
47633        ],
47634        "tags": [
47635          "apps_v1"
47636        ],
47637        "x-kubernetes-action": "delete",
47638        "x-kubernetes-group-version-kind": {
47639          "group": "apps",
47640          "kind": "ControllerRevision",
47641          "version": "v1"
47642        }
47643      },
47644      "get": {
47645        "consumes": [
47646          "*/*"
47647        ],
47648        "description": "read the specified ControllerRevision",
47649        "operationId": "readAppsV1NamespacedControllerRevision",
47650        "produces": [
47651          "application/json",
47652          "application/yaml",
47653          "application/vnd.kubernetes.protobuf"
47654        ],
47655        "responses": {
47656          "200": {
47657            "description": "OK",
47658            "schema": {
47659              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47660            }
47661          },
47662          "401": {
47663            "description": "Unauthorized"
47664          }
47665        },
47666        "schemes": [
47667          "https"
47668        ],
47669        "tags": [
47670          "apps_v1"
47671        ],
47672        "x-kubernetes-action": "get",
47673        "x-kubernetes-group-version-kind": {
47674          "group": "apps",
47675          "kind": "ControllerRevision",
47676          "version": "v1"
47677        }
47678      },
47679      "parameters": [
47680        {
47681          "description": "name of the ControllerRevision",
47682          "in": "path",
47683          "name": "name",
47684          "required": true,
47685          "type": "string",
47686          "uniqueItems": true
47687        },
47688        {
47689          "description": "object name and auth scope, such as for teams and projects",
47690          "in": "path",
47691          "name": "namespace",
47692          "required": true,
47693          "type": "string",
47694          "uniqueItems": true
47695        },
47696        {
47697          "description": "If 'true', then the output is pretty printed.",
47698          "in": "query",
47699          "name": "pretty",
47700          "type": "string",
47701          "uniqueItems": true
47702        }
47703      ],
47704      "patch": {
47705        "consumes": [
47706          "application/json-patch+json",
47707          "application/merge-patch+json",
47708          "application/strategic-merge-patch+json",
47709          "application/apply-patch+yaml"
47710        ],
47711        "description": "partially update the specified ControllerRevision",
47712        "operationId": "patchAppsV1NamespacedControllerRevision",
47713        "parameters": [
47714          {
47715            "in": "body",
47716            "name": "body",
47717            "required": true,
47718            "schema": {
47719              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
47720            }
47721          },
47722          {
47723            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47724            "in": "query",
47725            "name": "dryRun",
47726            "type": "string",
47727            "uniqueItems": true
47728          },
47729          {
47730            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
47731            "in": "query",
47732            "name": "fieldManager",
47733            "type": "string",
47734            "uniqueItems": true
47735          },
47736          {
47737            "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.",
47738            "in": "query",
47739            "name": "force",
47740            "type": "boolean",
47741            "uniqueItems": true
47742          }
47743        ],
47744        "produces": [
47745          "application/json",
47746          "application/yaml",
47747          "application/vnd.kubernetes.protobuf"
47748        ],
47749        "responses": {
47750          "200": {
47751            "description": "OK",
47752            "schema": {
47753              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47754            }
47755          },
47756          "401": {
47757            "description": "Unauthorized"
47758          }
47759        },
47760        "schemes": [
47761          "https"
47762        ],
47763        "tags": [
47764          "apps_v1"
47765        ],
47766        "x-kubernetes-action": "patch",
47767        "x-kubernetes-group-version-kind": {
47768          "group": "apps",
47769          "kind": "ControllerRevision",
47770          "version": "v1"
47771        }
47772      },
47773      "put": {
47774        "consumes": [
47775          "*/*"
47776        ],
47777        "description": "replace the specified ControllerRevision",
47778        "operationId": "replaceAppsV1NamespacedControllerRevision",
47779        "parameters": [
47780          {
47781            "in": "body",
47782            "name": "body",
47783            "required": true,
47784            "schema": {
47785              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47786            }
47787          },
47788          {
47789            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47790            "in": "query",
47791            "name": "dryRun",
47792            "type": "string",
47793            "uniqueItems": true
47794          },
47795          {
47796            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47797            "in": "query",
47798            "name": "fieldManager",
47799            "type": "string",
47800            "uniqueItems": true
47801          }
47802        ],
47803        "produces": [
47804          "application/json",
47805          "application/yaml",
47806          "application/vnd.kubernetes.protobuf"
47807        ],
47808        "responses": {
47809          "200": {
47810            "description": "OK",
47811            "schema": {
47812              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47813            }
47814          },
47815          "201": {
47816            "description": "Created",
47817            "schema": {
47818              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47819            }
47820          },
47821          "401": {
47822            "description": "Unauthorized"
47823          }
47824        },
47825        "schemes": [
47826          "https"
47827        ],
47828        "tags": [
47829          "apps_v1"
47830        ],
47831        "x-kubernetes-action": "put",
47832        "x-kubernetes-group-version-kind": {
47833          "group": "apps",
47834          "kind": "ControllerRevision",
47835          "version": "v1"
47836        }
47837      }
47838    },
47839    "/apis/apps/v1/namespaces/{namespace}/daemonsets": {
47840      "delete": {
47841        "consumes": [
47842          "*/*"
47843        ],
47844        "description": "delete collection of DaemonSet",
47845        "operationId": "deleteAppsV1CollectionNamespacedDaemonSet",
47846        "parameters": [
47847          {
47848            "in": "body",
47849            "name": "body",
47850            "schema": {
47851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47852            }
47853          },
47854          {
47855            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47856            "in": "query",
47857            "name": "continue",
47858            "type": "string",
47859            "uniqueItems": true
47860          },
47861          {
47862            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47863            "in": "query",
47864            "name": "dryRun",
47865            "type": "string",
47866            "uniqueItems": true
47867          },
47868          {
47869            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47870            "in": "query",
47871            "name": "fieldSelector",
47872            "type": "string",
47873            "uniqueItems": true
47874          },
47875          {
47876            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47877            "in": "query",
47878            "name": "gracePeriodSeconds",
47879            "type": "integer",
47880            "uniqueItems": true
47881          },
47882          {
47883            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47884            "in": "query",
47885            "name": "labelSelector",
47886            "type": "string",
47887            "uniqueItems": true
47888          },
47889          {
47890            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47891            "in": "query",
47892            "name": "limit",
47893            "type": "integer",
47894            "uniqueItems": true
47895          },
47896          {
47897            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47898            "in": "query",
47899            "name": "orphanDependents",
47900            "type": "boolean",
47901            "uniqueItems": true
47902          },
47903          {
47904            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47905            "in": "query",
47906            "name": "propagationPolicy",
47907            "type": "string",
47908            "uniqueItems": true
47909          },
47910          {
47911            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47912            "in": "query",
47913            "name": "resourceVersion",
47914            "type": "string",
47915            "uniqueItems": true
47916          },
47917          {
47918            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47919            "in": "query",
47920            "name": "resourceVersionMatch",
47921            "type": "string",
47922            "uniqueItems": true
47923          },
47924          {
47925            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47926            "in": "query",
47927            "name": "timeoutSeconds",
47928            "type": "integer",
47929            "uniqueItems": true
47930          }
47931        ],
47932        "produces": [
47933          "application/json",
47934          "application/yaml",
47935          "application/vnd.kubernetes.protobuf"
47936        ],
47937        "responses": {
47938          "200": {
47939            "description": "OK",
47940            "schema": {
47941              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47942            }
47943          },
47944          "401": {
47945            "description": "Unauthorized"
47946          }
47947        },
47948        "schemes": [
47949          "https"
47950        ],
47951        "tags": [
47952          "apps_v1"
47953        ],
47954        "x-kubernetes-action": "deletecollection",
47955        "x-kubernetes-group-version-kind": {
47956          "group": "apps",
47957          "kind": "DaemonSet",
47958          "version": "v1"
47959        }
47960      },
47961      "get": {
47962        "consumes": [
47963          "*/*"
47964        ],
47965        "description": "list or watch objects of kind DaemonSet",
47966        "operationId": "listAppsV1NamespacedDaemonSet",
47967        "parameters": [
47968          {
47969            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47970            "in": "query",
47971            "name": "allowWatchBookmarks",
47972            "type": "boolean",
47973            "uniqueItems": true
47974          },
47975          {
47976            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47977            "in": "query",
47978            "name": "continue",
47979            "type": "string",
47980            "uniqueItems": true
47981          },
47982          {
47983            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47984            "in": "query",
47985            "name": "fieldSelector",
47986            "type": "string",
47987            "uniqueItems": true
47988          },
47989          {
47990            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47991            "in": "query",
47992            "name": "labelSelector",
47993            "type": "string",
47994            "uniqueItems": true
47995          },
47996          {
47997            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47998            "in": "query",
47999            "name": "limit",
48000            "type": "integer",
48001            "uniqueItems": true
48002          },
48003          {
48004            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48005            "in": "query",
48006            "name": "resourceVersion",
48007            "type": "string",
48008            "uniqueItems": true
48009          },
48010          {
48011            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48012            "in": "query",
48013            "name": "resourceVersionMatch",
48014            "type": "string",
48015            "uniqueItems": true
48016          },
48017          {
48018            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48019            "in": "query",
48020            "name": "timeoutSeconds",
48021            "type": "integer",
48022            "uniqueItems": true
48023          },
48024          {
48025            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48026            "in": "query",
48027            "name": "watch",
48028            "type": "boolean",
48029            "uniqueItems": true
48030          }
48031        ],
48032        "produces": [
48033          "application/json",
48034          "application/yaml",
48035          "application/vnd.kubernetes.protobuf",
48036          "application/json;stream=watch",
48037          "application/vnd.kubernetes.protobuf;stream=watch"
48038        ],
48039        "responses": {
48040          "200": {
48041            "description": "OK",
48042            "schema": {
48043              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
48044            }
48045          },
48046          "401": {
48047            "description": "Unauthorized"
48048          }
48049        },
48050        "schemes": [
48051          "https"
48052        ],
48053        "tags": [
48054          "apps_v1"
48055        ],
48056        "x-kubernetes-action": "list",
48057        "x-kubernetes-group-version-kind": {
48058          "group": "apps",
48059          "kind": "DaemonSet",
48060          "version": "v1"
48061        }
48062      },
48063      "parameters": [
48064        {
48065          "description": "object name and auth scope, such as for teams and projects",
48066          "in": "path",
48067          "name": "namespace",
48068          "required": true,
48069          "type": "string",
48070          "uniqueItems": true
48071        },
48072        {
48073          "description": "If 'true', then the output is pretty printed.",
48074          "in": "query",
48075          "name": "pretty",
48076          "type": "string",
48077          "uniqueItems": true
48078        }
48079      ],
48080      "post": {
48081        "consumes": [
48082          "*/*"
48083        ],
48084        "description": "create a DaemonSet",
48085        "operationId": "createAppsV1NamespacedDaemonSet",
48086        "parameters": [
48087          {
48088            "in": "body",
48089            "name": "body",
48090            "required": true,
48091            "schema": {
48092              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48093            }
48094          },
48095          {
48096            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48097            "in": "query",
48098            "name": "dryRun",
48099            "type": "string",
48100            "uniqueItems": true
48101          },
48102          {
48103            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48104            "in": "query",
48105            "name": "fieldManager",
48106            "type": "string",
48107            "uniqueItems": true
48108          }
48109        ],
48110        "produces": [
48111          "application/json",
48112          "application/yaml",
48113          "application/vnd.kubernetes.protobuf"
48114        ],
48115        "responses": {
48116          "200": {
48117            "description": "OK",
48118            "schema": {
48119              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48120            }
48121          },
48122          "201": {
48123            "description": "Created",
48124            "schema": {
48125              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48126            }
48127          },
48128          "202": {
48129            "description": "Accepted",
48130            "schema": {
48131              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48132            }
48133          },
48134          "401": {
48135            "description": "Unauthorized"
48136          }
48137        },
48138        "schemes": [
48139          "https"
48140        ],
48141        "tags": [
48142          "apps_v1"
48143        ],
48144        "x-kubernetes-action": "post",
48145        "x-kubernetes-group-version-kind": {
48146          "group": "apps",
48147          "kind": "DaemonSet",
48148          "version": "v1"
48149        }
48150      }
48151    },
48152    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}": {
48153      "delete": {
48154        "consumes": [
48155          "*/*"
48156        ],
48157        "description": "delete a DaemonSet",
48158        "operationId": "deleteAppsV1NamespacedDaemonSet",
48159        "parameters": [
48160          {
48161            "in": "body",
48162            "name": "body",
48163            "schema": {
48164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48165            }
48166          },
48167          {
48168            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48169            "in": "query",
48170            "name": "dryRun",
48171            "type": "string",
48172            "uniqueItems": true
48173          },
48174          {
48175            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
48176            "in": "query",
48177            "name": "gracePeriodSeconds",
48178            "type": "integer",
48179            "uniqueItems": true
48180          },
48181          {
48182            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
48183            "in": "query",
48184            "name": "orphanDependents",
48185            "type": "boolean",
48186            "uniqueItems": true
48187          },
48188          {
48189            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
48190            "in": "query",
48191            "name": "propagationPolicy",
48192            "type": "string",
48193            "uniqueItems": true
48194          }
48195        ],
48196        "produces": [
48197          "application/json",
48198          "application/yaml",
48199          "application/vnd.kubernetes.protobuf"
48200        ],
48201        "responses": {
48202          "200": {
48203            "description": "OK",
48204            "schema": {
48205              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48206            }
48207          },
48208          "202": {
48209            "description": "Accepted",
48210            "schema": {
48211              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48212            }
48213          },
48214          "401": {
48215            "description": "Unauthorized"
48216          }
48217        },
48218        "schemes": [
48219          "https"
48220        ],
48221        "tags": [
48222          "apps_v1"
48223        ],
48224        "x-kubernetes-action": "delete",
48225        "x-kubernetes-group-version-kind": {
48226          "group": "apps",
48227          "kind": "DaemonSet",
48228          "version": "v1"
48229        }
48230      },
48231      "get": {
48232        "consumes": [
48233          "*/*"
48234        ],
48235        "description": "read the specified DaemonSet",
48236        "operationId": "readAppsV1NamespacedDaemonSet",
48237        "produces": [
48238          "application/json",
48239          "application/yaml",
48240          "application/vnd.kubernetes.protobuf"
48241        ],
48242        "responses": {
48243          "200": {
48244            "description": "OK",
48245            "schema": {
48246              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48247            }
48248          },
48249          "401": {
48250            "description": "Unauthorized"
48251          }
48252        },
48253        "schemes": [
48254          "https"
48255        ],
48256        "tags": [
48257          "apps_v1"
48258        ],
48259        "x-kubernetes-action": "get",
48260        "x-kubernetes-group-version-kind": {
48261          "group": "apps",
48262          "kind": "DaemonSet",
48263          "version": "v1"
48264        }
48265      },
48266      "parameters": [
48267        {
48268          "description": "name of the DaemonSet",
48269          "in": "path",
48270          "name": "name",
48271          "required": true,
48272          "type": "string",
48273          "uniqueItems": true
48274        },
48275        {
48276          "description": "object name and auth scope, such as for teams and projects",
48277          "in": "path",
48278          "name": "namespace",
48279          "required": true,
48280          "type": "string",
48281          "uniqueItems": true
48282        },
48283        {
48284          "description": "If 'true', then the output is pretty printed.",
48285          "in": "query",
48286          "name": "pretty",
48287          "type": "string",
48288          "uniqueItems": true
48289        }
48290      ],
48291      "patch": {
48292        "consumes": [
48293          "application/json-patch+json",
48294          "application/merge-patch+json",
48295          "application/strategic-merge-patch+json",
48296          "application/apply-patch+yaml"
48297        ],
48298        "description": "partially update the specified DaemonSet",
48299        "operationId": "patchAppsV1NamespacedDaemonSet",
48300        "parameters": [
48301          {
48302            "in": "body",
48303            "name": "body",
48304            "required": true,
48305            "schema": {
48306              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48307            }
48308          },
48309          {
48310            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48311            "in": "query",
48312            "name": "dryRun",
48313            "type": "string",
48314            "uniqueItems": true
48315          },
48316          {
48317            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
48318            "in": "query",
48319            "name": "fieldManager",
48320            "type": "string",
48321            "uniqueItems": true
48322          },
48323          {
48324            "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.",
48325            "in": "query",
48326            "name": "force",
48327            "type": "boolean",
48328            "uniqueItems": true
48329          }
48330        ],
48331        "produces": [
48332          "application/json",
48333          "application/yaml",
48334          "application/vnd.kubernetes.protobuf"
48335        ],
48336        "responses": {
48337          "200": {
48338            "description": "OK",
48339            "schema": {
48340              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48341            }
48342          },
48343          "401": {
48344            "description": "Unauthorized"
48345          }
48346        },
48347        "schemes": [
48348          "https"
48349        ],
48350        "tags": [
48351          "apps_v1"
48352        ],
48353        "x-kubernetes-action": "patch",
48354        "x-kubernetes-group-version-kind": {
48355          "group": "apps",
48356          "kind": "DaemonSet",
48357          "version": "v1"
48358        }
48359      },
48360      "put": {
48361        "consumes": [
48362          "*/*"
48363        ],
48364        "description": "replace the specified DaemonSet",
48365        "operationId": "replaceAppsV1NamespacedDaemonSet",
48366        "parameters": [
48367          {
48368            "in": "body",
48369            "name": "body",
48370            "required": true,
48371            "schema": {
48372              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48373            }
48374          },
48375          {
48376            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48377            "in": "query",
48378            "name": "dryRun",
48379            "type": "string",
48380            "uniqueItems": true
48381          },
48382          {
48383            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48384            "in": "query",
48385            "name": "fieldManager",
48386            "type": "string",
48387            "uniqueItems": true
48388          }
48389        ],
48390        "produces": [
48391          "application/json",
48392          "application/yaml",
48393          "application/vnd.kubernetes.protobuf"
48394        ],
48395        "responses": {
48396          "200": {
48397            "description": "OK",
48398            "schema": {
48399              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48400            }
48401          },
48402          "201": {
48403            "description": "Created",
48404            "schema": {
48405              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48406            }
48407          },
48408          "401": {
48409            "description": "Unauthorized"
48410          }
48411        },
48412        "schemes": [
48413          "https"
48414        ],
48415        "tags": [
48416          "apps_v1"
48417        ],
48418        "x-kubernetes-action": "put",
48419        "x-kubernetes-group-version-kind": {
48420          "group": "apps",
48421          "kind": "DaemonSet",
48422          "version": "v1"
48423        }
48424      }
48425    },
48426    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status": {
48427      "get": {
48428        "consumes": [
48429          "*/*"
48430        ],
48431        "description": "read status of the specified DaemonSet",
48432        "operationId": "readAppsV1NamespacedDaemonSetStatus",
48433        "produces": [
48434          "application/json",
48435          "application/yaml",
48436          "application/vnd.kubernetes.protobuf"
48437        ],
48438        "responses": {
48439          "200": {
48440            "description": "OK",
48441            "schema": {
48442              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48443            }
48444          },
48445          "401": {
48446            "description": "Unauthorized"
48447          }
48448        },
48449        "schemes": [
48450          "https"
48451        ],
48452        "tags": [
48453          "apps_v1"
48454        ],
48455        "x-kubernetes-action": "get",
48456        "x-kubernetes-group-version-kind": {
48457          "group": "apps",
48458          "kind": "DaemonSet",
48459          "version": "v1"
48460        }
48461      },
48462      "parameters": [
48463        {
48464          "description": "name of the DaemonSet",
48465          "in": "path",
48466          "name": "name",
48467          "required": true,
48468          "type": "string",
48469          "uniqueItems": true
48470        },
48471        {
48472          "description": "object name and auth scope, such as for teams and projects",
48473          "in": "path",
48474          "name": "namespace",
48475          "required": true,
48476          "type": "string",
48477          "uniqueItems": true
48478        },
48479        {
48480          "description": "If 'true', then the output is pretty printed.",
48481          "in": "query",
48482          "name": "pretty",
48483          "type": "string",
48484          "uniqueItems": true
48485        }
48486      ],
48487      "patch": {
48488        "consumes": [
48489          "application/json-patch+json",
48490          "application/merge-patch+json",
48491          "application/strategic-merge-patch+json",
48492          "application/apply-patch+yaml"
48493        ],
48494        "description": "partially update status of the specified DaemonSet",
48495        "operationId": "patchAppsV1NamespacedDaemonSetStatus",
48496        "parameters": [
48497          {
48498            "in": "body",
48499            "name": "body",
48500            "required": true,
48501            "schema": {
48502              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48503            }
48504          },
48505          {
48506            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48507            "in": "query",
48508            "name": "dryRun",
48509            "type": "string",
48510            "uniqueItems": true
48511          },
48512          {
48513            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
48514            "in": "query",
48515            "name": "fieldManager",
48516            "type": "string",
48517            "uniqueItems": true
48518          },
48519          {
48520            "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.",
48521            "in": "query",
48522            "name": "force",
48523            "type": "boolean",
48524            "uniqueItems": true
48525          }
48526        ],
48527        "produces": [
48528          "application/json",
48529          "application/yaml",
48530          "application/vnd.kubernetes.protobuf"
48531        ],
48532        "responses": {
48533          "200": {
48534            "description": "OK",
48535            "schema": {
48536              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48537            }
48538          },
48539          "401": {
48540            "description": "Unauthorized"
48541          }
48542        },
48543        "schemes": [
48544          "https"
48545        ],
48546        "tags": [
48547          "apps_v1"
48548        ],
48549        "x-kubernetes-action": "patch",
48550        "x-kubernetes-group-version-kind": {
48551          "group": "apps",
48552          "kind": "DaemonSet",
48553          "version": "v1"
48554        }
48555      },
48556      "put": {
48557        "consumes": [
48558          "*/*"
48559        ],
48560        "description": "replace status of the specified DaemonSet",
48561        "operationId": "replaceAppsV1NamespacedDaemonSetStatus",
48562        "parameters": [
48563          {
48564            "in": "body",
48565            "name": "body",
48566            "required": true,
48567            "schema": {
48568              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48569            }
48570          },
48571          {
48572            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48573            "in": "query",
48574            "name": "dryRun",
48575            "type": "string",
48576            "uniqueItems": true
48577          },
48578          {
48579            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48580            "in": "query",
48581            "name": "fieldManager",
48582            "type": "string",
48583            "uniqueItems": true
48584          }
48585        ],
48586        "produces": [
48587          "application/json",
48588          "application/yaml",
48589          "application/vnd.kubernetes.protobuf"
48590        ],
48591        "responses": {
48592          "200": {
48593            "description": "OK",
48594            "schema": {
48595              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48596            }
48597          },
48598          "201": {
48599            "description": "Created",
48600            "schema": {
48601              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48602            }
48603          },
48604          "401": {
48605            "description": "Unauthorized"
48606          }
48607        },
48608        "schemes": [
48609          "https"
48610        ],
48611        "tags": [
48612          "apps_v1"
48613        ],
48614        "x-kubernetes-action": "put",
48615        "x-kubernetes-group-version-kind": {
48616          "group": "apps",
48617          "kind": "DaemonSet",
48618          "version": "v1"
48619        }
48620      }
48621    },
48622    "/apis/apps/v1/namespaces/{namespace}/deployments": {
48623      "delete": {
48624        "consumes": [
48625          "*/*"
48626        ],
48627        "description": "delete collection of Deployment",
48628        "operationId": "deleteAppsV1CollectionNamespacedDeployment",
48629        "parameters": [
48630          {
48631            "in": "body",
48632            "name": "body",
48633            "schema": {
48634              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48635            }
48636          },
48637          {
48638            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48639            "in": "query",
48640            "name": "continue",
48641            "type": "string",
48642            "uniqueItems": true
48643          },
48644          {
48645            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48646            "in": "query",
48647            "name": "dryRun",
48648            "type": "string",
48649            "uniqueItems": true
48650          },
48651          {
48652            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48653            "in": "query",
48654            "name": "fieldSelector",
48655            "type": "string",
48656            "uniqueItems": true
48657          },
48658          {
48659            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
48660            "in": "query",
48661            "name": "gracePeriodSeconds",
48662            "type": "integer",
48663            "uniqueItems": true
48664          },
48665          {
48666            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48667            "in": "query",
48668            "name": "labelSelector",
48669            "type": "string",
48670            "uniqueItems": true
48671          },
48672          {
48673            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48674            "in": "query",
48675            "name": "limit",
48676            "type": "integer",
48677            "uniqueItems": true
48678          },
48679          {
48680            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
48681            "in": "query",
48682            "name": "orphanDependents",
48683            "type": "boolean",
48684            "uniqueItems": true
48685          },
48686          {
48687            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
48688            "in": "query",
48689            "name": "propagationPolicy",
48690            "type": "string",
48691            "uniqueItems": true
48692          },
48693          {
48694            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48695            "in": "query",
48696            "name": "resourceVersion",
48697            "type": "string",
48698            "uniqueItems": true
48699          },
48700          {
48701            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48702            "in": "query",
48703            "name": "resourceVersionMatch",
48704            "type": "string",
48705            "uniqueItems": true
48706          },
48707          {
48708            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48709            "in": "query",
48710            "name": "timeoutSeconds",
48711            "type": "integer",
48712            "uniqueItems": true
48713          }
48714        ],
48715        "produces": [
48716          "application/json",
48717          "application/yaml",
48718          "application/vnd.kubernetes.protobuf"
48719        ],
48720        "responses": {
48721          "200": {
48722            "description": "OK",
48723            "schema": {
48724              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48725            }
48726          },
48727          "401": {
48728            "description": "Unauthorized"
48729          }
48730        },
48731        "schemes": [
48732          "https"
48733        ],
48734        "tags": [
48735          "apps_v1"
48736        ],
48737        "x-kubernetes-action": "deletecollection",
48738        "x-kubernetes-group-version-kind": {
48739          "group": "apps",
48740          "kind": "Deployment",
48741          "version": "v1"
48742        }
48743      },
48744      "get": {
48745        "consumes": [
48746          "*/*"
48747        ],
48748        "description": "list or watch objects of kind Deployment",
48749        "operationId": "listAppsV1NamespacedDeployment",
48750        "parameters": [
48751          {
48752            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
48753            "in": "query",
48754            "name": "allowWatchBookmarks",
48755            "type": "boolean",
48756            "uniqueItems": true
48757          },
48758          {
48759            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48760            "in": "query",
48761            "name": "continue",
48762            "type": "string",
48763            "uniqueItems": true
48764          },
48765          {
48766            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48767            "in": "query",
48768            "name": "fieldSelector",
48769            "type": "string",
48770            "uniqueItems": true
48771          },
48772          {
48773            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48774            "in": "query",
48775            "name": "labelSelector",
48776            "type": "string",
48777            "uniqueItems": true
48778          },
48779          {
48780            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48781            "in": "query",
48782            "name": "limit",
48783            "type": "integer",
48784            "uniqueItems": true
48785          },
48786          {
48787            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48788            "in": "query",
48789            "name": "resourceVersion",
48790            "type": "string",
48791            "uniqueItems": true
48792          },
48793          {
48794            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48795            "in": "query",
48796            "name": "resourceVersionMatch",
48797            "type": "string",
48798            "uniqueItems": true
48799          },
48800          {
48801            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48802            "in": "query",
48803            "name": "timeoutSeconds",
48804            "type": "integer",
48805            "uniqueItems": true
48806          },
48807          {
48808            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48809            "in": "query",
48810            "name": "watch",
48811            "type": "boolean",
48812            "uniqueItems": true
48813          }
48814        ],
48815        "produces": [
48816          "application/json",
48817          "application/yaml",
48818          "application/vnd.kubernetes.protobuf",
48819          "application/json;stream=watch",
48820          "application/vnd.kubernetes.protobuf;stream=watch"
48821        ],
48822        "responses": {
48823          "200": {
48824            "description": "OK",
48825            "schema": {
48826              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
48827            }
48828          },
48829          "401": {
48830            "description": "Unauthorized"
48831          }
48832        },
48833        "schemes": [
48834          "https"
48835        ],
48836        "tags": [
48837          "apps_v1"
48838        ],
48839        "x-kubernetes-action": "list",
48840        "x-kubernetes-group-version-kind": {
48841          "group": "apps",
48842          "kind": "Deployment",
48843          "version": "v1"
48844        }
48845      },
48846      "parameters": [
48847        {
48848          "description": "object name and auth scope, such as for teams and projects",
48849          "in": "path",
48850          "name": "namespace",
48851          "required": true,
48852          "type": "string",
48853          "uniqueItems": true
48854        },
48855        {
48856          "description": "If 'true', then the output is pretty printed.",
48857          "in": "query",
48858          "name": "pretty",
48859          "type": "string",
48860          "uniqueItems": true
48861        }
48862      ],
48863      "post": {
48864        "consumes": [
48865          "*/*"
48866        ],
48867        "description": "create a Deployment",
48868        "operationId": "createAppsV1NamespacedDeployment",
48869        "parameters": [
48870          {
48871            "in": "body",
48872            "name": "body",
48873            "required": true,
48874            "schema": {
48875              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48876            }
48877          },
48878          {
48879            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48880            "in": "query",
48881            "name": "dryRun",
48882            "type": "string",
48883            "uniqueItems": true
48884          },
48885          {
48886            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48887            "in": "query",
48888            "name": "fieldManager",
48889            "type": "string",
48890            "uniqueItems": true
48891          }
48892        ],
48893        "produces": [
48894          "application/json",
48895          "application/yaml",
48896          "application/vnd.kubernetes.protobuf"
48897        ],
48898        "responses": {
48899          "200": {
48900            "description": "OK",
48901            "schema": {
48902              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48903            }
48904          },
48905          "201": {
48906            "description": "Created",
48907            "schema": {
48908              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48909            }
48910          },
48911          "202": {
48912            "description": "Accepted",
48913            "schema": {
48914              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48915            }
48916          },
48917          "401": {
48918            "description": "Unauthorized"
48919          }
48920        },
48921        "schemes": [
48922          "https"
48923        ],
48924        "tags": [
48925          "apps_v1"
48926        ],
48927        "x-kubernetes-action": "post",
48928        "x-kubernetes-group-version-kind": {
48929          "group": "apps",
48930          "kind": "Deployment",
48931          "version": "v1"
48932        }
48933      }
48934    },
48935    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}": {
48936      "delete": {
48937        "consumes": [
48938          "*/*"
48939        ],
48940        "description": "delete a Deployment",
48941        "operationId": "deleteAppsV1NamespacedDeployment",
48942        "parameters": [
48943          {
48944            "in": "body",
48945            "name": "body",
48946            "schema": {
48947              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48948            }
48949          },
48950          {
48951            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48952            "in": "query",
48953            "name": "dryRun",
48954            "type": "string",
48955            "uniqueItems": true
48956          },
48957          {
48958            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
48959            "in": "query",
48960            "name": "gracePeriodSeconds",
48961            "type": "integer",
48962            "uniqueItems": true
48963          },
48964          {
48965            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
48966            "in": "query",
48967            "name": "orphanDependents",
48968            "type": "boolean",
48969            "uniqueItems": true
48970          },
48971          {
48972            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
48973            "in": "query",
48974            "name": "propagationPolicy",
48975            "type": "string",
48976            "uniqueItems": true
48977          }
48978        ],
48979        "produces": [
48980          "application/json",
48981          "application/yaml",
48982          "application/vnd.kubernetes.protobuf"
48983        ],
48984        "responses": {
48985          "200": {
48986            "description": "OK",
48987            "schema": {
48988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48989            }
48990          },
48991          "202": {
48992            "description": "Accepted",
48993            "schema": {
48994              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48995            }
48996          },
48997          "401": {
48998            "description": "Unauthorized"
48999          }
49000        },
49001        "schemes": [
49002          "https"
49003        ],
49004        "tags": [
49005          "apps_v1"
49006        ],
49007        "x-kubernetes-action": "delete",
49008        "x-kubernetes-group-version-kind": {
49009          "group": "apps",
49010          "kind": "Deployment",
49011          "version": "v1"
49012        }
49013      },
49014      "get": {
49015        "consumes": [
49016          "*/*"
49017        ],
49018        "description": "read the specified Deployment",
49019        "operationId": "readAppsV1NamespacedDeployment",
49020        "produces": [
49021          "application/json",
49022          "application/yaml",
49023          "application/vnd.kubernetes.protobuf"
49024        ],
49025        "responses": {
49026          "200": {
49027            "description": "OK",
49028            "schema": {
49029              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49030            }
49031          },
49032          "401": {
49033            "description": "Unauthorized"
49034          }
49035        },
49036        "schemes": [
49037          "https"
49038        ],
49039        "tags": [
49040          "apps_v1"
49041        ],
49042        "x-kubernetes-action": "get",
49043        "x-kubernetes-group-version-kind": {
49044          "group": "apps",
49045          "kind": "Deployment",
49046          "version": "v1"
49047        }
49048      },
49049      "parameters": [
49050        {
49051          "description": "name of the Deployment",
49052          "in": "path",
49053          "name": "name",
49054          "required": true,
49055          "type": "string",
49056          "uniqueItems": true
49057        },
49058        {
49059          "description": "object name and auth scope, such as for teams and projects",
49060          "in": "path",
49061          "name": "namespace",
49062          "required": true,
49063          "type": "string",
49064          "uniqueItems": true
49065        },
49066        {
49067          "description": "If 'true', then the output is pretty printed.",
49068          "in": "query",
49069          "name": "pretty",
49070          "type": "string",
49071          "uniqueItems": true
49072        }
49073      ],
49074      "patch": {
49075        "consumes": [
49076          "application/json-patch+json",
49077          "application/merge-patch+json",
49078          "application/strategic-merge-patch+json",
49079          "application/apply-patch+yaml"
49080        ],
49081        "description": "partially update the specified Deployment",
49082        "operationId": "patchAppsV1NamespacedDeployment",
49083        "parameters": [
49084          {
49085            "in": "body",
49086            "name": "body",
49087            "required": true,
49088            "schema": {
49089              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49090            }
49091          },
49092          {
49093            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49094            "in": "query",
49095            "name": "dryRun",
49096            "type": "string",
49097            "uniqueItems": true
49098          },
49099          {
49100            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
49101            "in": "query",
49102            "name": "fieldManager",
49103            "type": "string",
49104            "uniqueItems": true
49105          },
49106          {
49107            "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.",
49108            "in": "query",
49109            "name": "force",
49110            "type": "boolean",
49111            "uniqueItems": true
49112          }
49113        ],
49114        "produces": [
49115          "application/json",
49116          "application/yaml",
49117          "application/vnd.kubernetes.protobuf"
49118        ],
49119        "responses": {
49120          "200": {
49121            "description": "OK",
49122            "schema": {
49123              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49124            }
49125          },
49126          "401": {
49127            "description": "Unauthorized"
49128          }
49129        },
49130        "schemes": [
49131          "https"
49132        ],
49133        "tags": [
49134          "apps_v1"
49135        ],
49136        "x-kubernetes-action": "patch",
49137        "x-kubernetes-group-version-kind": {
49138          "group": "apps",
49139          "kind": "Deployment",
49140          "version": "v1"
49141        }
49142      },
49143      "put": {
49144        "consumes": [
49145          "*/*"
49146        ],
49147        "description": "replace the specified Deployment",
49148        "operationId": "replaceAppsV1NamespacedDeployment",
49149        "parameters": [
49150          {
49151            "in": "body",
49152            "name": "body",
49153            "required": true,
49154            "schema": {
49155              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49156            }
49157          },
49158          {
49159            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49160            "in": "query",
49161            "name": "dryRun",
49162            "type": "string",
49163            "uniqueItems": true
49164          },
49165          {
49166            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49167            "in": "query",
49168            "name": "fieldManager",
49169            "type": "string",
49170            "uniqueItems": true
49171          }
49172        ],
49173        "produces": [
49174          "application/json",
49175          "application/yaml",
49176          "application/vnd.kubernetes.protobuf"
49177        ],
49178        "responses": {
49179          "200": {
49180            "description": "OK",
49181            "schema": {
49182              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49183            }
49184          },
49185          "201": {
49186            "description": "Created",
49187            "schema": {
49188              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49189            }
49190          },
49191          "401": {
49192            "description": "Unauthorized"
49193          }
49194        },
49195        "schemes": [
49196          "https"
49197        ],
49198        "tags": [
49199          "apps_v1"
49200        ],
49201        "x-kubernetes-action": "put",
49202        "x-kubernetes-group-version-kind": {
49203          "group": "apps",
49204          "kind": "Deployment",
49205          "version": "v1"
49206        }
49207      }
49208    },
49209    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale": {
49210      "get": {
49211        "consumes": [
49212          "*/*"
49213        ],
49214        "description": "read scale of the specified Deployment",
49215        "operationId": "readAppsV1NamespacedDeploymentScale",
49216        "produces": [
49217          "application/json",
49218          "application/yaml",
49219          "application/vnd.kubernetes.protobuf"
49220        ],
49221        "responses": {
49222          "200": {
49223            "description": "OK",
49224            "schema": {
49225              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49226            }
49227          },
49228          "401": {
49229            "description": "Unauthorized"
49230          }
49231        },
49232        "schemes": [
49233          "https"
49234        ],
49235        "tags": [
49236          "apps_v1"
49237        ],
49238        "x-kubernetes-action": "get",
49239        "x-kubernetes-group-version-kind": {
49240          "group": "autoscaling",
49241          "kind": "Scale",
49242          "version": "v1"
49243        }
49244      },
49245      "parameters": [
49246        {
49247          "description": "name of the Scale",
49248          "in": "path",
49249          "name": "name",
49250          "required": true,
49251          "type": "string",
49252          "uniqueItems": true
49253        },
49254        {
49255          "description": "object name and auth scope, such as for teams and projects",
49256          "in": "path",
49257          "name": "namespace",
49258          "required": true,
49259          "type": "string",
49260          "uniqueItems": true
49261        },
49262        {
49263          "description": "If 'true', then the output is pretty printed.",
49264          "in": "query",
49265          "name": "pretty",
49266          "type": "string",
49267          "uniqueItems": true
49268        }
49269      ],
49270      "patch": {
49271        "consumes": [
49272          "application/json-patch+json",
49273          "application/merge-patch+json",
49274          "application/strategic-merge-patch+json",
49275          "application/apply-patch+yaml"
49276        ],
49277        "description": "partially update scale of the specified Deployment",
49278        "operationId": "patchAppsV1NamespacedDeploymentScale",
49279        "parameters": [
49280          {
49281            "in": "body",
49282            "name": "body",
49283            "required": true,
49284            "schema": {
49285              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49286            }
49287          },
49288          {
49289            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49290            "in": "query",
49291            "name": "dryRun",
49292            "type": "string",
49293            "uniqueItems": true
49294          },
49295          {
49296            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
49297            "in": "query",
49298            "name": "fieldManager",
49299            "type": "string",
49300            "uniqueItems": true
49301          },
49302          {
49303            "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.",
49304            "in": "query",
49305            "name": "force",
49306            "type": "boolean",
49307            "uniqueItems": true
49308          }
49309        ],
49310        "produces": [
49311          "application/json",
49312          "application/yaml",
49313          "application/vnd.kubernetes.protobuf"
49314        ],
49315        "responses": {
49316          "200": {
49317            "description": "OK",
49318            "schema": {
49319              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49320            }
49321          },
49322          "401": {
49323            "description": "Unauthorized"
49324          }
49325        },
49326        "schemes": [
49327          "https"
49328        ],
49329        "tags": [
49330          "apps_v1"
49331        ],
49332        "x-kubernetes-action": "patch",
49333        "x-kubernetes-group-version-kind": {
49334          "group": "autoscaling",
49335          "kind": "Scale",
49336          "version": "v1"
49337        }
49338      },
49339      "put": {
49340        "consumes": [
49341          "*/*"
49342        ],
49343        "description": "replace scale of the specified Deployment",
49344        "operationId": "replaceAppsV1NamespacedDeploymentScale",
49345        "parameters": [
49346          {
49347            "in": "body",
49348            "name": "body",
49349            "required": true,
49350            "schema": {
49351              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49352            }
49353          },
49354          {
49355            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49356            "in": "query",
49357            "name": "dryRun",
49358            "type": "string",
49359            "uniqueItems": true
49360          },
49361          {
49362            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49363            "in": "query",
49364            "name": "fieldManager",
49365            "type": "string",
49366            "uniqueItems": true
49367          }
49368        ],
49369        "produces": [
49370          "application/json",
49371          "application/yaml",
49372          "application/vnd.kubernetes.protobuf"
49373        ],
49374        "responses": {
49375          "200": {
49376            "description": "OK",
49377            "schema": {
49378              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49379            }
49380          },
49381          "201": {
49382            "description": "Created",
49383            "schema": {
49384              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49385            }
49386          },
49387          "401": {
49388            "description": "Unauthorized"
49389          }
49390        },
49391        "schemes": [
49392          "https"
49393        ],
49394        "tags": [
49395          "apps_v1"
49396        ],
49397        "x-kubernetes-action": "put",
49398        "x-kubernetes-group-version-kind": {
49399          "group": "autoscaling",
49400          "kind": "Scale",
49401          "version": "v1"
49402        }
49403      }
49404    },
49405    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status": {
49406      "get": {
49407        "consumes": [
49408          "*/*"
49409        ],
49410        "description": "read status of the specified Deployment",
49411        "operationId": "readAppsV1NamespacedDeploymentStatus",
49412        "produces": [
49413          "application/json",
49414          "application/yaml",
49415          "application/vnd.kubernetes.protobuf"
49416        ],
49417        "responses": {
49418          "200": {
49419            "description": "OK",
49420            "schema": {
49421              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49422            }
49423          },
49424          "401": {
49425            "description": "Unauthorized"
49426          }
49427        },
49428        "schemes": [
49429          "https"
49430        ],
49431        "tags": [
49432          "apps_v1"
49433        ],
49434        "x-kubernetes-action": "get",
49435        "x-kubernetes-group-version-kind": {
49436          "group": "apps",
49437          "kind": "Deployment",
49438          "version": "v1"
49439        }
49440      },
49441      "parameters": [
49442        {
49443          "description": "name of the Deployment",
49444          "in": "path",
49445          "name": "name",
49446          "required": true,
49447          "type": "string",
49448          "uniqueItems": true
49449        },
49450        {
49451          "description": "object name and auth scope, such as for teams and projects",
49452          "in": "path",
49453          "name": "namespace",
49454          "required": true,
49455          "type": "string",
49456          "uniqueItems": true
49457        },
49458        {
49459          "description": "If 'true', then the output is pretty printed.",
49460          "in": "query",
49461          "name": "pretty",
49462          "type": "string",
49463          "uniqueItems": true
49464        }
49465      ],
49466      "patch": {
49467        "consumes": [
49468          "application/json-patch+json",
49469          "application/merge-patch+json",
49470          "application/strategic-merge-patch+json",
49471          "application/apply-patch+yaml"
49472        ],
49473        "description": "partially update status of the specified Deployment",
49474        "operationId": "patchAppsV1NamespacedDeploymentStatus",
49475        "parameters": [
49476          {
49477            "in": "body",
49478            "name": "body",
49479            "required": true,
49480            "schema": {
49481              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49482            }
49483          },
49484          {
49485            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49486            "in": "query",
49487            "name": "dryRun",
49488            "type": "string",
49489            "uniqueItems": true
49490          },
49491          {
49492            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
49493            "in": "query",
49494            "name": "fieldManager",
49495            "type": "string",
49496            "uniqueItems": true
49497          },
49498          {
49499            "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.",
49500            "in": "query",
49501            "name": "force",
49502            "type": "boolean",
49503            "uniqueItems": true
49504          }
49505        ],
49506        "produces": [
49507          "application/json",
49508          "application/yaml",
49509          "application/vnd.kubernetes.protobuf"
49510        ],
49511        "responses": {
49512          "200": {
49513            "description": "OK",
49514            "schema": {
49515              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49516            }
49517          },
49518          "401": {
49519            "description": "Unauthorized"
49520          }
49521        },
49522        "schemes": [
49523          "https"
49524        ],
49525        "tags": [
49526          "apps_v1"
49527        ],
49528        "x-kubernetes-action": "patch",
49529        "x-kubernetes-group-version-kind": {
49530          "group": "apps",
49531          "kind": "Deployment",
49532          "version": "v1"
49533        }
49534      },
49535      "put": {
49536        "consumes": [
49537          "*/*"
49538        ],
49539        "description": "replace status of the specified Deployment",
49540        "operationId": "replaceAppsV1NamespacedDeploymentStatus",
49541        "parameters": [
49542          {
49543            "in": "body",
49544            "name": "body",
49545            "required": true,
49546            "schema": {
49547              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49548            }
49549          },
49550          {
49551            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49552            "in": "query",
49553            "name": "dryRun",
49554            "type": "string",
49555            "uniqueItems": true
49556          },
49557          {
49558            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49559            "in": "query",
49560            "name": "fieldManager",
49561            "type": "string",
49562            "uniqueItems": true
49563          }
49564        ],
49565        "produces": [
49566          "application/json",
49567          "application/yaml",
49568          "application/vnd.kubernetes.protobuf"
49569        ],
49570        "responses": {
49571          "200": {
49572            "description": "OK",
49573            "schema": {
49574              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49575            }
49576          },
49577          "201": {
49578            "description": "Created",
49579            "schema": {
49580              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49581            }
49582          },
49583          "401": {
49584            "description": "Unauthorized"
49585          }
49586        },
49587        "schemes": [
49588          "https"
49589        ],
49590        "tags": [
49591          "apps_v1"
49592        ],
49593        "x-kubernetes-action": "put",
49594        "x-kubernetes-group-version-kind": {
49595          "group": "apps",
49596          "kind": "Deployment",
49597          "version": "v1"
49598        }
49599      }
49600    },
49601    "/apis/apps/v1/namespaces/{namespace}/replicasets": {
49602      "delete": {
49603        "consumes": [
49604          "*/*"
49605        ],
49606        "description": "delete collection of ReplicaSet",
49607        "operationId": "deleteAppsV1CollectionNamespacedReplicaSet",
49608        "parameters": [
49609          {
49610            "in": "body",
49611            "name": "body",
49612            "schema": {
49613              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
49614            }
49615          },
49616          {
49617            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49618            "in": "query",
49619            "name": "continue",
49620            "type": "string",
49621            "uniqueItems": true
49622          },
49623          {
49624            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49625            "in": "query",
49626            "name": "dryRun",
49627            "type": "string",
49628            "uniqueItems": true
49629          },
49630          {
49631            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49632            "in": "query",
49633            "name": "fieldSelector",
49634            "type": "string",
49635            "uniqueItems": true
49636          },
49637          {
49638            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
49639            "in": "query",
49640            "name": "gracePeriodSeconds",
49641            "type": "integer",
49642            "uniqueItems": true
49643          },
49644          {
49645            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49646            "in": "query",
49647            "name": "labelSelector",
49648            "type": "string",
49649            "uniqueItems": true
49650          },
49651          {
49652            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49653            "in": "query",
49654            "name": "limit",
49655            "type": "integer",
49656            "uniqueItems": true
49657          },
49658          {
49659            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
49660            "in": "query",
49661            "name": "orphanDependents",
49662            "type": "boolean",
49663            "uniqueItems": true
49664          },
49665          {
49666            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
49667            "in": "query",
49668            "name": "propagationPolicy",
49669            "type": "string",
49670            "uniqueItems": true
49671          },
49672          {
49673            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49674            "in": "query",
49675            "name": "resourceVersion",
49676            "type": "string",
49677            "uniqueItems": true
49678          },
49679          {
49680            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49681            "in": "query",
49682            "name": "resourceVersionMatch",
49683            "type": "string",
49684            "uniqueItems": true
49685          },
49686          {
49687            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49688            "in": "query",
49689            "name": "timeoutSeconds",
49690            "type": "integer",
49691            "uniqueItems": true
49692          }
49693        ],
49694        "produces": [
49695          "application/json",
49696          "application/yaml",
49697          "application/vnd.kubernetes.protobuf"
49698        ],
49699        "responses": {
49700          "200": {
49701            "description": "OK",
49702            "schema": {
49703              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49704            }
49705          },
49706          "401": {
49707            "description": "Unauthorized"
49708          }
49709        },
49710        "schemes": [
49711          "https"
49712        ],
49713        "tags": [
49714          "apps_v1"
49715        ],
49716        "x-kubernetes-action": "deletecollection",
49717        "x-kubernetes-group-version-kind": {
49718          "group": "apps",
49719          "kind": "ReplicaSet",
49720          "version": "v1"
49721        }
49722      },
49723      "get": {
49724        "consumes": [
49725          "*/*"
49726        ],
49727        "description": "list or watch objects of kind ReplicaSet",
49728        "operationId": "listAppsV1NamespacedReplicaSet",
49729        "parameters": [
49730          {
49731            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
49732            "in": "query",
49733            "name": "allowWatchBookmarks",
49734            "type": "boolean",
49735            "uniqueItems": true
49736          },
49737          {
49738            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49739            "in": "query",
49740            "name": "continue",
49741            "type": "string",
49742            "uniqueItems": true
49743          },
49744          {
49745            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49746            "in": "query",
49747            "name": "fieldSelector",
49748            "type": "string",
49749            "uniqueItems": true
49750          },
49751          {
49752            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49753            "in": "query",
49754            "name": "labelSelector",
49755            "type": "string",
49756            "uniqueItems": true
49757          },
49758          {
49759            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49760            "in": "query",
49761            "name": "limit",
49762            "type": "integer",
49763            "uniqueItems": true
49764          },
49765          {
49766            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49767            "in": "query",
49768            "name": "resourceVersion",
49769            "type": "string",
49770            "uniqueItems": true
49771          },
49772          {
49773            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49774            "in": "query",
49775            "name": "resourceVersionMatch",
49776            "type": "string",
49777            "uniqueItems": true
49778          },
49779          {
49780            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49781            "in": "query",
49782            "name": "timeoutSeconds",
49783            "type": "integer",
49784            "uniqueItems": true
49785          },
49786          {
49787            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49788            "in": "query",
49789            "name": "watch",
49790            "type": "boolean",
49791            "uniqueItems": true
49792          }
49793        ],
49794        "produces": [
49795          "application/json",
49796          "application/yaml",
49797          "application/vnd.kubernetes.protobuf",
49798          "application/json;stream=watch",
49799          "application/vnd.kubernetes.protobuf;stream=watch"
49800        ],
49801        "responses": {
49802          "200": {
49803            "description": "OK",
49804            "schema": {
49805              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
49806            }
49807          },
49808          "401": {
49809            "description": "Unauthorized"
49810          }
49811        },
49812        "schemes": [
49813          "https"
49814        ],
49815        "tags": [
49816          "apps_v1"
49817        ],
49818        "x-kubernetes-action": "list",
49819        "x-kubernetes-group-version-kind": {
49820          "group": "apps",
49821          "kind": "ReplicaSet",
49822          "version": "v1"
49823        }
49824      },
49825      "parameters": [
49826        {
49827          "description": "object name and auth scope, such as for teams and projects",
49828          "in": "path",
49829          "name": "namespace",
49830          "required": true,
49831          "type": "string",
49832          "uniqueItems": true
49833        },
49834        {
49835          "description": "If 'true', then the output is pretty printed.",
49836          "in": "query",
49837          "name": "pretty",
49838          "type": "string",
49839          "uniqueItems": true
49840        }
49841      ],
49842      "post": {
49843        "consumes": [
49844          "*/*"
49845        ],
49846        "description": "create a ReplicaSet",
49847        "operationId": "createAppsV1NamespacedReplicaSet",
49848        "parameters": [
49849          {
49850            "in": "body",
49851            "name": "body",
49852            "required": true,
49853            "schema": {
49854              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49855            }
49856          },
49857          {
49858            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49859            "in": "query",
49860            "name": "dryRun",
49861            "type": "string",
49862            "uniqueItems": true
49863          },
49864          {
49865            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49866            "in": "query",
49867            "name": "fieldManager",
49868            "type": "string",
49869            "uniqueItems": true
49870          }
49871        ],
49872        "produces": [
49873          "application/json",
49874          "application/yaml",
49875          "application/vnd.kubernetes.protobuf"
49876        ],
49877        "responses": {
49878          "200": {
49879            "description": "OK",
49880            "schema": {
49881              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49882            }
49883          },
49884          "201": {
49885            "description": "Created",
49886            "schema": {
49887              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49888            }
49889          },
49890          "202": {
49891            "description": "Accepted",
49892            "schema": {
49893              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49894            }
49895          },
49896          "401": {
49897            "description": "Unauthorized"
49898          }
49899        },
49900        "schemes": [
49901          "https"
49902        ],
49903        "tags": [
49904          "apps_v1"
49905        ],
49906        "x-kubernetes-action": "post",
49907        "x-kubernetes-group-version-kind": {
49908          "group": "apps",
49909          "kind": "ReplicaSet",
49910          "version": "v1"
49911        }
49912      }
49913    },
49914    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}": {
49915      "delete": {
49916        "consumes": [
49917          "*/*"
49918        ],
49919        "description": "delete a ReplicaSet",
49920        "operationId": "deleteAppsV1NamespacedReplicaSet",
49921        "parameters": [
49922          {
49923            "in": "body",
49924            "name": "body",
49925            "schema": {
49926              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
49927            }
49928          },
49929          {
49930            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49931            "in": "query",
49932            "name": "dryRun",
49933            "type": "string",
49934            "uniqueItems": true
49935          },
49936          {
49937            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
49938            "in": "query",
49939            "name": "gracePeriodSeconds",
49940            "type": "integer",
49941            "uniqueItems": true
49942          },
49943          {
49944            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
49945            "in": "query",
49946            "name": "orphanDependents",
49947            "type": "boolean",
49948            "uniqueItems": true
49949          },
49950          {
49951            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
49952            "in": "query",
49953            "name": "propagationPolicy",
49954            "type": "string",
49955            "uniqueItems": true
49956          }
49957        ],
49958        "produces": [
49959          "application/json",
49960          "application/yaml",
49961          "application/vnd.kubernetes.protobuf"
49962        ],
49963        "responses": {
49964          "200": {
49965            "description": "OK",
49966            "schema": {
49967              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49968            }
49969          },
49970          "202": {
49971            "description": "Accepted",
49972            "schema": {
49973              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49974            }
49975          },
49976          "401": {
49977            "description": "Unauthorized"
49978          }
49979        },
49980        "schemes": [
49981          "https"
49982        ],
49983        "tags": [
49984          "apps_v1"
49985        ],
49986        "x-kubernetes-action": "delete",
49987        "x-kubernetes-group-version-kind": {
49988          "group": "apps",
49989          "kind": "ReplicaSet",
49990          "version": "v1"
49991        }
49992      },
49993      "get": {
49994        "consumes": [
49995          "*/*"
49996        ],
49997        "description": "read the specified ReplicaSet",
49998        "operationId": "readAppsV1NamespacedReplicaSet",
49999        "produces": [
50000          "application/json",
50001          "application/yaml",
50002          "application/vnd.kubernetes.protobuf"
50003        ],
50004        "responses": {
50005          "200": {
50006            "description": "OK",
50007            "schema": {
50008              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50009            }
50010          },
50011          "401": {
50012            "description": "Unauthorized"
50013          }
50014        },
50015        "schemes": [
50016          "https"
50017        ],
50018        "tags": [
50019          "apps_v1"
50020        ],
50021        "x-kubernetes-action": "get",
50022        "x-kubernetes-group-version-kind": {
50023          "group": "apps",
50024          "kind": "ReplicaSet",
50025          "version": "v1"
50026        }
50027      },
50028      "parameters": [
50029        {
50030          "description": "name of the ReplicaSet",
50031          "in": "path",
50032          "name": "name",
50033          "required": true,
50034          "type": "string",
50035          "uniqueItems": true
50036        },
50037        {
50038          "description": "object name and auth scope, such as for teams and projects",
50039          "in": "path",
50040          "name": "namespace",
50041          "required": true,
50042          "type": "string",
50043          "uniqueItems": true
50044        },
50045        {
50046          "description": "If 'true', then the output is pretty printed.",
50047          "in": "query",
50048          "name": "pretty",
50049          "type": "string",
50050          "uniqueItems": true
50051        }
50052      ],
50053      "patch": {
50054        "consumes": [
50055          "application/json-patch+json",
50056          "application/merge-patch+json",
50057          "application/strategic-merge-patch+json",
50058          "application/apply-patch+yaml"
50059        ],
50060        "description": "partially update the specified ReplicaSet",
50061        "operationId": "patchAppsV1NamespacedReplicaSet",
50062        "parameters": [
50063          {
50064            "in": "body",
50065            "name": "body",
50066            "required": true,
50067            "schema": {
50068              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50069            }
50070          },
50071          {
50072            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50073            "in": "query",
50074            "name": "dryRun",
50075            "type": "string",
50076            "uniqueItems": true
50077          },
50078          {
50079            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
50080            "in": "query",
50081            "name": "fieldManager",
50082            "type": "string",
50083            "uniqueItems": true
50084          },
50085          {
50086            "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.",
50087            "in": "query",
50088            "name": "force",
50089            "type": "boolean",
50090            "uniqueItems": true
50091          }
50092        ],
50093        "produces": [
50094          "application/json",
50095          "application/yaml",
50096          "application/vnd.kubernetes.protobuf"
50097        ],
50098        "responses": {
50099          "200": {
50100            "description": "OK",
50101            "schema": {
50102              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50103            }
50104          },
50105          "401": {
50106            "description": "Unauthorized"
50107          }
50108        },
50109        "schemes": [
50110          "https"
50111        ],
50112        "tags": [
50113          "apps_v1"
50114        ],
50115        "x-kubernetes-action": "patch",
50116        "x-kubernetes-group-version-kind": {
50117          "group": "apps",
50118          "kind": "ReplicaSet",
50119          "version": "v1"
50120        }
50121      },
50122      "put": {
50123        "consumes": [
50124          "*/*"
50125        ],
50126        "description": "replace the specified ReplicaSet",
50127        "operationId": "replaceAppsV1NamespacedReplicaSet",
50128        "parameters": [
50129          {
50130            "in": "body",
50131            "name": "body",
50132            "required": true,
50133            "schema": {
50134              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50135            }
50136          },
50137          {
50138            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50139            "in": "query",
50140            "name": "dryRun",
50141            "type": "string",
50142            "uniqueItems": true
50143          },
50144          {
50145            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50146            "in": "query",
50147            "name": "fieldManager",
50148            "type": "string",
50149            "uniqueItems": true
50150          }
50151        ],
50152        "produces": [
50153          "application/json",
50154          "application/yaml",
50155          "application/vnd.kubernetes.protobuf"
50156        ],
50157        "responses": {
50158          "200": {
50159            "description": "OK",
50160            "schema": {
50161              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50162            }
50163          },
50164          "201": {
50165            "description": "Created",
50166            "schema": {
50167              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50168            }
50169          },
50170          "401": {
50171            "description": "Unauthorized"
50172          }
50173        },
50174        "schemes": [
50175          "https"
50176        ],
50177        "tags": [
50178          "apps_v1"
50179        ],
50180        "x-kubernetes-action": "put",
50181        "x-kubernetes-group-version-kind": {
50182          "group": "apps",
50183          "kind": "ReplicaSet",
50184          "version": "v1"
50185        }
50186      }
50187    },
50188    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale": {
50189      "get": {
50190        "consumes": [
50191          "*/*"
50192        ],
50193        "description": "read scale of the specified ReplicaSet",
50194        "operationId": "readAppsV1NamespacedReplicaSetScale",
50195        "produces": [
50196          "application/json",
50197          "application/yaml",
50198          "application/vnd.kubernetes.protobuf"
50199        ],
50200        "responses": {
50201          "200": {
50202            "description": "OK",
50203            "schema": {
50204              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50205            }
50206          },
50207          "401": {
50208            "description": "Unauthorized"
50209          }
50210        },
50211        "schemes": [
50212          "https"
50213        ],
50214        "tags": [
50215          "apps_v1"
50216        ],
50217        "x-kubernetes-action": "get",
50218        "x-kubernetes-group-version-kind": {
50219          "group": "autoscaling",
50220          "kind": "Scale",
50221          "version": "v1"
50222        }
50223      },
50224      "parameters": [
50225        {
50226          "description": "name of the Scale",
50227          "in": "path",
50228          "name": "name",
50229          "required": true,
50230          "type": "string",
50231          "uniqueItems": true
50232        },
50233        {
50234          "description": "object name and auth scope, such as for teams and projects",
50235          "in": "path",
50236          "name": "namespace",
50237          "required": true,
50238          "type": "string",
50239          "uniqueItems": true
50240        },
50241        {
50242          "description": "If 'true', then the output is pretty printed.",
50243          "in": "query",
50244          "name": "pretty",
50245          "type": "string",
50246          "uniqueItems": true
50247        }
50248      ],
50249      "patch": {
50250        "consumes": [
50251          "application/json-patch+json",
50252          "application/merge-patch+json",
50253          "application/strategic-merge-patch+json",
50254          "application/apply-patch+yaml"
50255        ],
50256        "description": "partially update scale of the specified ReplicaSet",
50257        "operationId": "patchAppsV1NamespacedReplicaSetScale",
50258        "parameters": [
50259          {
50260            "in": "body",
50261            "name": "body",
50262            "required": true,
50263            "schema": {
50264              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50265            }
50266          },
50267          {
50268            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50269            "in": "query",
50270            "name": "dryRun",
50271            "type": "string",
50272            "uniqueItems": true
50273          },
50274          {
50275            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
50276            "in": "query",
50277            "name": "fieldManager",
50278            "type": "string",
50279            "uniqueItems": true
50280          },
50281          {
50282            "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.",
50283            "in": "query",
50284            "name": "force",
50285            "type": "boolean",
50286            "uniqueItems": true
50287          }
50288        ],
50289        "produces": [
50290          "application/json",
50291          "application/yaml",
50292          "application/vnd.kubernetes.protobuf"
50293        ],
50294        "responses": {
50295          "200": {
50296            "description": "OK",
50297            "schema": {
50298              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50299            }
50300          },
50301          "401": {
50302            "description": "Unauthorized"
50303          }
50304        },
50305        "schemes": [
50306          "https"
50307        ],
50308        "tags": [
50309          "apps_v1"
50310        ],
50311        "x-kubernetes-action": "patch",
50312        "x-kubernetes-group-version-kind": {
50313          "group": "autoscaling",
50314          "kind": "Scale",
50315          "version": "v1"
50316        }
50317      },
50318      "put": {
50319        "consumes": [
50320          "*/*"
50321        ],
50322        "description": "replace scale of the specified ReplicaSet",
50323        "operationId": "replaceAppsV1NamespacedReplicaSetScale",
50324        "parameters": [
50325          {
50326            "in": "body",
50327            "name": "body",
50328            "required": true,
50329            "schema": {
50330              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50331            }
50332          },
50333          {
50334            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50335            "in": "query",
50336            "name": "dryRun",
50337            "type": "string",
50338            "uniqueItems": true
50339          },
50340          {
50341            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50342            "in": "query",
50343            "name": "fieldManager",
50344            "type": "string",
50345            "uniqueItems": true
50346          }
50347        ],
50348        "produces": [
50349          "application/json",
50350          "application/yaml",
50351          "application/vnd.kubernetes.protobuf"
50352        ],
50353        "responses": {
50354          "200": {
50355            "description": "OK",
50356            "schema": {
50357              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50358            }
50359          },
50360          "201": {
50361            "description": "Created",
50362            "schema": {
50363              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50364            }
50365          },
50366          "401": {
50367            "description": "Unauthorized"
50368          }
50369        },
50370        "schemes": [
50371          "https"
50372        ],
50373        "tags": [
50374          "apps_v1"
50375        ],
50376        "x-kubernetes-action": "put",
50377        "x-kubernetes-group-version-kind": {
50378          "group": "autoscaling",
50379          "kind": "Scale",
50380          "version": "v1"
50381        }
50382      }
50383    },
50384    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status": {
50385      "get": {
50386        "consumes": [
50387          "*/*"
50388        ],
50389        "description": "read status of the specified ReplicaSet",
50390        "operationId": "readAppsV1NamespacedReplicaSetStatus",
50391        "produces": [
50392          "application/json",
50393          "application/yaml",
50394          "application/vnd.kubernetes.protobuf"
50395        ],
50396        "responses": {
50397          "200": {
50398            "description": "OK",
50399            "schema": {
50400              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50401            }
50402          },
50403          "401": {
50404            "description": "Unauthorized"
50405          }
50406        },
50407        "schemes": [
50408          "https"
50409        ],
50410        "tags": [
50411          "apps_v1"
50412        ],
50413        "x-kubernetes-action": "get",
50414        "x-kubernetes-group-version-kind": {
50415          "group": "apps",
50416          "kind": "ReplicaSet",
50417          "version": "v1"
50418        }
50419      },
50420      "parameters": [
50421        {
50422          "description": "name of the ReplicaSet",
50423          "in": "path",
50424          "name": "name",
50425          "required": true,
50426          "type": "string",
50427          "uniqueItems": true
50428        },
50429        {
50430          "description": "object name and auth scope, such as for teams and projects",
50431          "in": "path",
50432          "name": "namespace",
50433          "required": true,
50434          "type": "string",
50435          "uniqueItems": true
50436        },
50437        {
50438          "description": "If 'true', then the output is pretty printed.",
50439          "in": "query",
50440          "name": "pretty",
50441          "type": "string",
50442          "uniqueItems": true
50443        }
50444      ],
50445      "patch": {
50446        "consumes": [
50447          "application/json-patch+json",
50448          "application/merge-patch+json",
50449          "application/strategic-merge-patch+json",
50450          "application/apply-patch+yaml"
50451        ],
50452        "description": "partially update status of the specified ReplicaSet",
50453        "operationId": "patchAppsV1NamespacedReplicaSetStatus",
50454        "parameters": [
50455          {
50456            "in": "body",
50457            "name": "body",
50458            "required": true,
50459            "schema": {
50460              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50461            }
50462          },
50463          {
50464            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50465            "in": "query",
50466            "name": "dryRun",
50467            "type": "string",
50468            "uniqueItems": true
50469          },
50470          {
50471            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
50472            "in": "query",
50473            "name": "fieldManager",
50474            "type": "string",
50475            "uniqueItems": true
50476          },
50477          {
50478            "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.",
50479            "in": "query",
50480            "name": "force",
50481            "type": "boolean",
50482            "uniqueItems": true
50483          }
50484        ],
50485        "produces": [
50486          "application/json",
50487          "application/yaml",
50488          "application/vnd.kubernetes.protobuf"
50489        ],
50490        "responses": {
50491          "200": {
50492            "description": "OK",
50493            "schema": {
50494              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50495            }
50496          },
50497          "401": {
50498            "description": "Unauthorized"
50499          }
50500        },
50501        "schemes": [
50502          "https"
50503        ],
50504        "tags": [
50505          "apps_v1"
50506        ],
50507        "x-kubernetes-action": "patch",
50508        "x-kubernetes-group-version-kind": {
50509          "group": "apps",
50510          "kind": "ReplicaSet",
50511          "version": "v1"
50512        }
50513      },
50514      "put": {
50515        "consumes": [
50516          "*/*"
50517        ],
50518        "description": "replace status of the specified ReplicaSet",
50519        "operationId": "replaceAppsV1NamespacedReplicaSetStatus",
50520        "parameters": [
50521          {
50522            "in": "body",
50523            "name": "body",
50524            "required": true,
50525            "schema": {
50526              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50527            }
50528          },
50529          {
50530            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50531            "in": "query",
50532            "name": "dryRun",
50533            "type": "string",
50534            "uniqueItems": true
50535          },
50536          {
50537            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50538            "in": "query",
50539            "name": "fieldManager",
50540            "type": "string",
50541            "uniqueItems": true
50542          }
50543        ],
50544        "produces": [
50545          "application/json",
50546          "application/yaml",
50547          "application/vnd.kubernetes.protobuf"
50548        ],
50549        "responses": {
50550          "200": {
50551            "description": "OK",
50552            "schema": {
50553              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50554            }
50555          },
50556          "201": {
50557            "description": "Created",
50558            "schema": {
50559              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50560            }
50561          },
50562          "401": {
50563            "description": "Unauthorized"
50564          }
50565        },
50566        "schemes": [
50567          "https"
50568        ],
50569        "tags": [
50570          "apps_v1"
50571        ],
50572        "x-kubernetes-action": "put",
50573        "x-kubernetes-group-version-kind": {
50574          "group": "apps",
50575          "kind": "ReplicaSet",
50576          "version": "v1"
50577        }
50578      }
50579    },
50580    "/apis/apps/v1/namespaces/{namespace}/statefulsets": {
50581      "delete": {
50582        "consumes": [
50583          "*/*"
50584        ],
50585        "description": "delete collection of StatefulSet",
50586        "operationId": "deleteAppsV1CollectionNamespacedStatefulSet",
50587        "parameters": [
50588          {
50589            "in": "body",
50590            "name": "body",
50591            "schema": {
50592              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
50593            }
50594          },
50595          {
50596            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50597            "in": "query",
50598            "name": "continue",
50599            "type": "string",
50600            "uniqueItems": true
50601          },
50602          {
50603            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50604            "in": "query",
50605            "name": "dryRun",
50606            "type": "string",
50607            "uniqueItems": true
50608          },
50609          {
50610            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50611            "in": "query",
50612            "name": "fieldSelector",
50613            "type": "string",
50614            "uniqueItems": true
50615          },
50616          {
50617            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
50618            "in": "query",
50619            "name": "gracePeriodSeconds",
50620            "type": "integer",
50621            "uniqueItems": true
50622          },
50623          {
50624            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50625            "in": "query",
50626            "name": "labelSelector",
50627            "type": "string",
50628            "uniqueItems": true
50629          },
50630          {
50631            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50632            "in": "query",
50633            "name": "limit",
50634            "type": "integer",
50635            "uniqueItems": true
50636          },
50637          {
50638            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
50639            "in": "query",
50640            "name": "orphanDependents",
50641            "type": "boolean",
50642            "uniqueItems": true
50643          },
50644          {
50645            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
50646            "in": "query",
50647            "name": "propagationPolicy",
50648            "type": "string",
50649            "uniqueItems": true
50650          },
50651          {
50652            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50653            "in": "query",
50654            "name": "resourceVersion",
50655            "type": "string",
50656            "uniqueItems": true
50657          },
50658          {
50659            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50660            "in": "query",
50661            "name": "resourceVersionMatch",
50662            "type": "string",
50663            "uniqueItems": true
50664          },
50665          {
50666            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50667            "in": "query",
50668            "name": "timeoutSeconds",
50669            "type": "integer",
50670            "uniqueItems": true
50671          }
50672        ],
50673        "produces": [
50674          "application/json",
50675          "application/yaml",
50676          "application/vnd.kubernetes.protobuf"
50677        ],
50678        "responses": {
50679          "200": {
50680            "description": "OK",
50681            "schema": {
50682              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50683            }
50684          },
50685          "401": {
50686            "description": "Unauthorized"
50687          }
50688        },
50689        "schemes": [
50690          "https"
50691        ],
50692        "tags": [
50693          "apps_v1"
50694        ],
50695        "x-kubernetes-action": "deletecollection",
50696        "x-kubernetes-group-version-kind": {
50697          "group": "apps",
50698          "kind": "StatefulSet",
50699          "version": "v1"
50700        }
50701      },
50702      "get": {
50703        "consumes": [
50704          "*/*"
50705        ],
50706        "description": "list or watch objects of kind StatefulSet",
50707        "operationId": "listAppsV1NamespacedStatefulSet",
50708        "parameters": [
50709          {
50710            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
50711            "in": "query",
50712            "name": "allowWatchBookmarks",
50713            "type": "boolean",
50714            "uniqueItems": true
50715          },
50716          {
50717            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50718            "in": "query",
50719            "name": "continue",
50720            "type": "string",
50721            "uniqueItems": true
50722          },
50723          {
50724            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50725            "in": "query",
50726            "name": "fieldSelector",
50727            "type": "string",
50728            "uniqueItems": true
50729          },
50730          {
50731            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50732            "in": "query",
50733            "name": "labelSelector",
50734            "type": "string",
50735            "uniqueItems": true
50736          },
50737          {
50738            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50739            "in": "query",
50740            "name": "limit",
50741            "type": "integer",
50742            "uniqueItems": true
50743          },
50744          {
50745            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50746            "in": "query",
50747            "name": "resourceVersion",
50748            "type": "string",
50749            "uniqueItems": true
50750          },
50751          {
50752            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50753            "in": "query",
50754            "name": "resourceVersionMatch",
50755            "type": "string",
50756            "uniqueItems": true
50757          },
50758          {
50759            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50760            "in": "query",
50761            "name": "timeoutSeconds",
50762            "type": "integer",
50763            "uniqueItems": true
50764          },
50765          {
50766            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50767            "in": "query",
50768            "name": "watch",
50769            "type": "boolean",
50770            "uniqueItems": true
50771          }
50772        ],
50773        "produces": [
50774          "application/json",
50775          "application/yaml",
50776          "application/vnd.kubernetes.protobuf",
50777          "application/json;stream=watch",
50778          "application/vnd.kubernetes.protobuf;stream=watch"
50779        ],
50780        "responses": {
50781          "200": {
50782            "description": "OK",
50783            "schema": {
50784              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
50785            }
50786          },
50787          "401": {
50788            "description": "Unauthorized"
50789          }
50790        },
50791        "schemes": [
50792          "https"
50793        ],
50794        "tags": [
50795          "apps_v1"
50796        ],
50797        "x-kubernetes-action": "list",
50798        "x-kubernetes-group-version-kind": {
50799          "group": "apps",
50800          "kind": "StatefulSet",
50801          "version": "v1"
50802        }
50803      },
50804      "parameters": [
50805        {
50806          "description": "object name and auth scope, such as for teams and projects",
50807          "in": "path",
50808          "name": "namespace",
50809          "required": true,
50810          "type": "string",
50811          "uniqueItems": true
50812        },
50813        {
50814          "description": "If 'true', then the output is pretty printed.",
50815          "in": "query",
50816          "name": "pretty",
50817          "type": "string",
50818          "uniqueItems": true
50819        }
50820      ],
50821      "post": {
50822        "consumes": [
50823          "*/*"
50824        ],
50825        "description": "create a StatefulSet",
50826        "operationId": "createAppsV1NamespacedStatefulSet",
50827        "parameters": [
50828          {
50829            "in": "body",
50830            "name": "body",
50831            "required": true,
50832            "schema": {
50833              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50834            }
50835          },
50836          {
50837            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50838            "in": "query",
50839            "name": "dryRun",
50840            "type": "string",
50841            "uniqueItems": true
50842          },
50843          {
50844            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50845            "in": "query",
50846            "name": "fieldManager",
50847            "type": "string",
50848            "uniqueItems": true
50849          }
50850        ],
50851        "produces": [
50852          "application/json",
50853          "application/yaml",
50854          "application/vnd.kubernetes.protobuf"
50855        ],
50856        "responses": {
50857          "200": {
50858            "description": "OK",
50859            "schema": {
50860              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50861            }
50862          },
50863          "201": {
50864            "description": "Created",
50865            "schema": {
50866              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50867            }
50868          },
50869          "202": {
50870            "description": "Accepted",
50871            "schema": {
50872              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50873            }
50874          },
50875          "401": {
50876            "description": "Unauthorized"
50877          }
50878        },
50879        "schemes": [
50880          "https"
50881        ],
50882        "tags": [
50883          "apps_v1"
50884        ],
50885        "x-kubernetes-action": "post",
50886        "x-kubernetes-group-version-kind": {
50887          "group": "apps",
50888          "kind": "StatefulSet",
50889          "version": "v1"
50890        }
50891      }
50892    },
50893    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}": {
50894      "delete": {
50895        "consumes": [
50896          "*/*"
50897        ],
50898        "description": "delete a StatefulSet",
50899        "operationId": "deleteAppsV1NamespacedStatefulSet",
50900        "parameters": [
50901          {
50902            "in": "body",
50903            "name": "body",
50904            "schema": {
50905              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
50906            }
50907          },
50908          {
50909            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50910            "in": "query",
50911            "name": "dryRun",
50912            "type": "string",
50913            "uniqueItems": true
50914          },
50915          {
50916            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
50917            "in": "query",
50918            "name": "gracePeriodSeconds",
50919            "type": "integer",
50920            "uniqueItems": true
50921          },
50922          {
50923            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
50924            "in": "query",
50925            "name": "orphanDependents",
50926            "type": "boolean",
50927            "uniqueItems": true
50928          },
50929          {
50930            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
50931            "in": "query",
50932            "name": "propagationPolicy",
50933            "type": "string",
50934            "uniqueItems": true
50935          }
50936        ],
50937        "produces": [
50938          "application/json",
50939          "application/yaml",
50940          "application/vnd.kubernetes.protobuf"
50941        ],
50942        "responses": {
50943          "200": {
50944            "description": "OK",
50945            "schema": {
50946              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50947            }
50948          },
50949          "202": {
50950            "description": "Accepted",
50951            "schema": {
50952              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50953            }
50954          },
50955          "401": {
50956            "description": "Unauthorized"
50957          }
50958        },
50959        "schemes": [
50960          "https"
50961        ],
50962        "tags": [
50963          "apps_v1"
50964        ],
50965        "x-kubernetes-action": "delete",
50966        "x-kubernetes-group-version-kind": {
50967          "group": "apps",
50968          "kind": "StatefulSet",
50969          "version": "v1"
50970        }
50971      },
50972      "get": {
50973        "consumes": [
50974          "*/*"
50975        ],
50976        "description": "read the specified StatefulSet",
50977        "operationId": "readAppsV1NamespacedStatefulSet",
50978        "produces": [
50979          "application/json",
50980          "application/yaml",
50981          "application/vnd.kubernetes.protobuf"
50982        ],
50983        "responses": {
50984          "200": {
50985            "description": "OK",
50986            "schema": {
50987              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50988            }
50989          },
50990          "401": {
50991            "description": "Unauthorized"
50992          }
50993        },
50994        "schemes": [
50995          "https"
50996        ],
50997        "tags": [
50998          "apps_v1"
50999        ],
51000        "x-kubernetes-action": "get",
51001        "x-kubernetes-group-version-kind": {
51002          "group": "apps",
51003          "kind": "StatefulSet",
51004          "version": "v1"
51005        }
51006      },
51007      "parameters": [
51008        {
51009          "description": "name of the StatefulSet",
51010          "in": "path",
51011          "name": "name",
51012          "required": true,
51013          "type": "string",
51014          "uniqueItems": true
51015        },
51016        {
51017          "description": "object name and auth scope, such as for teams and projects",
51018          "in": "path",
51019          "name": "namespace",
51020          "required": true,
51021          "type": "string",
51022          "uniqueItems": true
51023        },
51024        {
51025          "description": "If 'true', then the output is pretty printed.",
51026          "in": "query",
51027          "name": "pretty",
51028          "type": "string",
51029          "uniqueItems": true
51030        }
51031      ],
51032      "patch": {
51033        "consumes": [
51034          "application/json-patch+json",
51035          "application/merge-patch+json",
51036          "application/strategic-merge-patch+json",
51037          "application/apply-patch+yaml"
51038        ],
51039        "description": "partially update the specified StatefulSet",
51040        "operationId": "patchAppsV1NamespacedStatefulSet",
51041        "parameters": [
51042          {
51043            "in": "body",
51044            "name": "body",
51045            "required": true,
51046            "schema": {
51047              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
51048            }
51049          },
51050          {
51051            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51052            "in": "query",
51053            "name": "dryRun",
51054            "type": "string",
51055            "uniqueItems": true
51056          },
51057          {
51058            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
51059            "in": "query",
51060            "name": "fieldManager",
51061            "type": "string",
51062            "uniqueItems": true
51063          },
51064          {
51065            "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.",
51066            "in": "query",
51067            "name": "force",
51068            "type": "boolean",
51069            "uniqueItems": true
51070          }
51071        ],
51072        "produces": [
51073          "application/json",
51074          "application/yaml",
51075          "application/vnd.kubernetes.protobuf"
51076        ],
51077        "responses": {
51078          "200": {
51079            "description": "OK",
51080            "schema": {
51081              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51082            }
51083          },
51084          "401": {
51085            "description": "Unauthorized"
51086          }
51087        },
51088        "schemes": [
51089          "https"
51090        ],
51091        "tags": [
51092          "apps_v1"
51093        ],
51094        "x-kubernetes-action": "patch",
51095        "x-kubernetes-group-version-kind": {
51096          "group": "apps",
51097          "kind": "StatefulSet",
51098          "version": "v1"
51099        }
51100      },
51101      "put": {
51102        "consumes": [
51103          "*/*"
51104        ],
51105        "description": "replace the specified StatefulSet",
51106        "operationId": "replaceAppsV1NamespacedStatefulSet",
51107        "parameters": [
51108          {
51109            "in": "body",
51110            "name": "body",
51111            "required": true,
51112            "schema": {
51113              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51114            }
51115          },
51116          {
51117            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51118            "in": "query",
51119            "name": "dryRun",
51120            "type": "string",
51121            "uniqueItems": true
51122          },
51123          {
51124            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51125            "in": "query",
51126            "name": "fieldManager",
51127            "type": "string",
51128            "uniqueItems": true
51129          }
51130        ],
51131        "produces": [
51132          "application/json",
51133          "application/yaml",
51134          "application/vnd.kubernetes.protobuf"
51135        ],
51136        "responses": {
51137          "200": {
51138            "description": "OK",
51139            "schema": {
51140              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51141            }
51142          },
51143          "201": {
51144            "description": "Created",
51145            "schema": {
51146              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51147            }
51148          },
51149          "401": {
51150            "description": "Unauthorized"
51151          }
51152        },
51153        "schemes": [
51154          "https"
51155        ],
51156        "tags": [
51157          "apps_v1"
51158        ],
51159        "x-kubernetes-action": "put",
51160        "x-kubernetes-group-version-kind": {
51161          "group": "apps",
51162          "kind": "StatefulSet",
51163          "version": "v1"
51164        }
51165      }
51166    },
51167    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale": {
51168      "get": {
51169        "consumes": [
51170          "*/*"
51171        ],
51172        "description": "read scale of the specified StatefulSet",
51173        "operationId": "readAppsV1NamespacedStatefulSetScale",
51174        "produces": [
51175          "application/json",
51176          "application/yaml",
51177          "application/vnd.kubernetes.protobuf"
51178        ],
51179        "responses": {
51180          "200": {
51181            "description": "OK",
51182            "schema": {
51183              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51184            }
51185          },
51186          "401": {
51187            "description": "Unauthorized"
51188          }
51189        },
51190        "schemes": [
51191          "https"
51192        ],
51193        "tags": [
51194          "apps_v1"
51195        ],
51196        "x-kubernetes-action": "get",
51197        "x-kubernetes-group-version-kind": {
51198          "group": "autoscaling",
51199          "kind": "Scale",
51200          "version": "v1"
51201        }
51202      },
51203      "parameters": [
51204        {
51205          "description": "name of the Scale",
51206          "in": "path",
51207          "name": "name",
51208          "required": true,
51209          "type": "string",
51210          "uniqueItems": true
51211        },
51212        {
51213          "description": "object name and auth scope, such as for teams and projects",
51214          "in": "path",
51215          "name": "namespace",
51216          "required": true,
51217          "type": "string",
51218          "uniqueItems": true
51219        },
51220        {
51221          "description": "If 'true', then the output is pretty printed.",
51222          "in": "query",
51223          "name": "pretty",
51224          "type": "string",
51225          "uniqueItems": true
51226        }
51227      ],
51228      "patch": {
51229        "consumes": [
51230          "application/json-patch+json",
51231          "application/merge-patch+json",
51232          "application/strategic-merge-patch+json",
51233          "application/apply-patch+yaml"
51234        ],
51235        "description": "partially update scale of the specified StatefulSet",
51236        "operationId": "patchAppsV1NamespacedStatefulSetScale",
51237        "parameters": [
51238          {
51239            "in": "body",
51240            "name": "body",
51241            "required": true,
51242            "schema": {
51243              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
51244            }
51245          },
51246          {
51247            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51248            "in": "query",
51249            "name": "dryRun",
51250            "type": "string",
51251            "uniqueItems": true
51252          },
51253          {
51254            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
51255            "in": "query",
51256            "name": "fieldManager",
51257            "type": "string",
51258            "uniqueItems": true
51259          },
51260          {
51261            "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.",
51262            "in": "query",
51263            "name": "force",
51264            "type": "boolean",
51265            "uniqueItems": true
51266          }
51267        ],
51268        "produces": [
51269          "application/json",
51270          "application/yaml",
51271          "application/vnd.kubernetes.protobuf"
51272        ],
51273        "responses": {
51274          "200": {
51275            "description": "OK",
51276            "schema": {
51277              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51278            }
51279          },
51280          "401": {
51281            "description": "Unauthorized"
51282          }
51283        },
51284        "schemes": [
51285          "https"
51286        ],
51287        "tags": [
51288          "apps_v1"
51289        ],
51290        "x-kubernetes-action": "patch",
51291        "x-kubernetes-group-version-kind": {
51292          "group": "autoscaling",
51293          "kind": "Scale",
51294          "version": "v1"
51295        }
51296      },
51297      "put": {
51298        "consumes": [
51299          "*/*"
51300        ],
51301        "description": "replace scale of the specified StatefulSet",
51302        "operationId": "replaceAppsV1NamespacedStatefulSetScale",
51303        "parameters": [
51304          {
51305            "in": "body",
51306            "name": "body",
51307            "required": true,
51308            "schema": {
51309              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51310            }
51311          },
51312          {
51313            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51314            "in": "query",
51315            "name": "dryRun",
51316            "type": "string",
51317            "uniqueItems": true
51318          },
51319          {
51320            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51321            "in": "query",
51322            "name": "fieldManager",
51323            "type": "string",
51324            "uniqueItems": true
51325          }
51326        ],
51327        "produces": [
51328          "application/json",
51329          "application/yaml",
51330          "application/vnd.kubernetes.protobuf"
51331        ],
51332        "responses": {
51333          "200": {
51334            "description": "OK",
51335            "schema": {
51336              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51337            }
51338          },
51339          "201": {
51340            "description": "Created",
51341            "schema": {
51342              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51343            }
51344          },
51345          "401": {
51346            "description": "Unauthorized"
51347          }
51348        },
51349        "schemes": [
51350          "https"
51351        ],
51352        "tags": [
51353          "apps_v1"
51354        ],
51355        "x-kubernetes-action": "put",
51356        "x-kubernetes-group-version-kind": {
51357          "group": "autoscaling",
51358          "kind": "Scale",
51359          "version": "v1"
51360        }
51361      }
51362    },
51363    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status": {
51364      "get": {
51365        "consumes": [
51366          "*/*"
51367        ],
51368        "description": "read status of the specified StatefulSet",
51369        "operationId": "readAppsV1NamespacedStatefulSetStatus",
51370        "produces": [
51371          "application/json",
51372          "application/yaml",
51373          "application/vnd.kubernetes.protobuf"
51374        ],
51375        "responses": {
51376          "200": {
51377            "description": "OK",
51378            "schema": {
51379              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51380            }
51381          },
51382          "401": {
51383            "description": "Unauthorized"
51384          }
51385        },
51386        "schemes": [
51387          "https"
51388        ],
51389        "tags": [
51390          "apps_v1"
51391        ],
51392        "x-kubernetes-action": "get",
51393        "x-kubernetes-group-version-kind": {
51394          "group": "apps",
51395          "kind": "StatefulSet",
51396          "version": "v1"
51397        }
51398      },
51399      "parameters": [
51400        {
51401          "description": "name of the StatefulSet",
51402          "in": "path",
51403          "name": "name",
51404          "required": true,
51405          "type": "string",
51406          "uniqueItems": true
51407        },
51408        {
51409          "description": "object name and auth scope, such as for teams and projects",
51410          "in": "path",
51411          "name": "namespace",
51412          "required": true,
51413          "type": "string",
51414          "uniqueItems": true
51415        },
51416        {
51417          "description": "If 'true', then the output is pretty printed.",
51418          "in": "query",
51419          "name": "pretty",
51420          "type": "string",
51421          "uniqueItems": true
51422        }
51423      ],
51424      "patch": {
51425        "consumes": [
51426          "application/json-patch+json",
51427          "application/merge-patch+json",
51428          "application/strategic-merge-patch+json",
51429          "application/apply-patch+yaml"
51430        ],
51431        "description": "partially update status of the specified StatefulSet",
51432        "operationId": "patchAppsV1NamespacedStatefulSetStatus",
51433        "parameters": [
51434          {
51435            "in": "body",
51436            "name": "body",
51437            "required": true,
51438            "schema": {
51439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
51440            }
51441          },
51442          {
51443            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51444            "in": "query",
51445            "name": "dryRun",
51446            "type": "string",
51447            "uniqueItems": true
51448          },
51449          {
51450            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
51451            "in": "query",
51452            "name": "fieldManager",
51453            "type": "string",
51454            "uniqueItems": true
51455          },
51456          {
51457            "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.",
51458            "in": "query",
51459            "name": "force",
51460            "type": "boolean",
51461            "uniqueItems": true
51462          }
51463        ],
51464        "produces": [
51465          "application/json",
51466          "application/yaml",
51467          "application/vnd.kubernetes.protobuf"
51468        ],
51469        "responses": {
51470          "200": {
51471            "description": "OK",
51472            "schema": {
51473              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51474            }
51475          },
51476          "401": {
51477            "description": "Unauthorized"
51478          }
51479        },
51480        "schemes": [
51481          "https"
51482        ],
51483        "tags": [
51484          "apps_v1"
51485        ],
51486        "x-kubernetes-action": "patch",
51487        "x-kubernetes-group-version-kind": {
51488          "group": "apps",
51489          "kind": "StatefulSet",
51490          "version": "v1"
51491        }
51492      },
51493      "put": {
51494        "consumes": [
51495          "*/*"
51496        ],
51497        "description": "replace status of the specified StatefulSet",
51498        "operationId": "replaceAppsV1NamespacedStatefulSetStatus",
51499        "parameters": [
51500          {
51501            "in": "body",
51502            "name": "body",
51503            "required": true,
51504            "schema": {
51505              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51506            }
51507          },
51508          {
51509            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51510            "in": "query",
51511            "name": "dryRun",
51512            "type": "string",
51513            "uniqueItems": true
51514          },
51515          {
51516            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51517            "in": "query",
51518            "name": "fieldManager",
51519            "type": "string",
51520            "uniqueItems": true
51521          }
51522        ],
51523        "produces": [
51524          "application/json",
51525          "application/yaml",
51526          "application/vnd.kubernetes.protobuf"
51527        ],
51528        "responses": {
51529          "200": {
51530            "description": "OK",
51531            "schema": {
51532              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51533            }
51534          },
51535          "201": {
51536            "description": "Created",
51537            "schema": {
51538              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51539            }
51540          },
51541          "401": {
51542            "description": "Unauthorized"
51543          }
51544        },
51545        "schemes": [
51546          "https"
51547        ],
51548        "tags": [
51549          "apps_v1"
51550        ],
51551        "x-kubernetes-action": "put",
51552        "x-kubernetes-group-version-kind": {
51553          "group": "apps",
51554          "kind": "StatefulSet",
51555          "version": "v1"
51556        }
51557      }
51558    },
51559    "/apis/apps/v1/replicasets": {
51560      "get": {
51561        "consumes": [
51562          "*/*"
51563        ],
51564        "description": "list or watch objects of kind ReplicaSet",
51565        "operationId": "listAppsV1ReplicaSetForAllNamespaces",
51566        "produces": [
51567          "application/json",
51568          "application/yaml",
51569          "application/vnd.kubernetes.protobuf",
51570          "application/json;stream=watch",
51571          "application/vnd.kubernetes.protobuf;stream=watch"
51572        ],
51573        "responses": {
51574          "200": {
51575            "description": "OK",
51576            "schema": {
51577              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
51578            }
51579          },
51580          "401": {
51581            "description": "Unauthorized"
51582          }
51583        },
51584        "schemes": [
51585          "https"
51586        ],
51587        "tags": [
51588          "apps_v1"
51589        ],
51590        "x-kubernetes-action": "list",
51591        "x-kubernetes-group-version-kind": {
51592          "group": "apps",
51593          "kind": "ReplicaSet",
51594          "version": "v1"
51595        }
51596      },
51597      "parameters": [
51598        {
51599          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51600          "in": "query",
51601          "name": "allowWatchBookmarks",
51602          "type": "boolean",
51603          "uniqueItems": true
51604        },
51605        {
51606          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51607          "in": "query",
51608          "name": "continue",
51609          "type": "string",
51610          "uniqueItems": true
51611        },
51612        {
51613          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51614          "in": "query",
51615          "name": "fieldSelector",
51616          "type": "string",
51617          "uniqueItems": true
51618        },
51619        {
51620          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51621          "in": "query",
51622          "name": "labelSelector",
51623          "type": "string",
51624          "uniqueItems": true
51625        },
51626        {
51627          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51628          "in": "query",
51629          "name": "limit",
51630          "type": "integer",
51631          "uniqueItems": true
51632        },
51633        {
51634          "description": "If 'true', then the output is pretty printed.",
51635          "in": "query",
51636          "name": "pretty",
51637          "type": "string",
51638          "uniqueItems": true
51639        },
51640        {
51641          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51642          "in": "query",
51643          "name": "resourceVersion",
51644          "type": "string",
51645          "uniqueItems": true
51646        },
51647        {
51648          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51649          "in": "query",
51650          "name": "resourceVersionMatch",
51651          "type": "string",
51652          "uniqueItems": true
51653        },
51654        {
51655          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51656          "in": "query",
51657          "name": "timeoutSeconds",
51658          "type": "integer",
51659          "uniqueItems": true
51660        },
51661        {
51662          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51663          "in": "query",
51664          "name": "watch",
51665          "type": "boolean",
51666          "uniqueItems": true
51667        }
51668      ]
51669    },
51670    "/apis/apps/v1/statefulsets": {
51671      "get": {
51672        "consumes": [
51673          "*/*"
51674        ],
51675        "description": "list or watch objects of kind StatefulSet",
51676        "operationId": "listAppsV1StatefulSetForAllNamespaces",
51677        "produces": [
51678          "application/json",
51679          "application/yaml",
51680          "application/vnd.kubernetes.protobuf",
51681          "application/json;stream=watch",
51682          "application/vnd.kubernetes.protobuf;stream=watch"
51683        ],
51684        "responses": {
51685          "200": {
51686            "description": "OK",
51687            "schema": {
51688              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
51689            }
51690          },
51691          "401": {
51692            "description": "Unauthorized"
51693          }
51694        },
51695        "schemes": [
51696          "https"
51697        ],
51698        "tags": [
51699          "apps_v1"
51700        ],
51701        "x-kubernetes-action": "list",
51702        "x-kubernetes-group-version-kind": {
51703          "group": "apps",
51704          "kind": "StatefulSet",
51705          "version": "v1"
51706        }
51707      },
51708      "parameters": [
51709        {
51710          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51711          "in": "query",
51712          "name": "allowWatchBookmarks",
51713          "type": "boolean",
51714          "uniqueItems": true
51715        },
51716        {
51717          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51718          "in": "query",
51719          "name": "continue",
51720          "type": "string",
51721          "uniqueItems": true
51722        },
51723        {
51724          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51725          "in": "query",
51726          "name": "fieldSelector",
51727          "type": "string",
51728          "uniqueItems": true
51729        },
51730        {
51731          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51732          "in": "query",
51733          "name": "labelSelector",
51734          "type": "string",
51735          "uniqueItems": true
51736        },
51737        {
51738          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51739          "in": "query",
51740          "name": "limit",
51741          "type": "integer",
51742          "uniqueItems": true
51743        },
51744        {
51745          "description": "If 'true', then the output is pretty printed.",
51746          "in": "query",
51747          "name": "pretty",
51748          "type": "string",
51749          "uniqueItems": true
51750        },
51751        {
51752          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51753          "in": "query",
51754          "name": "resourceVersion",
51755          "type": "string",
51756          "uniqueItems": true
51757        },
51758        {
51759          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51760          "in": "query",
51761          "name": "resourceVersionMatch",
51762          "type": "string",
51763          "uniqueItems": true
51764        },
51765        {
51766          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51767          "in": "query",
51768          "name": "timeoutSeconds",
51769          "type": "integer",
51770          "uniqueItems": true
51771        },
51772        {
51773          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51774          "in": "query",
51775          "name": "watch",
51776          "type": "boolean",
51777          "uniqueItems": true
51778        }
51779      ]
51780    },
51781    "/apis/apps/v1/watch/controllerrevisions": {
51782      "get": {
51783        "consumes": [
51784          "*/*"
51785        ],
51786        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
51787        "operationId": "watchAppsV1ControllerRevisionListForAllNamespaces",
51788        "produces": [
51789          "application/json",
51790          "application/yaml",
51791          "application/vnd.kubernetes.protobuf",
51792          "application/json;stream=watch",
51793          "application/vnd.kubernetes.protobuf;stream=watch"
51794        ],
51795        "responses": {
51796          "200": {
51797            "description": "OK",
51798            "schema": {
51799              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51800            }
51801          },
51802          "401": {
51803            "description": "Unauthorized"
51804          }
51805        },
51806        "schemes": [
51807          "https"
51808        ],
51809        "tags": [
51810          "apps_v1"
51811        ],
51812        "x-kubernetes-action": "watchlist",
51813        "x-kubernetes-group-version-kind": {
51814          "group": "apps",
51815          "kind": "ControllerRevision",
51816          "version": "v1"
51817        }
51818      },
51819      "parameters": [
51820        {
51821          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51822          "in": "query",
51823          "name": "allowWatchBookmarks",
51824          "type": "boolean",
51825          "uniqueItems": true
51826        },
51827        {
51828          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51829          "in": "query",
51830          "name": "continue",
51831          "type": "string",
51832          "uniqueItems": true
51833        },
51834        {
51835          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51836          "in": "query",
51837          "name": "fieldSelector",
51838          "type": "string",
51839          "uniqueItems": true
51840        },
51841        {
51842          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51843          "in": "query",
51844          "name": "labelSelector",
51845          "type": "string",
51846          "uniqueItems": true
51847        },
51848        {
51849          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51850          "in": "query",
51851          "name": "limit",
51852          "type": "integer",
51853          "uniqueItems": true
51854        },
51855        {
51856          "description": "If 'true', then the output is pretty printed.",
51857          "in": "query",
51858          "name": "pretty",
51859          "type": "string",
51860          "uniqueItems": true
51861        },
51862        {
51863          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51864          "in": "query",
51865          "name": "resourceVersion",
51866          "type": "string",
51867          "uniqueItems": true
51868        },
51869        {
51870          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51871          "in": "query",
51872          "name": "resourceVersionMatch",
51873          "type": "string",
51874          "uniqueItems": true
51875        },
51876        {
51877          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51878          "in": "query",
51879          "name": "timeoutSeconds",
51880          "type": "integer",
51881          "uniqueItems": true
51882        },
51883        {
51884          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51885          "in": "query",
51886          "name": "watch",
51887          "type": "boolean",
51888          "uniqueItems": true
51889        }
51890      ]
51891    },
51892    "/apis/apps/v1/watch/daemonsets": {
51893      "get": {
51894        "consumes": [
51895          "*/*"
51896        ],
51897        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
51898        "operationId": "watchAppsV1DaemonSetListForAllNamespaces",
51899        "produces": [
51900          "application/json",
51901          "application/yaml",
51902          "application/vnd.kubernetes.protobuf",
51903          "application/json;stream=watch",
51904          "application/vnd.kubernetes.protobuf;stream=watch"
51905        ],
51906        "responses": {
51907          "200": {
51908            "description": "OK",
51909            "schema": {
51910              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51911            }
51912          },
51913          "401": {
51914            "description": "Unauthorized"
51915          }
51916        },
51917        "schemes": [
51918          "https"
51919        ],
51920        "tags": [
51921          "apps_v1"
51922        ],
51923        "x-kubernetes-action": "watchlist",
51924        "x-kubernetes-group-version-kind": {
51925          "group": "apps",
51926          "kind": "DaemonSet",
51927          "version": "v1"
51928        }
51929      },
51930      "parameters": [
51931        {
51932          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51933          "in": "query",
51934          "name": "allowWatchBookmarks",
51935          "type": "boolean",
51936          "uniqueItems": true
51937        },
51938        {
51939          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51940          "in": "query",
51941          "name": "continue",
51942          "type": "string",
51943          "uniqueItems": true
51944        },
51945        {
51946          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51947          "in": "query",
51948          "name": "fieldSelector",
51949          "type": "string",
51950          "uniqueItems": true
51951        },
51952        {
51953          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51954          "in": "query",
51955          "name": "labelSelector",
51956          "type": "string",
51957          "uniqueItems": true
51958        },
51959        {
51960          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51961          "in": "query",
51962          "name": "limit",
51963          "type": "integer",
51964          "uniqueItems": true
51965        },
51966        {
51967          "description": "If 'true', then the output is pretty printed.",
51968          "in": "query",
51969          "name": "pretty",
51970          "type": "string",
51971          "uniqueItems": true
51972        },
51973        {
51974          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51975          "in": "query",
51976          "name": "resourceVersion",
51977          "type": "string",
51978          "uniqueItems": true
51979        },
51980        {
51981          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51982          "in": "query",
51983          "name": "resourceVersionMatch",
51984          "type": "string",
51985          "uniqueItems": true
51986        },
51987        {
51988          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51989          "in": "query",
51990          "name": "timeoutSeconds",
51991          "type": "integer",
51992          "uniqueItems": true
51993        },
51994        {
51995          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51996          "in": "query",
51997          "name": "watch",
51998          "type": "boolean",
51999          "uniqueItems": true
52000        }
52001      ]
52002    },
52003    "/apis/apps/v1/watch/deployments": {
52004      "get": {
52005        "consumes": [
52006          "*/*"
52007        ],
52008        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
52009        "operationId": "watchAppsV1DeploymentListForAllNamespaces",
52010        "produces": [
52011          "application/json",
52012          "application/yaml",
52013          "application/vnd.kubernetes.protobuf",
52014          "application/json;stream=watch",
52015          "application/vnd.kubernetes.protobuf;stream=watch"
52016        ],
52017        "responses": {
52018          "200": {
52019            "description": "OK",
52020            "schema": {
52021              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52022            }
52023          },
52024          "401": {
52025            "description": "Unauthorized"
52026          }
52027        },
52028        "schemes": [
52029          "https"
52030        ],
52031        "tags": [
52032          "apps_v1"
52033        ],
52034        "x-kubernetes-action": "watchlist",
52035        "x-kubernetes-group-version-kind": {
52036          "group": "apps",
52037          "kind": "Deployment",
52038          "version": "v1"
52039        }
52040      },
52041      "parameters": [
52042        {
52043          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52044          "in": "query",
52045          "name": "allowWatchBookmarks",
52046          "type": "boolean",
52047          "uniqueItems": true
52048        },
52049        {
52050          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52051          "in": "query",
52052          "name": "continue",
52053          "type": "string",
52054          "uniqueItems": true
52055        },
52056        {
52057          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52058          "in": "query",
52059          "name": "fieldSelector",
52060          "type": "string",
52061          "uniqueItems": true
52062        },
52063        {
52064          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52065          "in": "query",
52066          "name": "labelSelector",
52067          "type": "string",
52068          "uniqueItems": true
52069        },
52070        {
52071          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52072          "in": "query",
52073          "name": "limit",
52074          "type": "integer",
52075          "uniqueItems": true
52076        },
52077        {
52078          "description": "If 'true', then the output is pretty printed.",
52079          "in": "query",
52080          "name": "pretty",
52081          "type": "string",
52082          "uniqueItems": true
52083        },
52084        {
52085          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52086          "in": "query",
52087          "name": "resourceVersion",
52088          "type": "string",
52089          "uniqueItems": true
52090        },
52091        {
52092          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52093          "in": "query",
52094          "name": "resourceVersionMatch",
52095          "type": "string",
52096          "uniqueItems": true
52097        },
52098        {
52099          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52100          "in": "query",
52101          "name": "timeoutSeconds",
52102          "type": "integer",
52103          "uniqueItems": true
52104        },
52105        {
52106          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52107          "in": "query",
52108          "name": "watch",
52109          "type": "boolean",
52110          "uniqueItems": true
52111        }
52112      ]
52113    },
52114    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions": {
52115      "get": {
52116        "consumes": [
52117          "*/*"
52118        ],
52119        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
52120        "operationId": "watchAppsV1NamespacedControllerRevisionList",
52121        "produces": [
52122          "application/json",
52123          "application/yaml",
52124          "application/vnd.kubernetes.protobuf",
52125          "application/json;stream=watch",
52126          "application/vnd.kubernetes.protobuf;stream=watch"
52127        ],
52128        "responses": {
52129          "200": {
52130            "description": "OK",
52131            "schema": {
52132              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52133            }
52134          },
52135          "401": {
52136            "description": "Unauthorized"
52137          }
52138        },
52139        "schemes": [
52140          "https"
52141        ],
52142        "tags": [
52143          "apps_v1"
52144        ],
52145        "x-kubernetes-action": "watchlist",
52146        "x-kubernetes-group-version-kind": {
52147          "group": "apps",
52148          "kind": "ControllerRevision",
52149          "version": "v1"
52150        }
52151      },
52152      "parameters": [
52153        {
52154          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52155          "in": "query",
52156          "name": "allowWatchBookmarks",
52157          "type": "boolean",
52158          "uniqueItems": true
52159        },
52160        {
52161          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52162          "in": "query",
52163          "name": "continue",
52164          "type": "string",
52165          "uniqueItems": true
52166        },
52167        {
52168          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52169          "in": "query",
52170          "name": "fieldSelector",
52171          "type": "string",
52172          "uniqueItems": true
52173        },
52174        {
52175          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52176          "in": "query",
52177          "name": "labelSelector",
52178          "type": "string",
52179          "uniqueItems": true
52180        },
52181        {
52182          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52183          "in": "query",
52184          "name": "limit",
52185          "type": "integer",
52186          "uniqueItems": true
52187        },
52188        {
52189          "description": "object name and auth scope, such as for teams and projects",
52190          "in": "path",
52191          "name": "namespace",
52192          "required": true,
52193          "type": "string",
52194          "uniqueItems": true
52195        },
52196        {
52197          "description": "If 'true', then the output is pretty printed.",
52198          "in": "query",
52199          "name": "pretty",
52200          "type": "string",
52201          "uniqueItems": true
52202        },
52203        {
52204          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52205          "in": "query",
52206          "name": "resourceVersion",
52207          "type": "string",
52208          "uniqueItems": true
52209        },
52210        {
52211          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52212          "in": "query",
52213          "name": "resourceVersionMatch",
52214          "type": "string",
52215          "uniqueItems": true
52216        },
52217        {
52218          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52219          "in": "query",
52220          "name": "timeoutSeconds",
52221          "type": "integer",
52222          "uniqueItems": true
52223        },
52224        {
52225          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52226          "in": "query",
52227          "name": "watch",
52228          "type": "boolean",
52229          "uniqueItems": true
52230        }
52231      ]
52232    },
52233    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}": {
52234      "get": {
52235        "consumes": [
52236          "*/*"
52237        ],
52238        "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.",
52239        "operationId": "watchAppsV1NamespacedControllerRevision",
52240        "produces": [
52241          "application/json",
52242          "application/yaml",
52243          "application/vnd.kubernetes.protobuf",
52244          "application/json;stream=watch",
52245          "application/vnd.kubernetes.protobuf;stream=watch"
52246        ],
52247        "responses": {
52248          "200": {
52249            "description": "OK",
52250            "schema": {
52251              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52252            }
52253          },
52254          "401": {
52255            "description": "Unauthorized"
52256          }
52257        },
52258        "schemes": [
52259          "https"
52260        ],
52261        "tags": [
52262          "apps_v1"
52263        ],
52264        "x-kubernetes-action": "watch",
52265        "x-kubernetes-group-version-kind": {
52266          "group": "apps",
52267          "kind": "ControllerRevision",
52268          "version": "v1"
52269        }
52270      },
52271      "parameters": [
52272        {
52273          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52274          "in": "query",
52275          "name": "allowWatchBookmarks",
52276          "type": "boolean",
52277          "uniqueItems": true
52278        },
52279        {
52280          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52281          "in": "query",
52282          "name": "continue",
52283          "type": "string",
52284          "uniqueItems": true
52285        },
52286        {
52287          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52288          "in": "query",
52289          "name": "fieldSelector",
52290          "type": "string",
52291          "uniqueItems": true
52292        },
52293        {
52294          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52295          "in": "query",
52296          "name": "labelSelector",
52297          "type": "string",
52298          "uniqueItems": true
52299        },
52300        {
52301          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52302          "in": "query",
52303          "name": "limit",
52304          "type": "integer",
52305          "uniqueItems": true
52306        },
52307        {
52308          "description": "name of the ControllerRevision",
52309          "in": "path",
52310          "name": "name",
52311          "required": true,
52312          "type": "string",
52313          "uniqueItems": true
52314        },
52315        {
52316          "description": "object name and auth scope, such as for teams and projects",
52317          "in": "path",
52318          "name": "namespace",
52319          "required": true,
52320          "type": "string",
52321          "uniqueItems": true
52322        },
52323        {
52324          "description": "If 'true', then the output is pretty printed.",
52325          "in": "query",
52326          "name": "pretty",
52327          "type": "string",
52328          "uniqueItems": true
52329        },
52330        {
52331          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52332          "in": "query",
52333          "name": "resourceVersion",
52334          "type": "string",
52335          "uniqueItems": true
52336        },
52337        {
52338          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52339          "in": "query",
52340          "name": "resourceVersionMatch",
52341          "type": "string",
52342          "uniqueItems": true
52343        },
52344        {
52345          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52346          "in": "query",
52347          "name": "timeoutSeconds",
52348          "type": "integer",
52349          "uniqueItems": true
52350        },
52351        {
52352          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52353          "in": "query",
52354          "name": "watch",
52355          "type": "boolean",
52356          "uniqueItems": true
52357        }
52358      ]
52359    },
52360    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets": {
52361      "get": {
52362        "consumes": [
52363          "*/*"
52364        ],
52365        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
52366        "operationId": "watchAppsV1NamespacedDaemonSetList",
52367        "produces": [
52368          "application/json",
52369          "application/yaml",
52370          "application/vnd.kubernetes.protobuf",
52371          "application/json;stream=watch",
52372          "application/vnd.kubernetes.protobuf;stream=watch"
52373        ],
52374        "responses": {
52375          "200": {
52376            "description": "OK",
52377            "schema": {
52378              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52379            }
52380          },
52381          "401": {
52382            "description": "Unauthorized"
52383          }
52384        },
52385        "schemes": [
52386          "https"
52387        ],
52388        "tags": [
52389          "apps_v1"
52390        ],
52391        "x-kubernetes-action": "watchlist",
52392        "x-kubernetes-group-version-kind": {
52393          "group": "apps",
52394          "kind": "DaemonSet",
52395          "version": "v1"
52396        }
52397      },
52398      "parameters": [
52399        {
52400          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52401          "in": "query",
52402          "name": "allowWatchBookmarks",
52403          "type": "boolean",
52404          "uniqueItems": true
52405        },
52406        {
52407          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52408          "in": "query",
52409          "name": "continue",
52410          "type": "string",
52411          "uniqueItems": true
52412        },
52413        {
52414          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52415          "in": "query",
52416          "name": "fieldSelector",
52417          "type": "string",
52418          "uniqueItems": true
52419        },
52420        {
52421          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52422          "in": "query",
52423          "name": "labelSelector",
52424          "type": "string",
52425          "uniqueItems": true
52426        },
52427        {
52428          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52429          "in": "query",
52430          "name": "limit",
52431          "type": "integer",
52432          "uniqueItems": true
52433        },
52434        {
52435          "description": "object name and auth scope, such as for teams and projects",
52436          "in": "path",
52437          "name": "namespace",
52438          "required": true,
52439          "type": "string",
52440          "uniqueItems": true
52441        },
52442        {
52443          "description": "If 'true', then the output is pretty printed.",
52444          "in": "query",
52445          "name": "pretty",
52446          "type": "string",
52447          "uniqueItems": true
52448        },
52449        {
52450          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52451          "in": "query",
52452          "name": "resourceVersion",
52453          "type": "string",
52454          "uniqueItems": true
52455        },
52456        {
52457          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52458          "in": "query",
52459          "name": "resourceVersionMatch",
52460          "type": "string",
52461          "uniqueItems": true
52462        },
52463        {
52464          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52465          "in": "query",
52466          "name": "timeoutSeconds",
52467          "type": "integer",
52468          "uniqueItems": true
52469        },
52470        {
52471          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52472          "in": "query",
52473          "name": "watch",
52474          "type": "boolean",
52475          "uniqueItems": true
52476        }
52477      ]
52478    },
52479    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}": {
52480      "get": {
52481        "consumes": [
52482          "*/*"
52483        ],
52484        "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.",
52485        "operationId": "watchAppsV1NamespacedDaemonSet",
52486        "produces": [
52487          "application/json",
52488          "application/yaml",
52489          "application/vnd.kubernetes.protobuf",
52490          "application/json;stream=watch",
52491          "application/vnd.kubernetes.protobuf;stream=watch"
52492        ],
52493        "responses": {
52494          "200": {
52495            "description": "OK",
52496            "schema": {
52497              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52498            }
52499          },
52500          "401": {
52501            "description": "Unauthorized"
52502          }
52503        },
52504        "schemes": [
52505          "https"
52506        ],
52507        "tags": [
52508          "apps_v1"
52509        ],
52510        "x-kubernetes-action": "watch",
52511        "x-kubernetes-group-version-kind": {
52512          "group": "apps",
52513          "kind": "DaemonSet",
52514          "version": "v1"
52515        }
52516      },
52517      "parameters": [
52518        {
52519          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52520          "in": "query",
52521          "name": "allowWatchBookmarks",
52522          "type": "boolean",
52523          "uniqueItems": true
52524        },
52525        {
52526          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52527          "in": "query",
52528          "name": "continue",
52529          "type": "string",
52530          "uniqueItems": true
52531        },
52532        {
52533          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52534          "in": "query",
52535          "name": "fieldSelector",
52536          "type": "string",
52537          "uniqueItems": true
52538        },
52539        {
52540          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52541          "in": "query",
52542          "name": "labelSelector",
52543          "type": "string",
52544          "uniqueItems": true
52545        },
52546        {
52547          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52548          "in": "query",
52549          "name": "limit",
52550          "type": "integer",
52551          "uniqueItems": true
52552        },
52553        {
52554          "description": "name of the DaemonSet",
52555          "in": "path",
52556          "name": "name",
52557          "required": true,
52558          "type": "string",
52559          "uniqueItems": true
52560        },
52561        {
52562          "description": "object name and auth scope, such as for teams and projects",
52563          "in": "path",
52564          "name": "namespace",
52565          "required": true,
52566          "type": "string",
52567          "uniqueItems": true
52568        },
52569        {
52570          "description": "If 'true', then the output is pretty printed.",
52571          "in": "query",
52572          "name": "pretty",
52573          "type": "string",
52574          "uniqueItems": true
52575        },
52576        {
52577          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52578          "in": "query",
52579          "name": "resourceVersion",
52580          "type": "string",
52581          "uniqueItems": true
52582        },
52583        {
52584          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52585          "in": "query",
52586          "name": "resourceVersionMatch",
52587          "type": "string",
52588          "uniqueItems": true
52589        },
52590        {
52591          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52592          "in": "query",
52593          "name": "timeoutSeconds",
52594          "type": "integer",
52595          "uniqueItems": true
52596        },
52597        {
52598          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52599          "in": "query",
52600          "name": "watch",
52601          "type": "boolean",
52602          "uniqueItems": true
52603        }
52604      ]
52605    },
52606    "/apis/apps/v1/watch/namespaces/{namespace}/deployments": {
52607      "get": {
52608        "consumes": [
52609          "*/*"
52610        ],
52611        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
52612        "operationId": "watchAppsV1NamespacedDeploymentList",
52613        "produces": [
52614          "application/json",
52615          "application/yaml",
52616          "application/vnd.kubernetes.protobuf",
52617          "application/json;stream=watch",
52618          "application/vnd.kubernetes.protobuf;stream=watch"
52619        ],
52620        "responses": {
52621          "200": {
52622            "description": "OK",
52623            "schema": {
52624              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52625            }
52626          },
52627          "401": {
52628            "description": "Unauthorized"
52629          }
52630        },
52631        "schemes": [
52632          "https"
52633        ],
52634        "tags": [
52635          "apps_v1"
52636        ],
52637        "x-kubernetes-action": "watchlist",
52638        "x-kubernetes-group-version-kind": {
52639          "group": "apps",
52640          "kind": "Deployment",
52641          "version": "v1"
52642        }
52643      },
52644      "parameters": [
52645        {
52646          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52647          "in": "query",
52648          "name": "allowWatchBookmarks",
52649          "type": "boolean",
52650          "uniqueItems": true
52651        },
52652        {
52653          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52654          "in": "query",
52655          "name": "continue",
52656          "type": "string",
52657          "uniqueItems": true
52658        },
52659        {
52660          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52661          "in": "query",
52662          "name": "fieldSelector",
52663          "type": "string",
52664          "uniqueItems": true
52665        },
52666        {
52667          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52668          "in": "query",
52669          "name": "labelSelector",
52670          "type": "string",
52671          "uniqueItems": true
52672        },
52673        {
52674          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52675          "in": "query",
52676          "name": "limit",
52677          "type": "integer",
52678          "uniqueItems": true
52679        },
52680        {
52681          "description": "object name and auth scope, such as for teams and projects",
52682          "in": "path",
52683          "name": "namespace",
52684          "required": true,
52685          "type": "string",
52686          "uniqueItems": true
52687        },
52688        {
52689          "description": "If 'true', then the output is pretty printed.",
52690          "in": "query",
52691          "name": "pretty",
52692          "type": "string",
52693          "uniqueItems": true
52694        },
52695        {
52696          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52697          "in": "query",
52698          "name": "resourceVersion",
52699          "type": "string",
52700          "uniqueItems": true
52701        },
52702        {
52703          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52704          "in": "query",
52705          "name": "resourceVersionMatch",
52706          "type": "string",
52707          "uniqueItems": true
52708        },
52709        {
52710          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52711          "in": "query",
52712          "name": "timeoutSeconds",
52713          "type": "integer",
52714          "uniqueItems": true
52715        },
52716        {
52717          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52718          "in": "query",
52719          "name": "watch",
52720          "type": "boolean",
52721          "uniqueItems": true
52722        }
52723      ]
52724    },
52725    "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}": {
52726      "get": {
52727        "consumes": [
52728          "*/*"
52729        ],
52730        "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.",
52731        "operationId": "watchAppsV1NamespacedDeployment",
52732        "produces": [
52733          "application/json",
52734          "application/yaml",
52735          "application/vnd.kubernetes.protobuf",
52736          "application/json;stream=watch",
52737          "application/vnd.kubernetes.protobuf;stream=watch"
52738        ],
52739        "responses": {
52740          "200": {
52741            "description": "OK",
52742            "schema": {
52743              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52744            }
52745          },
52746          "401": {
52747            "description": "Unauthorized"
52748          }
52749        },
52750        "schemes": [
52751          "https"
52752        ],
52753        "tags": [
52754          "apps_v1"
52755        ],
52756        "x-kubernetes-action": "watch",
52757        "x-kubernetes-group-version-kind": {
52758          "group": "apps",
52759          "kind": "Deployment",
52760          "version": "v1"
52761        }
52762      },
52763      "parameters": [
52764        {
52765          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52766          "in": "query",
52767          "name": "allowWatchBookmarks",
52768          "type": "boolean",
52769          "uniqueItems": true
52770        },
52771        {
52772          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52773          "in": "query",
52774          "name": "continue",
52775          "type": "string",
52776          "uniqueItems": true
52777        },
52778        {
52779          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52780          "in": "query",
52781          "name": "fieldSelector",
52782          "type": "string",
52783          "uniqueItems": true
52784        },
52785        {
52786          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52787          "in": "query",
52788          "name": "labelSelector",
52789          "type": "string",
52790          "uniqueItems": true
52791        },
52792        {
52793          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52794          "in": "query",
52795          "name": "limit",
52796          "type": "integer",
52797          "uniqueItems": true
52798        },
52799        {
52800          "description": "name of the Deployment",
52801          "in": "path",
52802          "name": "name",
52803          "required": true,
52804          "type": "string",
52805          "uniqueItems": true
52806        },
52807        {
52808          "description": "object name and auth scope, such as for teams and projects",
52809          "in": "path",
52810          "name": "namespace",
52811          "required": true,
52812          "type": "string",
52813          "uniqueItems": true
52814        },
52815        {
52816          "description": "If 'true', then the output is pretty printed.",
52817          "in": "query",
52818          "name": "pretty",
52819          "type": "string",
52820          "uniqueItems": true
52821        },
52822        {
52823          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52824          "in": "query",
52825          "name": "resourceVersion",
52826          "type": "string",
52827          "uniqueItems": true
52828        },
52829        {
52830          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52831          "in": "query",
52832          "name": "resourceVersionMatch",
52833          "type": "string",
52834          "uniqueItems": true
52835        },
52836        {
52837          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52838          "in": "query",
52839          "name": "timeoutSeconds",
52840          "type": "integer",
52841          "uniqueItems": true
52842        },
52843        {
52844          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52845          "in": "query",
52846          "name": "watch",
52847          "type": "boolean",
52848          "uniqueItems": true
52849        }
52850      ]
52851    },
52852    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets": {
52853      "get": {
52854        "consumes": [
52855          "*/*"
52856        ],
52857        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
52858        "operationId": "watchAppsV1NamespacedReplicaSetList",
52859        "produces": [
52860          "application/json",
52861          "application/yaml",
52862          "application/vnd.kubernetes.protobuf",
52863          "application/json;stream=watch",
52864          "application/vnd.kubernetes.protobuf;stream=watch"
52865        ],
52866        "responses": {
52867          "200": {
52868            "description": "OK",
52869            "schema": {
52870              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52871            }
52872          },
52873          "401": {
52874            "description": "Unauthorized"
52875          }
52876        },
52877        "schemes": [
52878          "https"
52879        ],
52880        "tags": [
52881          "apps_v1"
52882        ],
52883        "x-kubernetes-action": "watchlist",
52884        "x-kubernetes-group-version-kind": {
52885          "group": "apps",
52886          "kind": "ReplicaSet",
52887          "version": "v1"
52888        }
52889      },
52890      "parameters": [
52891        {
52892          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52893          "in": "query",
52894          "name": "allowWatchBookmarks",
52895          "type": "boolean",
52896          "uniqueItems": true
52897        },
52898        {
52899          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52900          "in": "query",
52901          "name": "continue",
52902          "type": "string",
52903          "uniqueItems": true
52904        },
52905        {
52906          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52907          "in": "query",
52908          "name": "fieldSelector",
52909          "type": "string",
52910          "uniqueItems": true
52911        },
52912        {
52913          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52914          "in": "query",
52915          "name": "labelSelector",
52916          "type": "string",
52917          "uniqueItems": true
52918        },
52919        {
52920          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52921          "in": "query",
52922          "name": "limit",
52923          "type": "integer",
52924          "uniqueItems": true
52925        },
52926        {
52927          "description": "object name and auth scope, such as for teams and projects",
52928          "in": "path",
52929          "name": "namespace",
52930          "required": true,
52931          "type": "string",
52932          "uniqueItems": true
52933        },
52934        {
52935          "description": "If 'true', then the output is pretty printed.",
52936          "in": "query",
52937          "name": "pretty",
52938          "type": "string",
52939          "uniqueItems": true
52940        },
52941        {
52942          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52943          "in": "query",
52944          "name": "resourceVersion",
52945          "type": "string",
52946          "uniqueItems": true
52947        },
52948        {
52949          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52950          "in": "query",
52951          "name": "resourceVersionMatch",
52952          "type": "string",
52953          "uniqueItems": true
52954        },
52955        {
52956          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52957          "in": "query",
52958          "name": "timeoutSeconds",
52959          "type": "integer",
52960          "uniqueItems": true
52961        },
52962        {
52963          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52964          "in": "query",
52965          "name": "watch",
52966          "type": "boolean",
52967          "uniqueItems": true
52968        }
52969      ]
52970    },
52971    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}": {
52972      "get": {
52973        "consumes": [
52974          "*/*"
52975        ],
52976        "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.",
52977        "operationId": "watchAppsV1NamespacedReplicaSet",
52978        "produces": [
52979          "application/json",
52980          "application/yaml",
52981          "application/vnd.kubernetes.protobuf",
52982          "application/json;stream=watch",
52983          "application/vnd.kubernetes.protobuf;stream=watch"
52984        ],
52985        "responses": {
52986          "200": {
52987            "description": "OK",
52988            "schema": {
52989              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52990            }
52991          },
52992          "401": {
52993            "description": "Unauthorized"
52994          }
52995        },
52996        "schemes": [
52997          "https"
52998        ],
52999        "tags": [
53000          "apps_v1"
53001        ],
53002        "x-kubernetes-action": "watch",
53003        "x-kubernetes-group-version-kind": {
53004          "group": "apps",
53005          "kind": "ReplicaSet",
53006          "version": "v1"
53007        }
53008      },
53009      "parameters": [
53010        {
53011          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53012          "in": "query",
53013          "name": "allowWatchBookmarks",
53014          "type": "boolean",
53015          "uniqueItems": true
53016        },
53017        {
53018          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53019          "in": "query",
53020          "name": "continue",
53021          "type": "string",
53022          "uniqueItems": true
53023        },
53024        {
53025          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53026          "in": "query",
53027          "name": "fieldSelector",
53028          "type": "string",
53029          "uniqueItems": true
53030        },
53031        {
53032          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53033          "in": "query",
53034          "name": "labelSelector",
53035          "type": "string",
53036          "uniqueItems": true
53037        },
53038        {
53039          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53040          "in": "query",
53041          "name": "limit",
53042          "type": "integer",
53043          "uniqueItems": true
53044        },
53045        {
53046          "description": "name of the ReplicaSet",
53047          "in": "path",
53048          "name": "name",
53049          "required": true,
53050          "type": "string",
53051          "uniqueItems": true
53052        },
53053        {
53054          "description": "object name and auth scope, such as for teams and projects",
53055          "in": "path",
53056          "name": "namespace",
53057          "required": true,
53058          "type": "string",
53059          "uniqueItems": true
53060        },
53061        {
53062          "description": "If 'true', then the output is pretty printed.",
53063          "in": "query",
53064          "name": "pretty",
53065          "type": "string",
53066          "uniqueItems": true
53067        },
53068        {
53069          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53070          "in": "query",
53071          "name": "resourceVersion",
53072          "type": "string",
53073          "uniqueItems": true
53074        },
53075        {
53076          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53077          "in": "query",
53078          "name": "resourceVersionMatch",
53079          "type": "string",
53080          "uniqueItems": true
53081        },
53082        {
53083          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53084          "in": "query",
53085          "name": "timeoutSeconds",
53086          "type": "integer",
53087          "uniqueItems": true
53088        },
53089        {
53090          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53091          "in": "query",
53092          "name": "watch",
53093          "type": "boolean",
53094          "uniqueItems": true
53095        }
53096      ]
53097    },
53098    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets": {
53099      "get": {
53100        "consumes": [
53101          "*/*"
53102        ],
53103        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
53104        "operationId": "watchAppsV1NamespacedStatefulSetList",
53105        "produces": [
53106          "application/json",
53107          "application/yaml",
53108          "application/vnd.kubernetes.protobuf",
53109          "application/json;stream=watch",
53110          "application/vnd.kubernetes.protobuf;stream=watch"
53111        ],
53112        "responses": {
53113          "200": {
53114            "description": "OK",
53115            "schema": {
53116              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53117            }
53118          },
53119          "401": {
53120            "description": "Unauthorized"
53121          }
53122        },
53123        "schemes": [
53124          "https"
53125        ],
53126        "tags": [
53127          "apps_v1"
53128        ],
53129        "x-kubernetes-action": "watchlist",
53130        "x-kubernetes-group-version-kind": {
53131          "group": "apps",
53132          "kind": "StatefulSet",
53133          "version": "v1"
53134        }
53135      },
53136      "parameters": [
53137        {
53138          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53139          "in": "query",
53140          "name": "allowWatchBookmarks",
53141          "type": "boolean",
53142          "uniqueItems": true
53143        },
53144        {
53145          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53146          "in": "query",
53147          "name": "continue",
53148          "type": "string",
53149          "uniqueItems": true
53150        },
53151        {
53152          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53153          "in": "query",
53154          "name": "fieldSelector",
53155          "type": "string",
53156          "uniqueItems": true
53157        },
53158        {
53159          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53160          "in": "query",
53161          "name": "labelSelector",
53162          "type": "string",
53163          "uniqueItems": true
53164        },
53165        {
53166          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53167          "in": "query",
53168          "name": "limit",
53169          "type": "integer",
53170          "uniqueItems": true
53171        },
53172        {
53173          "description": "object name and auth scope, such as for teams and projects",
53174          "in": "path",
53175          "name": "namespace",
53176          "required": true,
53177          "type": "string",
53178          "uniqueItems": true
53179        },
53180        {
53181          "description": "If 'true', then the output is pretty printed.",
53182          "in": "query",
53183          "name": "pretty",
53184          "type": "string",
53185          "uniqueItems": true
53186        },
53187        {
53188          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53189          "in": "query",
53190          "name": "resourceVersion",
53191          "type": "string",
53192          "uniqueItems": true
53193        },
53194        {
53195          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53196          "in": "query",
53197          "name": "resourceVersionMatch",
53198          "type": "string",
53199          "uniqueItems": true
53200        },
53201        {
53202          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53203          "in": "query",
53204          "name": "timeoutSeconds",
53205          "type": "integer",
53206          "uniqueItems": true
53207        },
53208        {
53209          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53210          "in": "query",
53211          "name": "watch",
53212          "type": "boolean",
53213          "uniqueItems": true
53214        }
53215      ]
53216    },
53217    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}": {
53218      "get": {
53219        "consumes": [
53220          "*/*"
53221        ],
53222        "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.",
53223        "operationId": "watchAppsV1NamespacedStatefulSet",
53224        "produces": [
53225          "application/json",
53226          "application/yaml",
53227          "application/vnd.kubernetes.protobuf",
53228          "application/json;stream=watch",
53229          "application/vnd.kubernetes.protobuf;stream=watch"
53230        ],
53231        "responses": {
53232          "200": {
53233            "description": "OK",
53234            "schema": {
53235              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53236            }
53237          },
53238          "401": {
53239            "description": "Unauthorized"
53240          }
53241        },
53242        "schemes": [
53243          "https"
53244        ],
53245        "tags": [
53246          "apps_v1"
53247        ],
53248        "x-kubernetes-action": "watch",
53249        "x-kubernetes-group-version-kind": {
53250          "group": "apps",
53251          "kind": "StatefulSet",
53252          "version": "v1"
53253        }
53254      },
53255      "parameters": [
53256        {
53257          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53258          "in": "query",
53259          "name": "allowWatchBookmarks",
53260          "type": "boolean",
53261          "uniqueItems": true
53262        },
53263        {
53264          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53265          "in": "query",
53266          "name": "continue",
53267          "type": "string",
53268          "uniqueItems": true
53269        },
53270        {
53271          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53272          "in": "query",
53273          "name": "fieldSelector",
53274          "type": "string",
53275          "uniqueItems": true
53276        },
53277        {
53278          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53279          "in": "query",
53280          "name": "labelSelector",
53281          "type": "string",
53282          "uniqueItems": true
53283        },
53284        {
53285          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53286          "in": "query",
53287          "name": "limit",
53288          "type": "integer",
53289          "uniqueItems": true
53290        },
53291        {
53292          "description": "name of the StatefulSet",
53293          "in": "path",
53294          "name": "name",
53295          "required": true,
53296          "type": "string",
53297          "uniqueItems": true
53298        },
53299        {
53300          "description": "object name and auth scope, such as for teams and projects",
53301          "in": "path",
53302          "name": "namespace",
53303          "required": true,
53304          "type": "string",
53305          "uniqueItems": true
53306        },
53307        {
53308          "description": "If 'true', then the output is pretty printed.",
53309          "in": "query",
53310          "name": "pretty",
53311          "type": "string",
53312          "uniqueItems": true
53313        },
53314        {
53315          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53316          "in": "query",
53317          "name": "resourceVersion",
53318          "type": "string",
53319          "uniqueItems": true
53320        },
53321        {
53322          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53323          "in": "query",
53324          "name": "resourceVersionMatch",
53325          "type": "string",
53326          "uniqueItems": true
53327        },
53328        {
53329          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53330          "in": "query",
53331          "name": "timeoutSeconds",
53332          "type": "integer",
53333          "uniqueItems": true
53334        },
53335        {
53336          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53337          "in": "query",
53338          "name": "watch",
53339          "type": "boolean",
53340          "uniqueItems": true
53341        }
53342      ]
53343    },
53344    "/apis/apps/v1/watch/replicasets": {
53345      "get": {
53346        "consumes": [
53347          "*/*"
53348        ],
53349        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
53350        "operationId": "watchAppsV1ReplicaSetListForAllNamespaces",
53351        "produces": [
53352          "application/json",
53353          "application/yaml",
53354          "application/vnd.kubernetes.protobuf",
53355          "application/json;stream=watch",
53356          "application/vnd.kubernetes.protobuf;stream=watch"
53357        ],
53358        "responses": {
53359          "200": {
53360            "description": "OK",
53361            "schema": {
53362              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53363            }
53364          },
53365          "401": {
53366            "description": "Unauthorized"
53367          }
53368        },
53369        "schemes": [
53370          "https"
53371        ],
53372        "tags": [
53373          "apps_v1"
53374        ],
53375        "x-kubernetes-action": "watchlist",
53376        "x-kubernetes-group-version-kind": {
53377          "group": "apps",
53378          "kind": "ReplicaSet",
53379          "version": "v1"
53380        }
53381      },
53382      "parameters": [
53383        {
53384          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53385          "in": "query",
53386          "name": "allowWatchBookmarks",
53387          "type": "boolean",
53388          "uniqueItems": true
53389        },
53390        {
53391          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53392          "in": "query",
53393          "name": "continue",
53394          "type": "string",
53395          "uniqueItems": true
53396        },
53397        {
53398          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53399          "in": "query",
53400          "name": "fieldSelector",
53401          "type": "string",
53402          "uniqueItems": true
53403        },
53404        {
53405          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53406          "in": "query",
53407          "name": "labelSelector",
53408          "type": "string",
53409          "uniqueItems": true
53410        },
53411        {
53412          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53413          "in": "query",
53414          "name": "limit",
53415          "type": "integer",
53416          "uniqueItems": true
53417        },
53418        {
53419          "description": "If 'true', then the output is pretty printed.",
53420          "in": "query",
53421          "name": "pretty",
53422          "type": "string",
53423          "uniqueItems": true
53424        },
53425        {
53426          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53427          "in": "query",
53428          "name": "resourceVersion",
53429          "type": "string",
53430          "uniqueItems": true
53431        },
53432        {
53433          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53434          "in": "query",
53435          "name": "resourceVersionMatch",
53436          "type": "string",
53437          "uniqueItems": true
53438        },
53439        {
53440          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53441          "in": "query",
53442          "name": "timeoutSeconds",
53443          "type": "integer",
53444          "uniqueItems": true
53445        },
53446        {
53447          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53448          "in": "query",
53449          "name": "watch",
53450          "type": "boolean",
53451          "uniqueItems": true
53452        }
53453      ]
53454    },
53455    "/apis/apps/v1/watch/statefulsets": {
53456      "get": {
53457        "consumes": [
53458          "*/*"
53459        ],
53460        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
53461        "operationId": "watchAppsV1StatefulSetListForAllNamespaces",
53462        "produces": [
53463          "application/json",
53464          "application/yaml",
53465          "application/vnd.kubernetes.protobuf",
53466          "application/json;stream=watch",
53467          "application/vnd.kubernetes.protobuf;stream=watch"
53468        ],
53469        "responses": {
53470          "200": {
53471            "description": "OK",
53472            "schema": {
53473              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53474            }
53475          },
53476          "401": {
53477            "description": "Unauthorized"
53478          }
53479        },
53480        "schemes": [
53481          "https"
53482        ],
53483        "tags": [
53484          "apps_v1"
53485        ],
53486        "x-kubernetes-action": "watchlist",
53487        "x-kubernetes-group-version-kind": {
53488          "group": "apps",
53489          "kind": "StatefulSet",
53490          "version": "v1"
53491        }
53492      },
53493      "parameters": [
53494        {
53495          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53496          "in": "query",
53497          "name": "allowWatchBookmarks",
53498          "type": "boolean",
53499          "uniqueItems": true
53500        },
53501        {
53502          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53503          "in": "query",
53504          "name": "continue",
53505          "type": "string",
53506          "uniqueItems": true
53507        },
53508        {
53509          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53510          "in": "query",
53511          "name": "fieldSelector",
53512          "type": "string",
53513          "uniqueItems": true
53514        },
53515        {
53516          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53517          "in": "query",
53518          "name": "labelSelector",
53519          "type": "string",
53520          "uniqueItems": true
53521        },
53522        {
53523          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53524          "in": "query",
53525          "name": "limit",
53526          "type": "integer",
53527          "uniqueItems": true
53528        },
53529        {
53530          "description": "If 'true', then the output is pretty printed.",
53531          "in": "query",
53532          "name": "pretty",
53533          "type": "string",
53534          "uniqueItems": true
53535        },
53536        {
53537          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53538          "in": "query",
53539          "name": "resourceVersion",
53540          "type": "string",
53541          "uniqueItems": true
53542        },
53543        {
53544          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53545          "in": "query",
53546          "name": "resourceVersionMatch",
53547          "type": "string",
53548          "uniqueItems": true
53549        },
53550        {
53551          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53552          "in": "query",
53553          "name": "timeoutSeconds",
53554          "type": "integer",
53555          "uniqueItems": true
53556        },
53557        {
53558          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53559          "in": "query",
53560          "name": "watch",
53561          "type": "boolean",
53562          "uniqueItems": true
53563        }
53564      ]
53565    },
53566    "/apis/authentication.k8s.io/": {
53567      "get": {
53568        "consumes": [
53569          "application/json",
53570          "application/yaml",
53571          "application/vnd.kubernetes.protobuf"
53572        ],
53573        "description": "get information of a group",
53574        "operationId": "getAuthenticationAPIGroup",
53575        "produces": [
53576          "application/json",
53577          "application/yaml",
53578          "application/vnd.kubernetes.protobuf"
53579        ],
53580        "responses": {
53581          "200": {
53582            "description": "OK",
53583            "schema": {
53584              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
53585            }
53586          },
53587          "401": {
53588            "description": "Unauthorized"
53589          }
53590        },
53591        "schemes": [
53592          "https"
53593        ],
53594        "tags": [
53595          "authentication"
53596        ]
53597      }
53598    },
53599    "/apis/authentication.k8s.io/v1/": {
53600      "get": {
53601        "consumes": [
53602          "application/json",
53603          "application/yaml",
53604          "application/vnd.kubernetes.protobuf"
53605        ],
53606        "description": "get available resources",
53607        "operationId": "getAuthenticationV1APIResources",
53608        "produces": [
53609          "application/json",
53610          "application/yaml",
53611          "application/vnd.kubernetes.protobuf"
53612        ],
53613        "responses": {
53614          "200": {
53615            "description": "OK",
53616            "schema": {
53617              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
53618            }
53619          },
53620          "401": {
53621            "description": "Unauthorized"
53622          }
53623        },
53624        "schemes": [
53625          "https"
53626        ],
53627        "tags": [
53628          "authentication_v1"
53629        ]
53630      }
53631    },
53632    "/apis/authentication.k8s.io/v1/tokenreviews": {
53633      "parameters": [
53634        {
53635          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53636          "in": "query",
53637          "name": "dryRun",
53638          "type": "string",
53639          "uniqueItems": true
53640        },
53641        {
53642          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53643          "in": "query",
53644          "name": "fieldManager",
53645          "type": "string",
53646          "uniqueItems": true
53647        },
53648        {
53649          "description": "If 'true', then the output is pretty printed.",
53650          "in": "query",
53651          "name": "pretty",
53652          "type": "string",
53653          "uniqueItems": true
53654        }
53655      ],
53656      "post": {
53657        "consumes": [
53658          "*/*"
53659        ],
53660        "description": "create a TokenReview",
53661        "operationId": "createAuthenticationV1TokenReview",
53662        "parameters": [
53663          {
53664            "in": "body",
53665            "name": "body",
53666            "required": true,
53667            "schema": {
53668              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53669            }
53670          }
53671        ],
53672        "produces": [
53673          "application/json",
53674          "application/yaml",
53675          "application/vnd.kubernetes.protobuf"
53676        ],
53677        "responses": {
53678          "200": {
53679            "description": "OK",
53680            "schema": {
53681              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53682            }
53683          },
53684          "201": {
53685            "description": "Created",
53686            "schema": {
53687              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53688            }
53689          },
53690          "202": {
53691            "description": "Accepted",
53692            "schema": {
53693              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53694            }
53695          },
53696          "401": {
53697            "description": "Unauthorized"
53698          }
53699        },
53700        "schemes": [
53701          "https"
53702        ],
53703        "tags": [
53704          "authentication_v1"
53705        ],
53706        "x-kubernetes-action": "post",
53707        "x-kubernetes-group-version-kind": {
53708          "group": "authentication.k8s.io",
53709          "kind": "TokenReview",
53710          "version": "v1"
53711        }
53712      }
53713    },
53714    "/apis/authentication.k8s.io/v1beta1/": {
53715      "get": {
53716        "consumes": [
53717          "application/json",
53718          "application/yaml",
53719          "application/vnd.kubernetes.protobuf"
53720        ],
53721        "description": "get available resources",
53722        "operationId": "getAuthenticationV1beta1APIResources",
53723        "produces": [
53724          "application/json",
53725          "application/yaml",
53726          "application/vnd.kubernetes.protobuf"
53727        ],
53728        "responses": {
53729          "200": {
53730            "description": "OK",
53731            "schema": {
53732              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
53733            }
53734          },
53735          "401": {
53736            "description": "Unauthorized"
53737          }
53738        },
53739        "schemes": [
53740          "https"
53741        ],
53742        "tags": [
53743          "authentication_v1beta1"
53744        ]
53745      }
53746    },
53747    "/apis/authentication.k8s.io/v1beta1/tokenreviews": {
53748      "parameters": [
53749        {
53750          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53751          "in": "query",
53752          "name": "dryRun",
53753          "type": "string",
53754          "uniqueItems": true
53755        },
53756        {
53757          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53758          "in": "query",
53759          "name": "fieldManager",
53760          "type": "string",
53761          "uniqueItems": true
53762        },
53763        {
53764          "description": "If 'true', then the output is pretty printed.",
53765          "in": "query",
53766          "name": "pretty",
53767          "type": "string",
53768          "uniqueItems": true
53769        }
53770      ],
53771      "post": {
53772        "consumes": [
53773          "*/*"
53774        ],
53775        "description": "create a TokenReview",
53776        "operationId": "createAuthenticationV1beta1TokenReview",
53777        "parameters": [
53778          {
53779            "in": "body",
53780            "name": "body",
53781            "required": true,
53782            "schema": {
53783              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53784            }
53785          }
53786        ],
53787        "produces": [
53788          "application/json",
53789          "application/yaml",
53790          "application/vnd.kubernetes.protobuf"
53791        ],
53792        "responses": {
53793          "200": {
53794            "description": "OK",
53795            "schema": {
53796              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53797            }
53798          },
53799          "201": {
53800            "description": "Created",
53801            "schema": {
53802              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53803            }
53804          },
53805          "202": {
53806            "description": "Accepted",
53807            "schema": {
53808              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53809            }
53810          },
53811          "401": {
53812            "description": "Unauthorized"
53813          }
53814        },
53815        "schemes": [
53816          "https"
53817        ],
53818        "tags": [
53819          "authentication_v1beta1"
53820        ],
53821        "x-kubernetes-action": "post",
53822        "x-kubernetes-group-version-kind": {
53823          "group": "authentication.k8s.io",
53824          "kind": "TokenReview",
53825          "version": "v1beta1"
53826        }
53827      }
53828    },
53829    "/apis/authorization.k8s.io/": {
53830      "get": {
53831        "consumes": [
53832          "application/json",
53833          "application/yaml",
53834          "application/vnd.kubernetes.protobuf"
53835        ],
53836        "description": "get information of a group",
53837        "operationId": "getAuthorizationAPIGroup",
53838        "produces": [
53839          "application/json",
53840          "application/yaml",
53841          "application/vnd.kubernetes.protobuf"
53842        ],
53843        "responses": {
53844          "200": {
53845            "description": "OK",
53846            "schema": {
53847              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
53848            }
53849          },
53850          "401": {
53851            "description": "Unauthorized"
53852          }
53853        },
53854        "schemes": [
53855          "https"
53856        ],
53857        "tags": [
53858          "authorization"
53859        ]
53860      }
53861    },
53862    "/apis/authorization.k8s.io/v1/": {
53863      "get": {
53864        "consumes": [
53865          "application/json",
53866          "application/yaml",
53867          "application/vnd.kubernetes.protobuf"
53868        ],
53869        "description": "get available resources",
53870        "operationId": "getAuthorizationV1APIResources",
53871        "produces": [
53872          "application/json",
53873          "application/yaml",
53874          "application/vnd.kubernetes.protobuf"
53875        ],
53876        "responses": {
53877          "200": {
53878            "description": "OK",
53879            "schema": {
53880              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
53881            }
53882          },
53883          "401": {
53884            "description": "Unauthorized"
53885          }
53886        },
53887        "schemes": [
53888          "https"
53889        ],
53890        "tags": [
53891          "authorization_v1"
53892        ]
53893      }
53894    },
53895    "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews": {
53896      "parameters": [
53897        {
53898          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53899          "in": "query",
53900          "name": "dryRun",
53901          "type": "string",
53902          "uniqueItems": true
53903        },
53904        {
53905          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53906          "in": "query",
53907          "name": "fieldManager",
53908          "type": "string",
53909          "uniqueItems": true
53910        },
53911        {
53912          "description": "object name and auth scope, such as for teams and projects",
53913          "in": "path",
53914          "name": "namespace",
53915          "required": true,
53916          "type": "string",
53917          "uniqueItems": true
53918        },
53919        {
53920          "description": "If 'true', then the output is pretty printed.",
53921          "in": "query",
53922          "name": "pretty",
53923          "type": "string",
53924          "uniqueItems": true
53925        }
53926      ],
53927      "post": {
53928        "consumes": [
53929          "*/*"
53930        ],
53931        "description": "create a LocalSubjectAccessReview",
53932        "operationId": "createAuthorizationV1NamespacedLocalSubjectAccessReview",
53933        "parameters": [
53934          {
53935            "in": "body",
53936            "name": "body",
53937            "required": true,
53938            "schema": {
53939              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53940            }
53941          }
53942        ],
53943        "produces": [
53944          "application/json",
53945          "application/yaml",
53946          "application/vnd.kubernetes.protobuf"
53947        ],
53948        "responses": {
53949          "200": {
53950            "description": "OK",
53951            "schema": {
53952              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53953            }
53954          },
53955          "201": {
53956            "description": "Created",
53957            "schema": {
53958              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53959            }
53960          },
53961          "202": {
53962            "description": "Accepted",
53963            "schema": {
53964              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53965            }
53966          },
53967          "401": {
53968            "description": "Unauthorized"
53969          }
53970        },
53971        "schemes": [
53972          "https"
53973        ],
53974        "tags": [
53975          "authorization_v1"
53976        ],
53977        "x-kubernetes-action": "post",
53978        "x-kubernetes-group-version-kind": {
53979          "group": "authorization.k8s.io",
53980          "kind": "LocalSubjectAccessReview",
53981          "version": "v1"
53982        }
53983      }
53984    },
53985    "/apis/authorization.k8s.io/v1/selfsubjectaccessreviews": {
53986      "parameters": [
53987        {
53988          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53989          "in": "query",
53990          "name": "dryRun",
53991          "type": "string",
53992          "uniqueItems": true
53993        },
53994        {
53995          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53996          "in": "query",
53997          "name": "fieldManager",
53998          "type": "string",
53999          "uniqueItems": true
54000        },
54001        {
54002          "description": "If 'true', then the output is pretty printed.",
54003          "in": "query",
54004          "name": "pretty",
54005          "type": "string",
54006          "uniqueItems": true
54007        }
54008      ],
54009      "post": {
54010        "consumes": [
54011          "*/*"
54012        ],
54013        "description": "create a SelfSubjectAccessReview",
54014        "operationId": "createAuthorizationV1SelfSubjectAccessReview",
54015        "parameters": [
54016          {
54017            "in": "body",
54018            "name": "body",
54019            "required": true,
54020            "schema": {
54021              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54022            }
54023          }
54024        ],
54025        "produces": [
54026          "application/json",
54027          "application/yaml",
54028          "application/vnd.kubernetes.protobuf"
54029        ],
54030        "responses": {
54031          "200": {
54032            "description": "OK",
54033            "schema": {
54034              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54035            }
54036          },
54037          "201": {
54038            "description": "Created",
54039            "schema": {
54040              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54041            }
54042          },
54043          "202": {
54044            "description": "Accepted",
54045            "schema": {
54046              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54047            }
54048          },
54049          "401": {
54050            "description": "Unauthorized"
54051          }
54052        },
54053        "schemes": [
54054          "https"
54055        ],
54056        "tags": [
54057          "authorization_v1"
54058        ],
54059        "x-kubernetes-action": "post",
54060        "x-kubernetes-group-version-kind": {
54061          "group": "authorization.k8s.io",
54062          "kind": "SelfSubjectAccessReview",
54063          "version": "v1"
54064        }
54065      }
54066    },
54067    "/apis/authorization.k8s.io/v1/selfsubjectrulesreviews": {
54068      "parameters": [
54069        {
54070          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54071          "in": "query",
54072          "name": "dryRun",
54073          "type": "string",
54074          "uniqueItems": true
54075        },
54076        {
54077          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54078          "in": "query",
54079          "name": "fieldManager",
54080          "type": "string",
54081          "uniqueItems": true
54082        },
54083        {
54084          "description": "If 'true', then the output is pretty printed.",
54085          "in": "query",
54086          "name": "pretty",
54087          "type": "string",
54088          "uniqueItems": true
54089        }
54090      ],
54091      "post": {
54092        "consumes": [
54093          "*/*"
54094        ],
54095        "description": "create a SelfSubjectRulesReview",
54096        "operationId": "createAuthorizationV1SelfSubjectRulesReview",
54097        "parameters": [
54098          {
54099            "in": "body",
54100            "name": "body",
54101            "required": true,
54102            "schema": {
54103              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54104            }
54105          }
54106        ],
54107        "produces": [
54108          "application/json",
54109          "application/yaml",
54110          "application/vnd.kubernetes.protobuf"
54111        ],
54112        "responses": {
54113          "200": {
54114            "description": "OK",
54115            "schema": {
54116              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54117            }
54118          },
54119          "201": {
54120            "description": "Created",
54121            "schema": {
54122              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54123            }
54124          },
54125          "202": {
54126            "description": "Accepted",
54127            "schema": {
54128              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54129            }
54130          },
54131          "401": {
54132            "description": "Unauthorized"
54133          }
54134        },
54135        "schemes": [
54136          "https"
54137        ],
54138        "tags": [
54139          "authorization_v1"
54140        ],
54141        "x-kubernetes-action": "post",
54142        "x-kubernetes-group-version-kind": {
54143          "group": "authorization.k8s.io",
54144          "kind": "SelfSubjectRulesReview",
54145          "version": "v1"
54146        }
54147      }
54148    },
54149    "/apis/authorization.k8s.io/v1/subjectaccessreviews": {
54150      "parameters": [
54151        {
54152          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54153          "in": "query",
54154          "name": "dryRun",
54155          "type": "string",
54156          "uniqueItems": true
54157        },
54158        {
54159          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54160          "in": "query",
54161          "name": "fieldManager",
54162          "type": "string",
54163          "uniqueItems": true
54164        },
54165        {
54166          "description": "If 'true', then the output is pretty printed.",
54167          "in": "query",
54168          "name": "pretty",
54169          "type": "string",
54170          "uniqueItems": true
54171        }
54172      ],
54173      "post": {
54174        "consumes": [
54175          "*/*"
54176        ],
54177        "description": "create a SubjectAccessReview",
54178        "operationId": "createAuthorizationV1SubjectAccessReview",
54179        "parameters": [
54180          {
54181            "in": "body",
54182            "name": "body",
54183            "required": true,
54184            "schema": {
54185              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54186            }
54187          }
54188        ],
54189        "produces": [
54190          "application/json",
54191          "application/yaml",
54192          "application/vnd.kubernetes.protobuf"
54193        ],
54194        "responses": {
54195          "200": {
54196            "description": "OK",
54197            "schema": {
54198              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54199            }
54200          },
54201          "201": {
54202            "description": "Created",
54203            "schema": {
54204              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54205            }
54206          },
54207          "202": {
54208            "description": "Accepted",
54209            "schema": {
54210              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54211            }
54212          },
54213          "401": {
54214            "description": "Unauthorized"
54215          }
54216        },
54217        "schemes": [
54218          "https"
54219        ],
54220        "tags": [
54221          "authorization_v1"
54222        ],
54223        "x-kubernetes-action": "post",
54224        "x-kubernetes-group-version-kind": {
54225          "group": "authorization.k8s.io",
54226          "kind": "SubjectAccessReview",
54227          "version": "v1"
54228        }
54229      }
54230    },
54231    "/apis/authorization.k8s.io/v1beta1/": {
54232      "get": {
54233        "consumes": [
54234          "application/json",
54235          "application/yaml",
54236          "application/vnd.kubernetes.protobuf"
54237        ],
54238        "description": "get available resources",
54239        "operationId": "getAuthorizationV1beta1APIResources",
54240        "produces": [
54241          "application/json",
54242          "application/yaml",
54243          "application/vnd.kubernetes.protobuf"
54244        ],
54245        "responses": {
54246          "200": {
54247            "description": "OK",
54248            "schema": {
54249              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
54250            }
54251          },
54252          "401": {
54253            "description": "Unauthorized"
54254          }
54255        },
54256        "schemes": [
54257          "https"
54258        ],
54259        "tags": [
54260          "authorization_v1beta1"
54261        ]
54262      }
54263    },
54264    "/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews": {
54265      "parameters": [
54266        {
54267          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54268          "in": "query",
54269          "name": "dryRun",
54270          "type": "string",
54271          "uniqueItems": true
54272        },
54273        {
54274          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54275          "in": "query",
54276          "name": "fieldManager",
54277          "type": "string",
54278          "uniqueItems": true
54279        },
54280        {
54281          "description": "object name and auth scope, such as for teams and projects",
54282          "in": "path",
54283          "name": "namespace",
54284          "required": true,
54285          "type": "string",
54286          "uniqueItems": true
54287        },
54288        {
54289          "description": "If 'true', then the output is pretty printed.",
54290          "in": "query",
54291          "name": "pretty",
54292          "type": "string",
54293          "uniqueItems": true
54294        }
54295      ],
54296      "post": {
54297        "consumes": [
54298          "*/*"
54299        ],
54300        "description": "create a LocalSubjectAccessReview",
54301        "operationId": "createAuthorizationV1beta1NamespacedLocalSubjectAccessReview",
54302        "parameters": [
54303          {
54304            "in": "body",
54305            "name": "body",
54306            "required": true,
54307            "schema": {
54308              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54309            }
54310          }
54311        ],
54312        "produces": [
54313          "application/json",
54314          "application/yaml",
54315          "application/vnd.kubernetes.protobuf"
54316        ],
54317        "responses": {
54318          "200": {
54319            "description": "OK",
54320            "schema": {
54321              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54322            }
54323          },
54324          "201": {
54325            "description": "Created",
54326            "schema": {
54327              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54328            }
54329          },
54330          "202": {
54331            "description": "Accepted",
54332            "schema": {
54333              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54334            }
54335          },
54336          "401": {
54337            "description": "Unauthorized"
54338          }
54339        },
54340        "schemes": [
54341          "https"
54342        ],
54343        "tags": [
54344          "authorization_v1beta1"
54345        ],
54346        "x-kubernetes-action": "post",
54347        "x-kubernetes-group-version-kind": {
54348          "group": "authorization.k8s.io",
54349          "kind": "LocalSubjectAccessReview",
54350          "version": "v1beta1"
54351        }
54352      }
54353    },
54354    "/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews": {
54355      "parameters": [
54356        {
54357          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54358          "in": "query",
54359          "name": "dryRun",
54360          "type": "string",
54361          "uniqueItems": true
54362        },
54363        {
54364          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54365          "in": "query",
54366          "name": "fieldManager",
54367          "type": "string",
54368          "uniqueItems": true
54369        },
54370        {
54371          "description": "If 'true', then the output is pretty printed.",
54372          "in": "query",
54373          "name": "pretty",
54374          "type": "string",
54375          "uniqueItems": true
54376        }
54377      ],
54378      "post": {
54379        "consumes": [
54380          "*/*"
54381        ],
54382        "description": "create a SelfSubjectAccessReview",
54383        "operationId": "createAuthorizationV1beta1SelfSubjectAccessReview",
54384        "parameters": [
54385          {
54386            "in": "body",
54387            "name": "body",
54388            "required": true,
54389            "schema": {
54390              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54391            }
54392          }
54393        ],
54394        "produces": [
54395          "application/json",
54396          "application/yaml",
54397          "application/vnd.kubernetes.protobuf"
54398        ],
54399        "responses": {
54400          "200": {
54401            "description": "OK",
54402            "schema": {
54403              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54404            }
54405          },
54406          "201": {
54407            "description": "Created",
54408            "schema": {
54409              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54410            }
54411          },
54412          "202": {
54413            "description": "Accepted",
54414            "schema": {
54415              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54416            }
54417          },
54418          "401": {
54419            "description": "Unauthorized"
54420          }
54421        },
54422        "schemes": [
54423          "https"
54424        ],
54425        "tags": [
54426          "authorization_v1beta1"
54427        ],
54428        "x-kubernetes-action": "post",
54429        "x-kubernetes-group-version-kind": {
54430          "group": "authorization.k8s.io",
54431          "kind": "SelfSubjectAccessReview",
54432          "version": "v1beta1"
54433        }
54434      }
54435    },
54436    "/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews": {
54437      "parameters": [
54438        {
54439          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54440          "in": "query",
54441          "name": "dryRun",
54442          "type": "string",
54443          "uniqueItems": true
54444        },
54445        {
54446          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54447          "in": "query",
54448          "name": "fieldManager",
54449          "type": "string",
54450          "uniqueItems": true
54451        },
54452        {
54453          "description": "If 'true', then the output is pretty printed.",
54454          "in": "query",
54455          "name": "pretty",
54456          "type": "string",
54457          "uniqueItems": true
54458        }
54459      ],
54460      "post": {
54461        "consumes": [
54462          "*/*"
54463        ],
54464        "description": "create a SelfSubjectRulesReview",
54465        "operationId": "createAuthorizationV1beta1SelfSubjectRulesReview",
54466        "parameters": [
54467          {
54468            "in": "body",
54469            "name": "body",
54470            "required": true,
54471            "schema": {
54472              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54473            }
54474          }
54475        ],
54476        "produces": [
54477          "application/json",
54478          "application/yaml",
54479          "application/vnd.kubernetes.protobuf"
54480        ],
54481        "responses": {
54482          "200": {
54483            "description": "OK",
54484            "schema": {
54485              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54486            }
54487          },
54488          "201": {
54489            "description": "Created",
54490            "schema": {
54491              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54492            }
54493          },
54494          "202": {
54495            "description": "Accepted",
54496            "schema": {
54497              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54498            }
54499          },
54500          "401": {
54501            "description": "Unauthorized"
54502          }
54503        },
54504        "schemes": [
54505          "https"
54506        ],
54507        "tags": [
54508          "authorization_v1beta1"
54509        ],
54510        "x-kubernetes-action": "post",
54511        "x-kubernetes-group-version-kind": {
54512          "group": "authorization.k8s.io",
54513          "kind": "SelfSubjectRulesReview",
54514          "version": "v1beta1"
54515        }
54516      }
54517    },
54518    "/apis/authorization.k8s.io/v1beta1/subjectaccessreviews": {
54519      "parameters": [
54520        {
54521          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54522          "in": "query",
54523          "name": "dryRun",
54524          "type": "string",
54525          "uniqueItems": true
54526        },
54527        {
54528          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54529          "in": "query",
54530          "name": "fieldManager",
54531          "type": "string",
54532          "uniqueItems": true
54533        },
54534        {
54535          "description": "If 'true', then the output is pretty printed.",
54536          "in": "query",
54537          "name": "pretty",
54538          "type": "string",
54539          "uniqueItems": true
54540        }
54541      ],
54542      "post": {
54543        "consumes": [
54544          "*/*"
54545        ],
54546        "description": "create a SubjectAccessReview",
54547        "operationId": "createAuthorizationV1beta1SubjectAccessReview",
54548        "parameters": [
54549          {
54550            "in": "body",
54551            "name": "body",
54552            "required": true,
54553            "schema": {
54554              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54555            }
54556          }
54557        ],
54558        "produces": [
54559          "application/json",
54560          "application/yaml",
54561          "application/vnd.kubernetes.protobuf"
54562        ],
54563        "responses": {
54564          "200": {
54565            "description": "OK",
54566            "schema": {
54567              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54568            }
54569          },
54570          "201": {
54571            "description": "Created",
54572            "schema": {
54573              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54574            }
54575          },
54576          "202": {
54577            "description": "Accepted",
54578            "schema": {
54579              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54580            }
54581          },
54582          "401": {
54583            "description": "Unauthorized"
54584          }
54585        },
54586        "schemes": [
54587          "https"
54588        ],
54589        "tags": [
54590          "authorization_v1beta1"
54591        ],
54592        "x-kubernetes-action": "post",
54593        "x-kubernetes-group-version-kind": {
54594          "group": "authorization.k8s.io",
54595          "kind": "SubjectAccessReview",
54596          "version": "v1beta1"
54597        }
54598      }
54599    },
54600    "/apis/autoscaling/": {
54601      "get": {
54602        "consumes": [
54603          "application/json",
54604          "application/yaml",
54605          "application/vnd.kubernetes.protobuf"
54606        ],
54607        "description": "get information of a group",
54608        "operationId": "getAutoscalingAPIGroup",
54609        "produces": [
54610          "application/json",
54611          "application/yaml",
54612          "application/vnd.kubernetes.protobuf"
54613        ],
54614        "responses": {
54615          "200": {
54616            "description": "OK",
54617            "schema": {
54618              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
54619            }
54620          },
54621          "401": {
54622            "description": "Unauthorized"
54623          }
54624        },
54625        "schemes": [
54626          "https"
54627        ],
54628        "tags": [
54629          "autoscaling"
54630        ]
54631      }
54632    },
54633    "/apis/autoscaling/v1/": {
54634      "get": {
54635        "consumes": [
54636          "application/json",
54637          "application/yaml",
54638          "application/vnd.kubernetes.protobuf"
54639        ],
54640        "description": "get available resources",
54641        "operationId": "getAutoscalingV1APIResources",
54642        "produces": [
54643          "application/json",
54644          "application/yaml",
54645          "application/vnd.kubernetes.protobuf"
54646        ],
54647        "responses": {
54648          "200": {
54649            "description": "OK",
54650            "schema": {
54651              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
54652            }
54653          },
54654          "401": {
54655            "description": "Unauthorized"
54656          }
54657        },
54658        "schemes": [
54659          "https"
54660        ],
54661        "tags": [
54662          "autoscaling_v1"
54663        ]
54664      }
54665    },
54666    "/apis/autoscaling/v1/horizontalpodautoscalers": {
54667      "get": {
54668        "consumes": [
54669          "*/*"
54670        ],
54671        "description": "list or watch objects of kind HorizontalPodAutoscaler",
54672        "operationId": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces",
54673        "produces": [
54674          "application/json",
54675          "application/yaml",
54676          "application/vnd.kubernetes.protobuf",
54677          "application/json;stream=watch",
54678          "application/vnd.kubernetes.protobuf;stream=watch"
54679        ],
54680        "responses": {
54681          "200": {
54682            "description": "OK",
54683            "schema": {
54684              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
54685            }
54686          },
54687          "401": {
54688            "description": "Unauthorized"
54689          }
54690        },
54691        "schemes": [
54692          "https"
54693        ],
54694        "tags": [
54695          "autoscaling_v1"
54696        ],
54697        "x-kubernetes-action": "list",
54698        "x-kubernetes-group-version-kind": {
54699          "group": "autoscaling",
54700          "kind": "HorizontalPodAutoscaler",
54701          "version": "v1"
54702        }
54703      },
54704      "parameters": [
54705        {
54706          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
54707          "in": "query",
54708          "name": "allowWatchBookmarks",
54709          "type": "boolean",
54710          "uniqueItems": true
54711        },
54712        {
54713          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54714          "in": "query",
54715          "name": "continue",
54716          "type": "string",
54717          "uniqueItems": true
54718        },
54719        {
54720          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54721          "in": "query",
54722          "name": "fieldSelector",
54723          "type": "string",
54724          "uniqueItems": true
54725        },
54726        {
54727          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54728          "in": "query",
54729          "name": "labelSelector",
54730          "type": "string",
54731          "uniqueItems": true
54732        },
54733        {
54734          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54735          "in": "query",
54736          "name": "limit",
54737          "type": "integer",
54738          "uniqueItems": true
54739        },
54740        {
54741          "description": "If 'true', then the output is pretty printed.",
54742          "in": "query",
54743          "name": "pretty",
54744          "type": "string",
54745          "uniqueItems": true
54746        },
54747        {
54748          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54749          "in": "query",
54750          "name": "resourceVersion",
54751          "type": "string",
54752          "uniqueItems": true
54753        },
54754        {
54755          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54756          "in": "query",
54757          "name": "resourceVersionMatch",
54758          "type": "string",
54759          "uniqueItems": true
54760        },
54761        {
54762          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54763          "in": "query",
54764          "name": "timeoutSeconds",
54765          "type": "integer",
54766          "uniqueItems": true
54767        },
54768        {
54769          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54770          "in": "query",
54771          "name": "watch",
54772          "type": "boolean",
54773          "uniqueItems": true
54774        }
54775      ]
54776    },
54777    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers": {
54778      "delete": {
54779        "consumes": [
54780          "*/*"
54781        ],
54782        "description": "delete collection of HorizontalPodAutoscaler",
54783        "operationId": "deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler",
54784        "parameters": [
54785          {
54786            "in": "body",
54787            "name": "body",
54788            "schema": {
54789              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
54790            }
54791          },
54792          {
54793            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54794            "in": "query",
54795            "name": "continue",
54796            "type": "string",
54797            "uniqueItems": true
54798          },
54799          {
54800            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54801            "in": "query",
54802            "name": "dryRun",
54803            "type": "string",
54804            "uniqueItems": true
54805          },
54806          {
54807            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54808            "in": "query",
54809            "name": "fieldSelector",
54810            "type": "string",
54811            "uniqueItems": true
54812          },
54813          {
54814            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
54815            "in": "query",
54816            "name": "gracePeriodSeconds",
54817            "type": "integer",
54818            "uniqueItems": true
54819          },
54820          {
54821            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54822            "in": "query",
54823            "name": "labelSelector",
54824            "type": "string",
54825            "uniqueItems": true
54826          },
54827          {
54828            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54829            "in": "query",
54830            "name": "limit",
54831            "type": "integer",
54832            "uniqueItems": true
54833          },
54834          {
54835            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
54836            "in": "query",
54837            "name": "orphanDependents",
54838            "type": "boolean",
54839            "uniqueItems": true
54840          },
54841          {
54842            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
54843            "in": "query",
54844            "name": "propagationPolicy",
54845            "type": "string",
54846            "uniqueItems": true
54847          },
54848          {
54849            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54850            "in": "query",
54851            "name": "resourceVersion",
54852            "type": "string",
54853            "uniqueItems": true
54854          },
54855          {
54856            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54857            "in": "query",
54858            "name": "resourceVersionMatch",
54859            "type": "string",
54860            "uniqueItems": true
54861          },
54862          {
54863            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54864            "in": "query",
54865            "name": "timeoutSeconds",
54866            "type": "integer",
54867            "uniqueItems": true
54868          }
54869        ],
54870        "produces": [
54871          "application/json",
54872          "application/yaml",
54873          "application/vnd.kubernetes.protobuf"
54874        ],
54875        "responses": {
54876          "200": {
54877            "description": "OK",
54878            "schema": {
54879              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
54880            }
54881          },
54882          "401": {
54883            "description": "Unauthorized"
54884          }
54885        },
54886        "schemes": [
54887          "https"
54888        ],
54889        "tags": [
54890          "autoscaling_v1"
54891        ],
54892        "x-kubernetes-action": "deletecollection",
54893        "x-kubernetes-group-version-kind": {
54894          "group": "autoscaling",
54895          "kind": "HorizontalPodAutoscaler",
54896          "version": "v1"
54897        }
54898      },
54899      "get": {
54900        "consumes": [
54901          "*/*"
54902        ],
54903        "description": "list or watch objects of kind HorizontalPodAutoscaler",
54904        "operationId": "listAutoscalingV1NamespacedHorizontalPodAutoscaler",
54905        "parameters": [
54906          {
54907            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
54908            "in": "query",
54909            "name": "allowWatchBookmarks",
54910            "type": "boolean",
54911            "uniqueItems": true
54912          },
54913          {
54914            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54915            "in": "query",
54916            "name": "continue",
54917            "type": "string",
54918            "uniqueItems": true
54919          },
54920          {
54921            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54922            "in": "query",
54923            "name": "fieldSelector",
54924            "type": "string",
54925            "uniqueItems": true
54926          },
54927          {
54928            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54929            "in": "query",
54930            "name": "labelSelector",
54931            "type": "string",
54932            "uniqueItems": true
54933          },
54934          {
54935            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54936            "in": "query",
54937            "name": "limit",
54938            "type": "integer",
54939            "uniqueItems": true
54940          },
54941          {
54942            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54943            "in": "query",
54944            "name": "resourceVersion",
54945            "type": "string",
54946            "uniqueItems": true
54947          },
54948          {
54949            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54950            "in": "query",
54951            "name": "resourceVersionMatch",
54952            "type": "string",
54953            "uniqueItems": true
54954          },
54955          {
54956            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54957            "in": "query",
54958            "name": "timeoutSeconds",
54959            "type": "integer",
54960            "uniqueItems": true
54961          },
54962          {
54963            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54964            "in": "query",
54965            "name": "watch",
54966            "type": "boolean",
54967            "uniqueItems": true
54968          }
54969        ],
54970        "produces": [
54971          "application/json",
54972          "application/yaml",
54973          "application/vnd.kubernetes.protobuf",
54974          "application/json;stream=watch",
54975          "application/vnd.kubernetes.protobuf;stream=watch"
54976        ],
54977        "responses": {
54978          "200": {
54979            "description": "OK",
54980            "schema": {
54981              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
54982            }
54983          },
54984          "401": {
54985            "description": "Unauthorized"
54986          }
54987        },
54988        "schemes": [
54989          "https"
54990        ],
54991        "tags": [
54992          "autoscaling_v1"
54993        ],
54994        "x-kubernetes-action": "list",
54995        "x-kubernetes-group-version-kind": {
54996          "group": "autoscaling",
54997          "kind": "HorizontalPodAutoscaler",
54998          "version": "v1"
54999        }
55000      },
55001      "parameters": [
55002        {
55003          "description": "object name and auth scope, such as for teams and projects",
55004          "in": "path",
55005          "name": "namespace",
55006          "required": true,
55007          "type": "string",
55008          "uniqueItems": true
55009        },
55010        {
55011          "description": "If 'true', then the output is pretty printed.",
55012          "in": "query",
55013          "name": "pretty",
55014          "type": "string",
55015          "uniqueItems": true
55016        }
55017      ],
55018      "post": {
55019        "consumes": [
55020          "*/*"
55021        ],
55022        "description": "create a HorizontalPodAutoscaler",
55023        "operationId": "createAutoscalingV1NamespacedHorizontalPodAutoscaler",
55024        "parameters": [
55025          {
55026            "in": "body",
55027            "name": "body",
55028            "required": true,
55029            "schema": {
55030              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55031            }
55032          },
55033          {
55034            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55035            "in": "query",
55036            "name": "dryRun",
55037            "type": "string",
55038            "uniqueItems": true
55039          },
55040          {
55041            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55042            "in": "query",
55043            "name": "fieldManager",
55044            "type": "string",
55045            "uniqueItems": true
55046          }
55047        ],
55048        "produces": [
55049          "application/json",
55050          "application/yaml",
55051          "application/vnd.kubernetes.protobuf"
55052        ],
55053        "responses": {
55054          "200": {
55055            "description": "OK",
55056            "schema": {
55057              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55058            }
55059          },
55060          "201": {
55061            "description": "Created",
55062            "schema": {
55063              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55064            }
55065          },
55066          "202": {
55067            "description": "Accepted",
55068            "schema": {
55069              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55070            }
55071          },
55072          "401": {
55073            "description": "Unauthorized"
55074          }
55075        },
55076        "schemes": [
55077          "https"
55078        ],
55079        "tags": [
55080          "autoscaling_v1"
55081        ],
55082        "x-kubernetes-action": "post",
55083        "x-kubernetes-group-version-kind": {
55084          "group": "autoscaling",
55085          "kind": "HorizontalPodAutoscaler",
55086          "version": "v1"
55087        }
55088      }
55089    },
55090    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
55091      "delete": {
55092        "consumes": [
55093          "*/*"
55094        ],
55095        "description": "delete a HorizontalPodAutoscaler",
55096        "operationId": "deleteAutoscalingV1NamespacedHorizontalPodAutoscaler",
55097        "parameters": [
55098          {
55099            "in": "body",
55100            "name": "body",
55101            "schema": {
55102              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
55103            }
55104          },
55105          {
55106            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55107            "in": "query",
55108            "name": "dryRun",
55109            "type": "string",
55110            "uniqueItems": true
55111          },
55112          {
55113            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
55114            "in": "query",
55115            "name": "gracePeriodSeconds",
55116            "type": "integer",
55117            "uniqueItems": true
55118          },
55119          {
55120            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
55121            "in": "query",
55122            "name": "orphanDependents",
55123            "type": "boolean",
55124            "uniqueItems": true
55125          },
55126          {
55127            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
55128            "in": "query",
55129            "name": "propagationPolicy",
55130            "type": "string",
55131            "uniqueItems": true
55132          }
55133        ],
55134        "produces": [
55135          "application/json",
55136          "application/yaml",
55137          "application/vnd.kubernetes.protobuf"
55138        ],
55139        "responses": {
55140          "200": {
55141            "description": "OK",
55142            "schema": {
55143              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55144            }
55145          },
55146          "202": {
55147            "description": "Accepted",
55148            "schema": {
55149              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55150            }
55151          },
55152          "401": {
55153            "description": "Unauthorized"
55154          }
55155        },
55156        "schemes": [
55157          "https"
55158        ],
55159        "tags": [
55160          "autoscaling_v1"
55161        ],
55162        "x-kubernetes-action": "delete",
55163        "x-kubernetes-group-version-kind": {
55164          "group": "autoscaling",
55165          "kind": "HorizontalPodAutoscaler",
55166          "version": "v1"
55167        }
55168      },
55169      "get": {
55170        "consumes": [
55171          "*/*"
55172        ],
55173        "description": "read the specified HorizontalPodAutoscaler",
55174        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscaler",
55175        "produces": [
55176          "application/json",
55177          "application/yaml",
55178          "application/vnd.kubernetes.protobuf"
55179        ],
55180        "responses": {
55181          "200": {
55182            "description": "OK",
55183            "schema": {
55184              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55185            }
55186          },
55187          "401": {
55188            "description": "Unauthorized"
55189          }
55190        },
55191        "schemes": [
55192          "https"
55193        ],
55194        "tags": [
55195          "autoscaling_v1"
55196        ],
55197        "x-kubernetes-action": "get",
55198        "x-kubernetes-group-version-kind": {
55199          "group": "autoscaling",
55200          "kind": "HorizontalPodAutoscaler",
55201          "version": "v1"
55202        }
55203      },
55204      "parameters": [
55205        {
55206          "description": "name of the HorizontalPodAutoscaler",
55207          "in": "path",
55208          "name": "name",
55209          "required": true,
55210          "type": "string",
55211          "uniqueItems": true
55212        },
55213        {
55214          "description": "object name and auth scope, such as for teams and projects",
55215          "in": "path",
55216          "name": "namespace",
55217          "required": true,
55218          "type": "string",
55219          "uniqueItems": true
55220        },
55221        {
55222          "description": "If 'true', then the output is pretty printed.",
55223          "in": "query",
55224          "name": "pretty",
55225          "type": "string",
55226          "uniqueItems": true
55227        }
55228      ],
55229      "patch": {
55230        "consumes": [
55231          "application/json-patch+json",
55232          "application/merge-patch+json",
55233          "application/strategic-merge-patch+json",
55234          "application/apply-patch+yaml"
55235        ],
55236        "description": "partially update the specified HorizontalPodAutoscaler",
55237        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscaler",
55238        "parameters": [
55239          {
55240            "in": "body",
55241            "name": "body",
55242            "required": true,
55243            "schema": {
55244              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
55245            }
55246          },
55247          {
55248            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55249            "in": "query",
55250            "name": "dryRun",
55251            "type": "string",
55252            "uniqueItems": true
55253          },
55254          {
55255            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
55256            "in": "query",
55257            "name": "fieldManager",
55258            "type": "string",
55259            "uniqueItems": true
55260          },
55261          {
55262            "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.",
55263            "in": "query",
55264            "name": "force",
55265            "type": "boolean",
55266            "uniqueItems": true
55267          }
55268        ],
55269        "produces": [
55270          "application/json",
55271          "application/yaml",
55272          "application/vnd.kubernetes.protobuf"
55273        ],
55274        "responses": {
55275          "200": {
55276            "description": "OK",
55277            "schema": {
55278              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55279            }
55280          },
55281          "401": {
55282            "description": "Unauthorized"
55283          }
55284        },
55285        "schemes": [
55286          "https"
55287        ],
55288        "tags": [
55289          "autoscaling_v1"
55290        ],
55291        "x-kubernetes-action": "patch",
55292        "x-kubernetes-group-version-kind": {
55293          "group": "autoscaling",
55294          "kind": "HorizontalPodAutoscaler",
55295          "version": "v1"
55296        }
55297      },
55298      "put": {
55299        "consumes": [
55300          "*/*"
55301        ],
55302        "description": "replace the specified HorizontalPodAutoscaler",
55303        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscaler",
55304        "parameters": [
55305          {
55306            "in": "body",
55307            "name": "body",
55308            "required": true,
55309            "schema": {
55310              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55311            }
55312          },
55313          {
55314            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55315            "in": "query",
55316            "name": "dryRun",
55317            "type": "string",
55318            "uniqueItems": true
55319          },
55320          {
55321            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55322            "in": "query",
55323            "name": "fieldManager",
55324            "type": "string",
55325            "uniqueItems": true
55326          }
55327        ],
55328        "produces": [
55329          "application/json",
55330          "application/yaml",
55331          "application/vnd.kubernetes.protobuf"
55332        ],
55333        "responses": {
55334          "200": {
55335            "description": "OK",
55336            "schema": {
55337              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55338            }
55339          },
55340          "201": {
55341            "description": "Created",
55342            "schema": {
55343              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55344            }
55345          },
55346          "401": {
55347            "description": "Unauthorized"
55348          }
55349        },
55350        "schemes": [
55351          "https"
55352        ],
55353        "tags": [
55354          "autoscaling_v1"
55355        ],
55356        "x-kubernetes-action": "put",
55357        "x-kubernetes-group-version-kind": {
55358          "group": "autoscaling",
55359          "kind": "HorizontalPodAutoscaler",
55360          "version": "v1"
55361        }
55362      }
55363    },
55364    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
55365      "get": {
55366        "consumes": [
55367          "*/*"
55368        ],
55369        "description": "read status of the specified HorizontalPodAutoscaler",
55370        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
55371        "produces": [
55372          "application/json",
55373          "application/yaml",
55374          "application/vnd.kubernetes.protobuf"
55375        ],
55376        "responses": {
55377          "200": {
55378            "description": "OK",
55379            "schema": {
55380              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55381            }
55382          },
55383          "401": {
55384            "description": "Unauthorized"
55385          }
55386        },
55387        "schemes": [
55388          "https"
55389        ],
55390        "tags": [
55391          "autoscaling_v1"
55392        ],
55393        "x-kubernetes-action": "get",
55394        "x-kubernetes-group-version-kind": {
55395          "group": "autoscaling",
55396          "kind": "HorizontalPodAutoscaler",
55397          "version": "v1"
55398        }
55399      },
55400      "parameters": [
55401        {
55402          "description": "name of the HorizontalPodAutoscaler",
55403          "in": "path",
55404          "name": "name",
55405          "required": true,
55406          "type": "string",
55407          "uniqueItems": true
55408        },
55409        {
55410          "description": "object name and auth scope, such as for teams and projects",
55411          "in": "path",
55412          "name": "namespace",
55413          "required": true,
55414          "type": "string",
55415          "uniqueItems": true
55416        },
55417        {
55418          "description": "If 'true', then the output is pretty printed.",
55419          "in": "query",
55420          "name": "pretty",
55421          "type": "string",
55422          "uniqueItems": true
55423        }
55424      ],
55425      "patch": {
55426        "consumes": [
55427          "application/json-patch+json",
55428          "application/merge-patch+json",
55429          "application/strategic-merge-patch+json",
55430          "application/apply-patch+yaml"
55431        ],
55432        "description": "partially update status of the specified HorizontalPodAutoscaler",
55433        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
55434        "parameters": [
55435          {
55436            "in": "body",
55437            "name": "body",
55438            "required": true,
55439            "schema": {
55440              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
55441            }
55442          },
55443          {
55444            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55445            "in": "query",
55446            "name": "dryRun",
55447            "type": "string",
55448            "uniqueItems": true
55449          },
55450          {
55451            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
55452            "in": "query",
55453            "name": "fieldManager",
55454            "type": "string",
55455            "uniqueItems": true
55456          },
55457          {
55458            "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.",
55459            "in": "query",
55460            "name": "force",
55461            "type": "boolean",
55462            "uniqueItems": true
55463          }
55464        ],
55465        "produces": [
55466          "application/json",
55467          "application/yaml",
55468          "application/vnd.kubernetes.protobuf"
55469        ],
55470        "responses": {
55471          "200": {
55472            "description": "OK",
55473            "schema": {
55474              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55475            }
55476          },
55477          "401": {
55478            "description": "Unauthorized"
55479          }
55480        },
55481        "schemes": [
55482          "https"
55483        ],
55484        "tags": [
55485          "autoscaling_v1"
55486        ],
55487        "x-kubernetes-action": "patch",
55488        "x-kubernetes-group-version-kind": {
55489          "group": "autoscaling",
55490          "kind": "HorizontalPodAutoscaler",
55491          "version": "v1"
55492        }
55493      },
55494      "put": {
55495        "consumes": [
55496          "*/*"
55497        ],
55498        "description": "replace status of the specified HorizontalPodAutoscaler",
55499        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
55500        "parameters": [
55501          {
55502            "in": "body",
55503            "name": "body",
55504            "required": true,
55505            "schema": {
55506              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55507            }
55508          },
55509          {
55510            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55511            "in": "query",
55512            "name": "dryRun",
55513            "type": "string",
55514            "uniqueItems": true
55515          },
55516          {
55517            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55518            "in": "query",
55519            "name": "fieldManager",
55520            "type": "string",
55521            "uniqueItems": true
55522          }
55523        ],
55524        "produces": [
55525          "application/json",
55526          "application/yaml",
55527          "application/vnd.kubernetes.protobuf"
55528        ],
55529        "responses": {
55530          "200": {
55531            "description": "OK",
55532            "schema": {
55533              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55534            }
55535          },
55536          "201": {
55537            "description": "Created",
55538            "schema": {
55539              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55540            }
55541          },
55542          "401": {
55543            "description": "Unauthorized"
55544          }
55545        },
55546        "schemes": [
55547          "https"
55548        ],
55549        "tags": [
55550          "autoscaling_v1"
55551        ],
55552        "x-kubernetes-action": "put",
55553        "x-kubernetes-group-version-kind": {
55554          "group": "autoscaling",
55555          "kind": "HorizontalPodAutoscaler",
55556          "version": "v1"
55557        }
55558      }
55559    },
55560    "/apis/autoscaling/v1/watch/horizontalpodautoscalers": {
55561      "get": {
55562        "consumes": [
55563          "*/*"
55564        ],
55565        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
55566        "operationId": "watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces",
55567        "produces": [
55568          "application/json",
55569          "application/yaml",
55570          "application/vnd.kubernetes.protobuf",
55571          "application/json;stream=watch",
55572          "application/vnd.kubernetes.protobuf;stream=watch"
55573        ],
55574        "responses": {
55575          "200": {
55576            "description": "OK",
55577            "schema": {
55578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55579            }
55580          },
55581          "401": {
55582            "description": "Unauthorized"
55583          }
55584        },
55585        "schemes": [
55586          "https"
55587        ],
55588        "tags": [
55589          "autoscaling_v1"
55590        ],
55591        "x-kubernetes-action": "watchlist",
55592        "x-kubernetes-group-version-kind": {
55593          "group": "autoscaling",
55594          "kind": "HorizontalPodAutoscaler",
55595          "version": "v1"
55596        }
55597      },
55598      "parameters": [
55599        {
55600          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55601          "in": "query",
55602          "name": "allowWatchBookmarks",
55603          "type": "boolean",
55604          "uniqueItems": true
55605        },
55606        {
55607          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55608          "in": "query",
55609          "name": "continue",
55610          "type": "string",
55611          "uniqueItems": true
55612        },
55613        {
55614          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55615          "in": "query",
55616          "name": "fieldSelector",
55617          "type": "string",
55618          "uniqueItems": true
55619        },
55620        {
55621          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55622          "in": "query",
55623          "name": "labelSelector",
55624          "type": "string",
55625          "uniqueItems": true
55626        },
55627        {
55628          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55629          "in": "query",
55630          "name": "limit",
55631          "type": "integer",
55632          "uniqueItems": true
55633        },
55634        {
55635          "description": "If 'true', then the output is pretty printed.",
55636          "in": "query",
55637          "name": "pretty",
55638          "type": "string",
55639          "uniqueItems": true
55640        },
55641        {
55642          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55643          "in": "query",
55644          "name": "resourceVersion",
55645          "type": "string",
55646          "uniqueItems": true
55647        },
55648        {
55649          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55650          "in": "query",
55651          "name": "resourceVersionMatch",
55652          "type": "string",
55653          "uniqueItems": true
55654        },
55655        {
55656          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55657          "in": "query",
55658          "name": "timeoutSeconds",
55659          "type": "integer",
55660          "uniqueItems": true
55661        },
55662        {
55663          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55664          "in": "query",
55665          "name": "watch",
55666          "type": "boolean",
55667          "uniqueItems": true
55668        }
55669      ]
55670    },
55671    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
55672      "get": {
55673        "consumes": [
55674          "*/*"
55675        ],
55676        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
55677        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscalerList",
55678        "produces": [
55679          "application/json",
55680          "application/yaml",
55681          "application/vnd.kubernetes.protobuf",
55682          "application/json;stream=watch",
55683          "application/vnd.kubernetes.protobuf;stream=watch"
55684        ],
55685        "responses": {
55686          "200": {
55687            "description": "OK",
55688            "schema": {
55689              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55690            }
55691          },
55692          "401": {
55693            "description": "Unauthorized"
55694          }
55695        },
55696        "schemes": [
55697          "https"
55698        ],
55699        "tags": [
55700          "autoscaling_v1"
55701        ],
55702        "x-kubernetes-action": "watchlist",
55703        "x-kubernetes-group-version-kind": {
55704          "group": "autoscaling",
55705          "kind": "HorizontalPodAutoscaler",
55706          "version": "v1"
55707        }
55708      },
55709      "parameters": [
55710        {
55711          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55712          "in": "query",
55713          "name": "allowWatchBookmarks",
55714          "type": "boolean",
55715          "uniqueItems": true
55716        },
55717        {
55718          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55719          "in": "query",
55720          "name": "continue",
55721          "type": "string",
55722          "uniqueItems": true
55723        },
55724        {
55725          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55726          "in": "query",
55727          "name": "fieldSelector",
55728          "type": "string",
55729          "uniqueItems": true
55730        },
55731        {
55732          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55733          "in": "query",
55734          "name": "labelSelector",
55735          "type": "string",
55736          "uniqueItems": true
55737        },
55738        {
55739          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55740          "in": "query",
55741          "name": "limit",
55742          "type": "integer",
55743          "uniqueItems": true
55744        },
55745        {
55746          "description": "object name and auth scope, such as for teams and projects",
55747          "in": "path",
55748          "name": "namespace",
55749          "required": true,
55750          "type": "string",
55751          "uniqueItems": true
55752        },
55753        {
55754          "description": "If 'true', then the output is pretty printed.",
55755          "in": "query",
55756          "name": "pretty",
55757          "type": "string",
55758          "uniqueItems": true
55759        },
55760        {
55761          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55762          "in": "query",
55763          "name": "resourceVersion",
55764          "type": "string",
55765          "uniqueItems": true
55766        },
55767        {
55768          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55769          "in": "query",
55770          "name": "resourceVersionMatch",
55771          "type": "string",
55772          "uniqueItems": true
55773        },
55774        {
55775          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55776          "in": "query",
55777          "name": "timeoutSeconds",
55778          "type": "integer",
55779          "uniqueItems": true
55780        },
55781        {
55782          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55783          "in": "query",
55784          "name": "watch",
55785          "type": "boolean",
55786          "uniqueItems": true
55787        }
55788      ]
55789    },
55790    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
55791      "get": {
55792        "consumes": [
55793          "*/*"
55794        ],
55795        "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.",
55796        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscaler",
55797        "produces": [
55798          "application/json",
55799          "application/yaml",
55800          "application/vnd.kubernetes.protobuf",
55801          "application/json;stream=watch",
55802          "application/vnd.kubernetes.protobuf;stream=watch"
55803        ],
55804        "responses": {
55805          "200": {
55806            "description": "OK",
55807            "schema": {
55808              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55809            }
55810          },
55811          "401": {
55812            "description": "Unauthorized"
55813          }
55814        },
55815        "schemes": [
55816          "https"
55817        ],
55818        "tags": [
55819          "autoscaling_v1"
55820        ],
55821        "x-kubernetes-action": "watch",
55822        "x-kubernetes-group-version-kind": {
55823          "group": "autoscaling",
55824          "kind": "HorizontalPodAutoscaler",
55825          "version": "v1"
55826        }
55827      },
55828      "parameters": [
55829        {
55830          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55831          "in": "query",
55832          "name": "allowWatchBookmarks",
55833          "type": "boolean",
55834          "uniqueItems": true
55835        },
55836        {
55837          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55838          "in": "query",
55839          "name": "continue",
55840          "type": "string",
55841          "uniqueItems": true
55842        },
55843        {
55844          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55845          "in": "query",
55846          "name": "fieldSelector",
55847          "type": "string",
55848          "uniqueItems": true
55849        },
55850        {
55851          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55852          "in": "query",
55853          "name": "labelSelector",
55854          "type": "string",
55855          "uniqueItems": true
55856        },
55857        {
55858          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55859          "in": "query",
55860          "name": "limit",
55861          "type": "integer",
55862          "uniqueItems": true
55863        },
55864        {
55865          "description": "name of the HorizontalPodAutoscaler",
55866          "in": "path",
55867          "name": "name",
55868          "required": true,
55869          "type": "string",
55870          "uniqueItems": true
55871        },
55872        {
55873          "description": "object name and auth scope, such as for teams and projects",
55874          "in": "path",
55875          "name": "namespace",
55876          "required": true,
55877          "type": "string",
55878          "uniqueItems": true
55879        },
55880        {
55881          "description": "If 'true', then the output is pretty printed.",
55882          "in": "query",
55883          "name": "pretty",
55884          "type": "string",
55885          "uniqueItems": true
55886        },
55887        {
55888          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55889          "in": "query",
55890          "name": "resourceVersion",
55891          "type": "string",
55892          "uniqueItems": true
55893        },
55894        {
55895          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55896          "in": "query",
55897          "name": "resourceVersionMatch",
55898          "type": "string",
55899          "uniqueItems": true
55900        },
55901        {
55902          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55903          "in": "query",
55904          "name": "timeoutSeconds",
55905          "type": "integer",
55906          "uniqueItems": true
55907        },
55908        {
55909          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55910          "in": "query",
55911          "name": "watch",
55912          "type": "boolean",
55913          "uniqueItems": true
55914        }
55915      ]
55916    },
55917    "/apis/autoscaling/v2beta1/": {
55918      "get": {
55919        "consumes": [
55920          "application/json",
55921          "application/yaml",
55922          "application/vnd.kubernetes.protobuf"
55923        ],
55924        "description": "get available resources",
55925        "operationId": "getAutoscalingV2beta1APIResources",
55926        "produces": [
55927          "application/json",
55928          "application/yaml",
55929          "application/vnd.kubernetes.protobuf"
55930        ],
55931        "responses": {
55932          "200": {
55933            "description": "OK",
55934            "schema": {
55935              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
55936            }
55937          },
55938          "401": {
55939            "description": "Unauthorized"
55940          }
55941        },
55942        "schemes": [
55943          "https"
55944        ],
55945        "tags": [
55946          "autoscaling_v2beta1"
55947        ]
55948      }
55949    },
55950    "/apis/autoscaling/v2beta1/horizontalpodautoscalers": {
55951      "get": {
55952        "consumes": [
55953          "*/*"
55954        ],
55955        "description": "list or watch objects of kind HorizontalPodAutoscaler",
55956        "operationId": "listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces",
55957        "produces": [
55958          "application/json",
55959          "application/yaml",
55960          "application/vnd.kubernetes.protobuf",
55961          "application/json;stream=watch",
55962          "application/vnd.kubernetes.protobuf;stream=watch"
55963        ],
55964        "responses": {
55965          "200": {
55966            "description": "OK",
55967            "schema": {
55968              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
55969            }
55970          },
55971          "401": {
55972            "description": "Unauthorized"
55973          }
55974        },
55975        "schemes": [
55976          "https"
55977        ],
55978        "tags": [
55979          "autoscaling_v2beta1"
55980        ],
55981        "x-kubernetes-action": "list",
55982        "x-kubernetes-group-version-kind": {
55983          "group": "autoscaling",
55984          "kind": "HorizontalPodAutoscaler",
55985          "version": "v2beta1"
55986        }
55987      },
55988      "parameters": [
55989        {
55990          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55991          "in": "query",
55992          "name": "allowWatchBookmarks",
55993          "type": "boolean",
55994          "uniqueItems": true
55995        },
55996        {
55997          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55998          "in": "query",
55999          "name": "continue",
56000          "type": "string",
56001          "uniqueItems": true
56002        },
56003        {
56004          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56005          "in": "query",
56006          "name": "fieldSelector",
56007          "type": "string",
56008          "uniqueItems": true
56009        },
56010        {
56011          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56012          "in": "query",
56013          "name": "labelSelector",
56014          "type": "string",
56015          "uniqueItems": true
56016        },
56017        {
56018          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56019          "in": "query",
56020          "name": "limit",
56021          "type": "integer",
56022          "uniqueItems": true
56023        },
56024        {
56025          "description": "If 'true', then the output is pretty printed.",
56026          "in": "query",
56027          "name": "pretty",
56028          "type": "string",
56029          "uniqueItems": true
56030        },
56031        {
56032          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56033          "in": "query",
56034          "name": "resourceVersion",
56035          "type": "string",
56036          "uniqueItems": true
56037        },
56038        {
56039          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56040          "in": "query",
56041          "name": "resourceVersionMatch",
56042          "type": "string",
56043          "uniqueItems": true
56044        },
56045        {
56046          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56047          "in": "query",
56048          "name": "timeoutSeconds",
56049          "type": "integer",
56050          "uniqueItems": true
56051        },
56052        {
56053          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56054          "in": "query",
56055          "name": "watch",
56056          "type": "boolean",
56057          "uniqueItems": true
56058        }
56059      ]
56060    },
56061    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers": {
56062      "delete": {
56063        "consumes": [
56064          "*/*"
56065        ],
56066        "description": "delete collection of HorizontalPodAutoscaler",
56067        "operationId": "deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler",
56068        "parameters": [
56069          {
56070            "in": "body",
56071            "name": "body",
56072            "schema": {
56073              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56074            }
56075          },
56076          {
56077            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56078            "in": "query",
56079            "name": "continue",
56080            "type": "string",
56081            "uniqueItems": true
56082          },
56083          {
56084            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56085            "in": "query",
56086            "name": "dryRun",
56087            "type": "string",
56088            "uniqueItems": true
56089          },
56090          {
56091            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56092            "in": "query",
56093            "name": "fieldSelector",
56094            "type": "string",
56095            "uniqueItems": true
56096          },
56097          {
56098            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
56099            "in": "query",
56100            "name": "gracePeriodSeconds",
56101            "type": "integer",
56102            "uniqueItems": true
56103          },
56104          {
56105            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56106            "in": "query",
56107            "name": "labelSelector",
56108            "type": "string",
56109            "uniqueItems": true
56110          },
56111          {
56112            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56113            "in": "query",
56114            "name": "limit",
56115            "type": "integer",
56116            "uniqueItems": true
56117          },
56118          {
56119            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
56120            "in": "query",
56121            "name": "orphanDependents",
56122            "type": "boolean",
56123            "uniqueItems": true
56124          },
56125          {
56126            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
56127            "in": "query",
56128            "name": "propagationPolicy",
56129            "type": "string",
56130            "uniqueItems": true
56131          },
56132          {
56133            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56134            "in": "query",
56135            "name": "resourceVersion",
56136            "type": "string",
56137            "uniqueItems": true
56138          },
56139          {
56140            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56141            "in": "query",
56142            "name": "resourceVersionMatch",
56143            "type": "string",
56144            "uniqueItems": true
56145          },
56146          {
56147            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56148            "in": "query",
56149            "name": "timeoutSeconds",
56150            "type": "integer",
56151            "uniqueItems": true
56152          }
56153        ],
56154        "produces": [
56155          "application/json",
56156          "application/yaml",
56157          "application/vnd.kubernetes.protobuf"
56158        ],
56159        "responses": {
56160          "200": {
56161            "description": "OK",
56162            "schema": {
56163              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56164            }
56165          },
56166          "401": {
56167            "description": "Unauthorized"
56168          }
56169        },
56170        "schemes": [
56171          "https"
56172        ],
56173        "tags": [
56174          "autoscaling_v2beta1"
56175        ],
56176        "x-kubernetes-action": "deletecollection",
56177        "x-kubernetes-group-version-kind": {
56178          "group": "autoscaling",
56179          "kind": "HorizontalPodAutoscaler",
56180          "version": "v2beta1"
56181        }
56182      },
56183      "get": {
56184        "consumes": [
56185          "*/*"
56186        ],
56187        "description": "list or watch objects of kind HorizontalPodAutoscaler",
56188        "operationId": "listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56189        "parameters": [
56190          {
56191            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
56192            "in": "query",
56193            "name": "allowWatchBookmarks",
56194            "type": "boolean",
56195            "uniqueItems": true
56196          },
56197          {
56198            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56199            "in": "query",
56200            "name": "continue",
56201            "type": "string",
56202            "uniqueItems": true
56203          },
56204          {
56205            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56206            "in": "query",
56207            "name": "fieldSelector",
56208            "type": "string",
56209            "uniqueItems": true
56210          },
56211          {
56212            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56213            "in": "query",
56214            "name": "labelSelector",
56215            "type": "string",
56216            "uniqueItems": true
56217          },
56218          {
56219            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56220            "in": "query",
56221            "name": "limit",
56222            "type": "integer",
56223            "uniqueItems": true
56224          },
56225          {
56226            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56227            "in": "query",
56228            "name": "resourceVersion",
56229            "type": "string",
56230            "uniqueItems": true
56231          },
56232          {
56233            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56234            "in": "query",
56235            "name": "resourceVersionMatch",
56236            "type": "string",
56237            "uniqueItems": true
56238          },
56239          {
56240            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56241            "in": "query",
56242            "name": "timeoutSeconds",
56243            "type": "integer",
56244            "uniqueItems": true
56245          },
56246          {
56247            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56248            "in": "query",
56249            "name": "watch",
56250            "type": "boolean",
56251            "uniqueItems": true
56252          }
56253        ],
56254        "produces": [
56255          "application/json",
56256          "application/yaml",
56257          "application/vnd.kubernetes.protobuf",
56258          "application/json;stream=watch",
56259          "application/vnd.kubernetes.protobuf;stream=watch"
56260        ],
56261        "responses": {
56262          "200": {
56263            "description": "OK",
56264            "schema": {
56265              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
56266            }
56267          },
56268          "401": {
56269            "description": "Unauthorized"
56270          }
56271        },
56272        "schemes": [
56273          "https"
56274        ],
56275        "tags": [
56276          "autoscaling_v2beta1"
56277        ],
56278        "x-kubernetes-action": "list",
56279        "x-kubernetes-group-version-kind": {
56280          "group": "autoscaling",
56281          "kind": "HorizontalPodAutoscaler",
56282          "version": "v2beta1"
56283        }
56284      },
56285      "parameters": [
56286        {
56287          "description": "object name and auth scope, such as for teams and projects",
56288          "in": "path",
56289          "name": "namespace",
56290          "required": true,
56291          "type": "string",
56292          "uniqueItems": true
56293        },
56294        {
56295          "description": "If 'true', then the output is pretty printed.",
56296          "in": "query",
56297          "name": "pretty",
56298          "type": "string",
56299          "uniqueItems": true
56300        }
56301      ],
56302      "post": {
56303        "consumes": [
56304          "*/*"
56305        ],
56306        "description": "create a HorizontalPodAutoscaler",
56307        "operationId": "createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56308        "parameters": [
56309          {
56310            "in": "body",
56311            "name": "body",
56312            "required": true,
56313            "schema": {
56314              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56315            }
56316          },
56317          {
56318            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56319            "in": "query",
56320            "name": "dryRun",
56321            "type": "string",
56322            "uniqueItems": true
56323          },
56324          {
56325            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56326            "in": "query",
56327            "name": "fieldManager",
56328            "type": "string",
56329            "uniqueItems": true
56330          }
56331        ],
56332        "produces": [
56333          "application/json",
56334          "application/yaml",
56335          "application/vnd.kubernetes.protobuf"
56336        ],
56337        "responses": {
56338          "200": {
56339            "description": "OK",
56340            "schema": {
56341              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56342            }
56343          },
56344          "201": {
56345            "description": "Created",
56346            "schema": {
56347              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56348            }
56349          },
56350          "202": {
56351            "description": "Accepted",
56352            "schema": {
56353              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56354            }
56355          },
56356          "401": {
56357            "description": "Unauthorized"
56358          }
56359        },
56360        "schemes": [
56361          "https"
56362        ],
56363        "tags": [
56364          "autoscaling_v2beta1"
56365        ],
56366        "x-kubernetes-action": "post",
56367        "x-kubernetes-group-version-kind": {
56368          "group": "autoscaling",
56369          "kind": "HorizontalPodAutoscaler",
56370          "version": "v2beta1"
56371        }
56372      }
56373    },
56374    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
56375      "delete": {
56376        "consumes": [
56377          "*/*"
56378        ],
56379        "description": "delete a HorizontalPodAutoscaler",
56380        "operationId": "deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56381        "parameters": [
56382          {
56383            "in": "body",
56384            "name": "body",
56385            "schema": {
56386              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56387            }
56388          },
56389          {
56390            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56391            "in": "query",
56392            "name": "dryRun",
56393            "type": "string",
56394            "uniqueItems": true
56395          },
56396          {
56397            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
56398            "in": "query",
56399            "name": "gracePeriodSeconds",
56400            "type": "integer",
56401            "uniqueItems": true
56402          },
56403          {
56404            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
56405            "in": "query",
56406            "name": "orphanDependents",
56407            "type": "boolean",
56408            "uniqueItems": true
56409          },
56410          {
56411            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
56412            "in": "query",
56413            "name": "propagationPolicy",
56414            "type": "string",
56415            "uniqueItems": true
56416          }
56417        ],
56418        "produces": [
56419          "application/json",
56420          "application/yaml",
56421          "application/vnd.kubernetes.protobuf"
56422        ],
56423        "responses": {
56424          "200": {
56425            "description": "OK",
56426            "schema": {
56427              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56428            }
56429          },
56430          "202": {
56431            "description": "Accepted",
56432            "schema": {
56433              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56434            }
56435          },
56436          "401": {
56437            "description": "Unauthorized"
56438          }
56439        },
56440        "schemes": [
56441          "https"
56442        ],
56443        "tags": [
56444          "autoscaling_v2beta1"
56445        ],
56446        "x-kubernetes-action": "delete",
56447        "x-kubernetes-group-version-kind": {
56448          "group": "autoscaling",
56449          "kind": "HorizontalPodAutoscaler",
56450          "version": "v2beta1"
56451        }
56452      },
56453      "get": {
56454        "consumes": [
56455          "*/*"
56456        ],
56457        "description": "read the specified HorizontalPodAutoscaler",
56458        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56459        "produces": [
56460          "application/json",
56461          "application/yaml",
56462          "application/vnd.kubernetes.protobuf"
56463        ],
56464        "responses": {
56465          "200": {
56466            "description": "OK",
56467            "schema": {
56468              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56469            }
56470          },
56471          "401": {
56472            "description": "Unauthorized"
56473          }
56474        },
56475        "schemes": [
56476          "https"
56477        ],
56478        "tags": [
56479          "autoscaling_v2beta1"
56480        ],
56481        "x-kubernetes-action": "get",
56482        "x-kubernetes-group-version-kind": {
56483          "group": "autoscaling",
56484          "kind": "HorizontalPodAutoscaler",
56485          "version": "v2beta1"
56486        }
56487      },
56488      "parameters": [
56489        {
56490          "description": "name of the HorizontalPodAutoscaler",
56491          "in": "path",
56492          "name": "name",
56493          "required": true,
56494          "type": "string",
56495          "uniqueItems": true
56496        },
56497        {
56498          "description": "object name and auth scope, such as for teams and projects",
56499          "in": "path",
56500          "name": "namespace",
56501          "required": true,
56502          "type": "string",
56503          "uniqueItems": true
56504        },
56505        {
56506          "description": "If 'true', then the output is pretty printed.",
56507          "in": "query",
56508          "name": "pretty",
56509          "type": "string",
56510          "uniqueItems": true
56511        }
56512      ],
56513      "patch": {
56514        "consumes": [
56515          "application/json-patch+json",
56516          "application/merge-patch+json",
56517          "application/strategic-merge-patch+json",
56518          "application/apply-patch+yaml"
56519        ],
56520        "description": "partially update the specified HorizontalPodAutoscaler",
56521        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56522        "parameters": [
56523          {
56524            "in": "body",
56525            "name": "body",
56526            "required": true,
56527            "schema": {
56528              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
56529            }
56530          },
56531          {
56532            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56533            "in": "query",
56534            "name": "dryRun",
56535            "type": "string",
56536            "uniqueItems": true
56537          },
56538          {
56539            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
56540            "in": "query",
56541            "name": "fieldManager",
56542            "type": "string",
56543            "uniqueItems": true
56544          },
56545          {
56546            "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.",
56547            "in": "query",
56548            "name": "force",
56549            "type": "boolean",
56550            "uniqueItems": true
56551          }
56552        ],
56553        "produces": [
56554          "application/json",
56555          "application/yaml",
56556          "application/vnd.kubernetes.protobuf"
56557        ],
56558        "responses": {
56559          "200": {
56560            "description": "OK",
56561            "schema": {
56562              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56563            }
56564          },
56565          "401": {
56566            "description": "Unauthorized"
56567          }
56568        },
56569        "schemes": [
56570          "https"
56571        ],
56572        "tags": [
56573          "autoscaling_v2beta1"
56574        ],
56575        "x-kubernetes-action": "patch",
56576        "x-kubernetes-group-version-kind": {
56577          "group": "autoscaling",
56578          "kind": "HorizontalPodAutoscaler",
56579          "version": "v2beta1"
56580        }
56581      },
56582      "put": {
56583        "consumes": [
56584          "*/*"
56585        ],
56586        "description": "replace the specified HorizontalPodAutoscaler",
56587        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56588        "parameters": [
56589          {
56590            "in": "body",
56591            "name": "body",
56592            "required": true,
56593            "schema": {
56594              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56595            }
56596          },
56597          {
56598            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56599            "in": "query",
56600            "name": "dryRun",
56601            "type": "string",
56602            "uniqueItems": true
56603          },
56604          {
56605            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56606            "in": "query",
56607            "name": "fieldManager",
56608            "type": "string",
56609            "uniqueItems": true
56610          }
56611        ],
56612        "produces": [
56613          "application/json",
56614          "application/yaml",
56615          "application/vnd.kubernetes.protobuf"
56616        ],
56617        "responses": {
56618          "200": {
56619            "description": "OK",
56620            "schema": {
56621              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56622            }
56623          },
56624          "201": {
56625            "description": "Created",
56626            "schema": {
56627              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56628            }
56629          },
56630          "401": {
56631            "description": "Unauthorized"
56632          }
56633        },
56634        "schemes": [
56635          "https"
56636        ],
56637        "tags": [
56638          "autoscaling_v2beta1"
56639        ],
56640        "x-kubernetes-action": "put",
56641        "x-kubernetes-group-version-kind": {
56642          "group": "autoscaling",
56643          "kind": "HorizontalPodAutoscaler",
56644          "version": "v2beta1"
56645        }
56646      }
56647    },
56648    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
56649      "get": {
56650        "consumes": [
56651          "*/*"
56652        ],
56653        "description": "read status of the specified HorizontalPodAutoscaler",
56654        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
56655        "produces": [
56656          "application/json",
56657          "application/yaml",
56658          "application/vnd.kubernetes.protobuf"
56659        ],
56660        "responses": {
56661          "200": {
56662            "description": "OK",
56663            "schema": {
56664              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56665            }
56666          },
56667          "401": {
56668            "description": "Unauthorized"
56669          }
56670        },
56671        "schemes": [
56672          "https"
56673        ],
56674        "tags": [
56675          "autoscaling_v2beta1"
56676        ],
56677        "x-kubernetes-action": "get",
56678        "x-kubernetes-group-version-kind": {
56679          "group": "autoscaling",
56680          "kind": "HorizontalPodAutoscaler",
56681          "version": "v2beta1"
56682        }
56683      },
56684      "parameters": [
56685        {
56686          "description": "name of the HorizontalPodAutoscaler",
56687          "in": "path",
56688          "name": "name",
56689          "required": true,
56690          "type": "string",
56691          "uniqueItems": true
56692        },
56693        {
56694          "description": "object name and auth scope, such as for teams and projects",
56695          "in": "path",
56696          "name": "namespace",
56697          "required": true,
56698          "type": "string",
56699          "uniqueItems": true
56700        },
56701        {
56702          "description": "If 'true', then the output is pretty printed.",
56703          "in": "query",
56704          "name": "pretty",
56705          "type": "string",
56706          "uniqueItems": true
56707        }
56708      ],
56709      "patch": {
56710        "consumes": [
56711          "application/json-patch+json",
56712          "application/merge-patch+json",
56713          "application/strategic-merge-patch+json",
56714          "application/apply-patch+yaml"
56715        ],
56716        "description": "partially update status of the specified HorizontalPodAutoscaler",
56717        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
56718        "parameters": [
56719          {
56720            "in": "body",
56721            "name": "body",
56722            "required": true,
56723            "schema": {
56724              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
56725            }
56726          },
56727          {
56728            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56729            "in": "query",
56730            "name": "dryRun",
56731            "type": "string",
56732            "uniqueItems": true
56733          },
56734          {
56735            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
56736            "in": "query",
56737            "name": "fieldManager",
56738            "type": "string",
56739            "uniqueItems": true
56740          },
56741          {
56742            "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.",
56743            "in": "query",
56744            "name": "force",
56745            "type": "boolean",
56746            "uniqueItems": true
56747          }
56748        ],
56749        "produces": [
56750          "application/json",
56751          "application/yaml",
56752          "application/vnd.kubernetes.protobuf"
56753        ],
56754        "responses": {
56755          "200": {
56756            "description": "OK",
56757            "schema": {
56758              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56759            }
56760          },
56761          "401": {
56762            "description": "Unauthorized"
56763          }
56764        },
56765        "schemes": [
56766          "https"
56767        ],
56768        "tags": [
56769          "autoscaling_v2beta1"
56770        ],
56771        "x-kubernetes-action": "patch",
56772        "x-kubernetes-group-version-kind": {
56773          "group": "autoscaling",
56774          "kind": "HorizontalPodAutoscaler",
56775          "version": "v2beta1"
56776        }
56777      },
56778      "put": {
56779        "consumes": [
56780          "*/*"
56781        ],
56782        "description": "replace status of the specified HorizontalPodAutoscaler",
56783        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
56784        "parameters": [
56785          {
56786            "in": "body",
56787            "name": "body",
56788            "required": true,
56789            "schema": {
56790              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56791            }
56792          },
56793          {
56794            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56795            "in": "query",
56796            "name": "dryRun",
56797            "type": "string",
56798            "uniqueItems": true
56799          },
56800          {
56801            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56802            "in": "query",
56803            "name": "fieldManager",
56804            "type": "string",
56805            "uniqueItems": true
56806          }
56807        ],
56808        "produces": [
56809          "application/json",
56810          "application/yaml",
56811          "application/vnd.kubernetes.protobuf"
56812        ],
56813        "responses": {
56814          "200": {
56815            "description": "OK",
56816            "schema": {
56817              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56818            }
56819          },
56820          "201": {
56821            "description": "Created",
56822            "schema": {
56823              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56824            }
56825          },
56826          "401": {
56827            "description": "Unauthorized"
56828          }
56829        },
56830        "schemes": [
56831          "https"
56832        ],
56833        "tags": [
56834          "autoscaling_v2beta1"
56835        ],
56836        "x-kubernetes-action": "put",
56837        "x-kubernetes-group-version-kind": {
56838          "group": "autoscaling",
56839          "kind": "HorizontalPodAutoscaler",
56840          "version": "v2beta1"
56841        }
56842      }
56843    },
56844    "/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers": {
56845      "get": {
56846        "consumes": [
56847          "*/*"
56848        ],
56849        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
56850        "operationId": "watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces",
56851        "produces": [
56852          "application/json",
56853          "application/yaml",
56854          "application/vnd.kubernetes.protobuf",
56855          "application/json;stream=watch",
56856          "application/vnd.kubernetes.protobuf;stream=watch"
56857        ],
56858        "responses": {
56859          "200": {
56860            "description": "OK",
56861            "schema": {
56862              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
56863            }
56864          },
56865          "401": {
56866            "description": "Unauthorized"
56867          }
56868        },
56869        "schemes": [
56870          "https"
56871        ],
56872        "tags": [
56873          "autoscaling_v2beta1"
56874        ],
56875        "x-kubernetes-action": "watchlist",
56876        "x-kubernetes-group-version-kind": {
56877          "group": "autoscaling",
56878          "kind": "HorizontalPodAutoscaler",
56879          "version": "v2beta1"
56880        }
56881      },
56882      "parameters": [
56883        {
56884          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
56885          "in": "query",
56886          "name": "allowWatchBookmarks",
56887          "type": "boolean",
56888          "uniqueItems": true
56889        },
56890        {
56891          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56892          "in": "query",
56893          "name": "continue",
56894          "type": "string",
56895          "uniqueItems": true
56896        },
56897        {
56898          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56899          "in": "query",
56900          "name": "fieldSelector",
56901          "type": "string",
56902          "uniqueItems": true
56903        },
56904        {
56905          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56906          "in": "query",
56907          "name": "labelSelector",
56908          "type": "string",
56909          "uniqueItems": true
56910        },
56911        {
56912          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56913          "in": "query",
56914          "name": "limit",
56915          "type": "integer",
56916          "uniqueItems": true
56917        },
56918        {
56919          "description": "If 'true', then the output is pretty printed.",
56920          "in": "query",
56921          "name": "pretty",
56922          "type": "string",
56923          "uniqueItems": true
56924        },
56925        {
56926          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56927          "in": "query",
56928          "name": "resourceVersion",
56929          "type": "string",
56930          "uniqueItems": true
56931        },
56932        {
56933          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56934          "in": "query",
56935          "name": "resourceVersionMatch",
56936          "type": "string",
56937          "uniqueItems": true
56938        },
56939        {
56940          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56941          "in": "query",
56942          "name": "timeoutSeconds",
56943          "type": "integer",
56944          "uniqueItems": true
56945        },
56946        {
56947          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56948          "in": "query",
56949          "name": "watch",
56950          "type": "boolean",
56951          "uniqueItems": true
56952        }
56953      ]
56954    },
56955    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
56956      "get": {
56957        "consumes": [
56958          "*/*"
56959        ],
56960        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
56961        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList",
56962        "produces": [
56963          "application/json",
56964          "application/yaml",
56965          "application/vnd.kubernetes.protobuf",
56966          "application/json;stream=watch",
56967          "application/vnd.kubernetes.protobuf;stream=watch"
56968        ],
56969        "responses": {
56970          "200": {
56971            "description": "OK",
56972            "schema": {
56973              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
56974            }
56975          },
56976          "401": {
56977            "description": "Unauthorized"
56978          }
56979        },
56980        "schemes": [
56981          "https"
56982        ],
56983        "tags": [
56984          "autoscaling_v2beta1"
56985        ],
56986        "x-kubernetes-action": "watchlist",
56987        "x-kubernetes-group-version-kind": {
56988          "group": "autoscaling",
56989          "kind": "HorizontalPodAutoscaler",
56990          "version": "v2beta1"
56991        }
56992      },
56993      "parameters": [
56994        {
56995          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
56996          "in": "query",
56997          "name": "allowWatchBookmarks",
56998          "type": "boolean",
56999          "uniqueItems": true
57000        },
57001        {
57002          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57003          "in": "query",
57004          "name": "continue",
57005          "type": "string",
57006          "uniqueItems": true
57007        },
57008        {
57009          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57010          "in": "query",
57011          "name": "fieldSelector",
57012          "type": "string",
57013          "uniqueItems": true
57014        },
57015        {
57016          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57017          "in": "query",
57018          "name": "labelSelector",
57019          "type": "string",
57020          "uniqueItems": true
57021        },
57022        {
57023          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57024          "in": "query",
57025          "name": "limit",
57026          "type": "integer",
57027          "uniqueItems": true
57028        },
57029        {
57030          "description": "object name and auth scope, such as for teams and projects",
57031          "in": "path",
57032          "name": "namespace",
57033          "required": true,
57034          "type": "string",
57035          "uniqueItems": true
57036        },
57037        {
57038          "description": "If 'true', then the output is pretty printed.",
57039          "in": "query",
57040          "name": "pretty",
57041          "type": "string",
57042          "uniqueItems": true
57043        },
57044        {
57045          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57046          "in": "query",
57047          "name": "resourceVersion",
57048          "type": "string",
57049          "uniqueItems": true
57050        },
57051        {
57052          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57053          "in": "query",
57054          "name": "resourceVersionMatch",
57055          "type": "string",
57056          "uniqueItems": true
57057        },
57058        {
57059          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57060          "in": "query",
57061          "name": "timeoutSeconds",
57062          "type": "integer",
57063          "uniqueItems": true
57064        },
57065        {
57066          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57067          "in": "query",
57068          "name": "watch",
57069          "type": "boolean",
57070          "uniqueItems": true
57071        }
57072      ]
57073    },
57074    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
57075      "get": {
57076        "consumes": [
57077          "*/*"
57078        ],
57079        "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.",
57080        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
57081        "produces": [
57082          "application/json",
57083          "application/yaml",
57084          "application/vnd.kubernetes.protobuf",
57085          "application/json;stream=watch",
57086          "application/vnd.kubernetes.protobuf;stream=watch"
57087        ],
57088        "responses": {
57089          "200": {
57090            "description": "OK",
57091            "schema": {
57092              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
57093            }
57094          },
57095          "401": {
57096            "description": "Unauthorized"
57097          }
57098        },
57099        "schemes": [
57100          "https"
57101        ],
57102        "tags": [
57103          "autoscaling_v2beta1"
57104        ],
57105        "x-kubernetes-action": "watch",
57106        "x-kubernetes-group-version-kind": {
57107          "group": "autoscaling",
57108          "kind": "HorizontalPodAutoscaler",
57109          "version": "v2beta1"
57110        }
57111      },
57112      "parameters": [
57113        {
57114          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
57115          "in": "query",
57116          "name": "allowWatchBookmarks",
57117          "type": "boolean",
57118          "uniqueItems": true
57119        },
57120        {
57121          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57122          "in": "query",
57123          "name": "continue",
57124          "type": "string",
57125          "uniqueItems": true
57126        },
57127        {
57128          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57129          "in": "query",
57130          "name": "fieldSelector",
57131          "type": "string",
57132          "uniqueItems": true
57133        },
57134        {
57135          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57136          "in": "query",
57137          "name": "labelSelector",
57138          "type": "string",
57139          "uniqueItems": true
57140        },
57141        {
57142          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57143          "in": "query",
57144          "name": "limit",
57145          "type": "integer",
57146          "uniqueItems": true
57147        },
57148        {
57149          "description": "name of the HorizontalPodAutoscaler",
57150          "in": "path",
57151          "name": "name",
57152          "required": true,
57153          "type": "string",
57154          "uniqueItems": true
57155        },
57156        {
57157          "description": "object name and auth scope, such as for teams and projects",
57158          "in": "path",
57159          "name": "namespace",
57160          "required": true,
57161          "type": "string",
57162          "uniqueItems": true
57163        },
57164        {
57165          "description": "If 'true', then the output is pretty printed.",
57166          "in": "query",
57167          "name": "pretty",
57168          "type": "string",
57169          "uniqueItems": true
57170        },
57171        {
57172          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57173          "in": "query",
57174          "name": "resourceVersion",
57175          "type": "string",
57176          "uniqueItems": true
57177        },
57178        {
57179          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57180          "in": "query",
57181          "name": "resourceVersionMatch",
57182          "type": "string",
57183          "uniqueItems": true
57184        },
57185        {
57186          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57187          "in": "query",
57188          "name": "timeoutSeconds",
57189          "type": "integer",
57190          "uniqueItems": true
57191        },
57192        {
57193          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57194          "in": "query",
57195          "name": "watch",
57196          "type": "boolean",
57197          "uniqueItems": true
57198        }
57199      ]
57200    },
57201    "/apis/autoscaling/v2beta2/": {
57202      "get": {
57203        "consumes": [
57204          "application/json",
57205          "application/yaml",
57206          "application/vnd.kubernetes.protobuf"
57207        ],
57208        "description": "get available resources",
57209        "operationId": "getAutoscalingV2beta2APIResources",
57210        "produces": [
57211          "application/json",
57212          "application/yaml",
57213          "application/vnd.kubernetes.protobuf"
57214        ],
57215        "responses": {
57216          "200": {
57217            "description": "OK",
57218            "schema": {
57219              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
57220            }
57221          },
57222          "401": {
57223            "description": "Unauthorized"
57224          }
57225        },
57226        "schemes": [
57227          "https"
57228        ],
57229        "tags": [
57230          "autoscaling_v2beta2"
57231        ]
57232      }
57233    },
57234    "/apis/autoscaling/v2beta2/horizontalpodautoscalers": {
57235      "get": {
57236        "consumes": [
57237          "*/*"
57238        ],
57239        "description": "list or watch objects of kind HorizontalPodAutoscaler",
57240        "operationId": "listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces",
57241        "produces": [
57242          "application/json",
57243          "application/yaml",
57244          "application/vnd.kubernetes.protobuf",
57245          "application/json;stream=watch",
57246          "application/vnd.kubernetes.protobuf;stream=watch"
57247        ],
57248        "responses": {
57249          "200": {
57250            "description": "OK",
57251            "schema": {
57252              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
57253            }
57254          },
57255          "401": {
57256            "description": "Unauthorized"
57257          }
57258        },
57259        "schemes": [
57260          "https"
57261        ],
57262        "tags": [
57263          "autoscaling_v2beta2"
57264        ],
57265        "x-kubernetes-action": "list",
57266        "x-kubernetes-group-version-kind": {
57267          "group": "autoscaling",
57268          "kind": "HorizontalPodAutoscaler",
57269          "version": "v2beta2"
57270        }
57271      },
57272      "parameters": [
57273        {
57274          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
57275          "in": "query",
57276          "name": "allowWatchBookmarks",
57277          "type": "boolean",
57278          "uniqueItems": true
57279        },
57280        {
57281          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57282          "in": "query",
57283          "name": "continue",
57284          "type": "string",
57285          "uniqueItems": true
57286        },
57287        {
57288          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57289          "in": "query",
57290          "name": "fieldSelector",
57291          "type": "string",
57292          "uniqueItems": true
57293        },
57294        {
57295          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57296          "in": "query",
57297          "name": "labelSelector",
57298          "type": "string",
57299          "uniqueItems": true
57300        },
57301        {
57302          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57303          "in": "query",
57304          "name": "limit",
57305          "type": "integer",
57306          "uniqueItems": true
57307        },
57308        {
57309          "description": "If 'true', then the output is pretty printed.",
57310          "in": "query",
57311          "name": "pretty",
57312          "type": "string",
57313          "uniqueItems": true
57314        },
57315        {
57316          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57317          "in": "query",
57318          "name": "resourceVersion",
57319          "type": "string",
57320          "uniqueItems": true
57321        },
57322        {
57323          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57324          "in": "query",
57325          "name": "resourceVersionMatch",
57326          "type": "string",
57327          "uniqueItems": true
57328        },
57329        {
57330          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57331          "in": "query",
57332          "name": "timeoutSeconds",
57333          "type": "integer",
57334          "uniqueItems": true
57335        },
57336        {
57337          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57338          "in": "query",
57339          "name": "watch",
57340          "type": "boolean",
57341          "uniqueItems": true
57342        }
57343      ]
57344    },
57345    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers": {
57346      "delete": {
57347        "consumes": [
57348          "*/*"
57349        ],
57350        "description": "delete collection of HorizontalPodAutoscaler",
57351        "operationId": "deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler",
57352        "parameters": [
57353          {
57354            "in": "body",
57355            "name": "body",
57356            "schema": {
57357              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57358            }
57359          },
57360          {
57361            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57362            "in": "query",
57363            "name": "continue",
57364            "type": "string",
57365            "uniqueItems": true
57366          },
57367          {
57368            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57369            "in": "query",
57370            "name": "dryRun",
57371            "type": "string",
57372            "uniqueItems": true
57373          },
57374          {
57375            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57376            "in": "query",
57377            "name": "fieldSelector",
57378            "type": "string",
57379            "uniqueItems": true
57380          },
57381          {
57382            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
57383            "in": "query",
57384            "name": "gracePeriodSeconds",
57385            "type": "integer",
57386            "uniqueItems": true
57387          },
57388          {
57389            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57390            "in": "query",
57391            "name": "labelSelector",
57392            "type": "string",
57393            "uniqueItems": true
57394          },
57395          {
57396            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57397            "in": "query",
57398            "name": "limit",
57399            "type": "integer",
57400            "uniqueItems": true
57401          },
57402          {
57403            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
57404            "in": "query",
57405            "name": "orphanDependents",
57406            "type": "boolean",
57407            "uniqueItems": true
57408          },
57409          {
57410            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
57411            "in": "query",
57412            "name": "propagationPolicy",
57413            "type": "string",
57414            "uniqueItems": true
57415          },
57416          {
57417            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57418            "in": "query",
57419            "name": "resourceVersion",
57420            "type": "string",
57421            "uniqueItems": true
57422          },
57423          {
57424            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57425            "in": "query",
57426            "name": "resourceVersionMatch",
57427            "type": "string",
57428            "uniqueItems": true
57429          },
57430          {
57431            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57432            "in": "query",
57433            "name": "timeoutSeconds",
57434            "type": "integer",
57435            "uniqueItems": true
57436          }
57437        ],
57438        "produces": [
57439          "application/json",
57440          "application/yaml",
57441          "application/vnd.kubernetes.protobuf"
57442        ],
57443        "responses": {
57444          "200": {
57445            "description": "OK",
57446            "schema": {
57447              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57448            }
57449          },
57450          "401": {
57451            "description": "Unauthorized"
57452          }
57453        },
57454        "schemes": [
57455          "https"
57456        ],
57457        "tags": [
57458          "autoscaling_v2beta2"
57459        ],
57460        "x-kubernetes-action": "deletecollection",
57461        "x-kubernetes-group-version-kind": {
57462          "group": "autoscaling",
57463          "kind": "HorizontalPodAutoscaler",
57464          "version": "v2beta2"
57465        }
57466      },
57467      "get": {
57468        "consumes": [
57469          "*/*"
57470        ],
57471        "description": "list or watch objects of kind HorizontalPodAutoscaler",
57472        "operationId": "listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57473        "parameters": [
57474          {
57475            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
57476            "in": "query",
57477            "name": "allowWatchBookmarks",
57478            "type": "boolean",
57479            "uniqueItems": true
57480          },
57481          {
57482            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57483            "in": "query",
57484            "name": "continue",
57485            "type": "string",
57486            "uniqueItems": true
57487          },
57488          {
57489            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57490            "in": "query",
57491            "name": "fieldSelector",
57492            "type": "string",
57493            "uniqueItems": true
57494          },
57495          {
57496            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57497            "in": "query",
57498            "name": "labelSelector",
57499            "type": "string",
57500            "uniqueItems": true
57501          },
57502          {
57503            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57504            "in": "query",
57505            "name": "limit",
57506            "type": "integer",
57507            "uniqueItems": true
57508          },
57509          {
57510            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57511            "in": "query",
57512            "name": "resourceVersion",
57513            "type": "string",
57514            "uniqueItems": true
57515          },
57516          {
57517            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57518            "in": "query",
57519            "name": "resourceVersionMatch",
57520            "type": "string",
57521            "uniqueItems": true
57522          },
57523          {
57524            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57525            "in": "query",
57526            "name": "timeoutSeconds",
57527            "type": "integer",
57528            "uniqueItems": true
57529          },
57530          {
57531            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57532            "in": "query",
57533            "name": "watch",
57534            "type": "boolean",
57535            "uniqueItems": true
57536          }
57537        ],
57538        "produces": [
57539          "application/json",
57540          "application/yaml",
57541          "application/vnd.kubernetes.protobuf",
57542          "application/json;stream=watch",
57543          "application/vnd.kubernetes.protobuf;stream=watch"
57544        ],
57545        "responses": {
57546          "200": {
57547            "description": "OK",
57548            "schema": {
57549              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
57550            }
57551          },
57552          "401": {
57553            "description": "Unauthorized"
57554          }
57555        },
57556        "schemes": [
57557          "https"
57558        ],
57559        "tags": [
57560          "autoscaling_v2beta2"
57561        ],
57562        "x-kubernetes-action": "list",
57563        "x-kubernetes-group-version-kind": {
57564          "group": "autoscaling",
57565          "kind": "HorizontalPodAutoscaler",
57566          "version": "v2beta2"
57567        }
57568      },
57569      "parameters": [
57570        {
57571          "description": "object name and auth scope, such as for teams and projects",
57572          "in": "path",
57573          "name": "namespace",
57574          "required": true,
57575          "type": "string",
57576          "uniqueItems": true
57577        },
57578        {
57579          "description": "If 'true', then the output is pretty printed.",
57580          "in": "query",
57581          "name": "pretty",
57582          "type": "string",
57583          "uniqueItems": true
57584        }
57585      ],
57586      "post": {
57587        "consumes": [
57588          "*/*"
57589        ],
57590        "description": "create a HorizontalPodAutoscaler",
57591        "operationId": "createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57592        "parameters": [
57593          {
57594            "in": "body",
57595            "name": "body",
57596            "required": true,
57597            "schema": {
57598              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57599            }
57600          },
57601          {
57602            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57603            "in": "query",
57604            "name": "dryRun",
57605            "type": "string",
57606            "uniqueItems": true
57607          },
57608          {
57609            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57610            "in": "query",
57611            "name": "fieldManager",
57612            "type": "string",
57613            "uniqueItems": true
57614          }
57615        ],
57616        "produces": [
57617          "application/json",
57618          "application/yaml",
57619          "application/vnd.kubernetes.protobuf"
57620        ],
57621        "responses": {
57622          "200": {
57623            "description": "OK",
57624            "schema": {
57625              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57626            }
57627          },
57628          "201": {
57629            "description": "Created",
57630            "schema": {
57631              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57632            }
57633          },
57634          "202": {
57635            "description": "Accepted",
57636            "schema": {
57637              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57638            }
57639          },
57640          "401": {
57641            "description": "Unauthorized"
57642          }
57643        },
57644        "schemes": [
57645          "https"
57646        ],
57647        "tags": [
57648          "autoscaling_v2beta2"
57649        ],
57650        "x-kubernetes-action": "post",
57651        "x-kubernetes-group-version-kind": {
57652          "group": "autoscaling",
57653          "kind": "HorizontalPodAutoscaler",
57654          "version": "v2beta2"
57655        }
57656      }
57657    },
57658    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
57659      "delete": {
57660        "consumes": [
57661          "*/*"
57662        ],
57663        "description": "delete a HorizontalPodAutoscaler",
57664        "operationId": "deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57665        "parameters": [
57666          {
57667            "in": "body",
57668            "name": "body",
57669            "schema": {
57670              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57671            }
57672          },
57673          {
57674            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57675            "in": "query",
57676            "name": "dryRun",
57677            "type": "string",
57678            "uniqueItems": true
57679          },
57680          {
57681            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
57682            "in": "query",
57683            "name": "gracePeriodSeconds",
57684            "type": "integer",
57685            "uniqueItems": true
57686          },
57687          {
57688            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
57689            "in": "query",
57690            "name": "orphanDependents",
57691            "type": "boolean",
57692            "uniqueItems": true
57693          },
57694          {
57695            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
57696            "in": "query",
57697            "name": "propagationPolicy",
57698            "type": "string",
57699            "uniqueItems": true
57700          }
57701        ],
57702        "produces": [
57703          "application/json",
57704          "application/yaml",
57705          "application/vnd.kubernetes.protobuf"
57706        ],
57707        "responses": {
57708          "200": {
57709            "description": "OK",
57710            "schema": {
57711              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57712            }
57713          },
57714          "202": {
57715            "description": "Accepted",
57716            "schema": {
57717              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57718            }
57719          },
57720          "401": {
57721            "description": "Unauthorized"
57722          }
57723        },
57724        "schemes": [
57725          "https"
57726        ],
57727        "tags": [
57728          "autoscaling_v2beta2"
57729        ],
57730        "x-kubernetes-action": "delete",
57731        "x-kubernetes-group-version-kind": {
57732          "group": "autoscaling",
57733          "kind": "HorizontalPodAutoscaler",
57734          "version": "v2beta2"
57735        }
57736      },
57737      "get": {
57738        "consumes": [
57739          "*/*"
57740        ],
57741        "description": "read the specified HorizontalPodAutoscaler",
57742        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57743        "produces": [
57744          "application/json",
57745          "application/yaml",
57746          "application/vnd.kubernetes.protobuf"
57747        ],
57748        "responses": {
57749          "200": {
57750            "description": "OK",
57751            "schema": {
57752              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57753            }
57754          },
57755          "401": {
57756            "description": "Unauthorized"
57757          }
57758        },
57759        "schemes": [
57760          "https"
57761        ],
57762        "tags": [
57763          "autoscaling_v2beta2"
57764        ],
57765        "x-kubernetes-action": "get",
57766        "x-kubernetes-group-version-kind": {
57767          "group": "autoscaling",
57768          "kind": "HorizontalPodAutoscaler",
57769          "version": "v2beta2"
57770        }
57771      },
57772      "parameters": [
57773        {
57774          "description": "name of the HorizontalPodAutoscaler",
57775          "in": "path",
57776          "name": "name",
57777          "required": true,
57778          "type": "string",
57779          "uniqueItems": true
57780        },
57781        {
57782          "description": "object name and auth scope, such as for teams and projects",
57783          "in": "path",
57784          "name": "namespace",
57785          "required": true,
57786          "type": "string",
57787          "uniqueItems": true
57788        },
57789        {
57790          "description": "If 'true', then the output is pretty printed.",
57791          "in": "query",
57792          "name": "pretty",
57793          "type": "string",
57794          "uniqueItems": true
57795        }
57796      ],
57797      "patch": {
57798        "consumes": [
57799          "application/json-patch+json",
57800          "application/merge-patch+json",
57801          "application/strategic-merge-patch+json",
57802          "application/apply-patch+yaml"
57803        ],
57804        "description": "partially update the specified HorizontalPodAutoscaler",
57805        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57806        "parameters": [
57807          {
57808            "in": "body",
57809            "name": "body",
57810            "required": true,
57811            "schema": {
57812              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
57813            }
57814          },
57815          {
57816            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57817            "in": "query",
57818            "name": "dryRun",
57819            "type": "string",
57820            "uniqueItems": true
57821          },
57822          {
57823            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
57824            "in": "query",
57825            "name": "fieldManager",
57826            "type": "string",
57827            "uniqueItems": true
57828          },
57829          {
57830            "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.",
57831            "in": "query",
57832            "name": "force",
57833            "type": "boolean",
57834            "uniqueItems": true
57835          }
57836        ],
57837        "produces": [
57838          "application/json",
57839          "application/yaml",
57840          "application/vnd.kubernetes.protobuf"
57841        ],
57842        "responses": {
57843          "200": {
57844            "description": "OK",
57845            "schema": {
57846              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57847            }
57848          },
57849          "401": {
57850            "description": "Unauthorized"
57851          }
57852        },
57853        "schemes": [
57854          "https"
57855        ],
57856        "tags": [
57857          "autoscaling_v2beta2"
57858        ],
57859        "x-kubernetes-action": "patch",
57860        "x-kubernetes-group-version-kind": {
57861          "group": "autoscaling",
57862          "kind": "HorizontalPodAutoscaler",
57863          "version": "v2beta2"
57864        }
57865      },
57866      "put": {
57867        "consumes": [
57868          "*/*"
57869        ],
57870        "description": "replace the specified HorizontalPodAutoscaler",
57871        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57872        "parameters": [
57873          {
57874            "in": "body",
57875            "name": "body",
57876            "required": true,
57877            "schema": {
57878              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57879            }
57880          },
57881          {
57882            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57883            "in": "query",
57884            "name": "dryRun",
57885            "type": "string",
57886            "uniqueItems": true
57887          },
57888          {
57889            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57890            "in": "query",
57891            "name": "fieldManager",
57892            "type": "string",
57893            "uniqueItems": true
57894          }
57895        ],
57896        "produces": [
57897          "application/json",
57898          "application/yaml",
57899          "application/vnd.kubernetes.protobuf"
57900        ],
57901        "responses": {
57902          "200": {
57903            "description": "OK",
57904            "schema": {
57905              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57906            }
57907          },
57908          "201": {
57909            "description": "Created",
57910            "schema": {
57911              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57912            }
57913          },
57914          "401": {
57915            "description": "Unauthorized"
57916          }
57917        },
57918        "schemes": [
57919          "https"
57920        ],
57921        "tags": [
57922          "autoscaling_v2beta2"
57923        ],
57924        "x-kubernetes-action": "put",
57925        "x-kubernetes-group-version-kind": {
57926          "group": "autoscaling",
57927          "kind": "HorizontalPodAutoscaler",
57928          "version": "v2beta2"
57929        }
57930      }
57931    },
57932    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
57933      "get": {
57934        "consumes": [
57935          "*/*"
57936        ],
57937        "description": "read status of the specified HorizontalPodAutoscaler",
57938        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
57939        "produces": [
57940          "application/json",
57941          "application/yaml",
57942          "application/vnd.kubernetes.protobuf"
57943        ],
57944        "responses": {
57945          "200": {
57946            "description": "OK",
57947            "schema": {
57948              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57949            }
57950          },
57951          "401": {
57952            "description": "Unauthorized"
57953          }
57954        },
57955        "schemes": [
57956          "https"
57957        ],
57958        "tags": [
57959          "autoscaling_v2beta2"
57960        ],
57961        "x-kubernetes-action": "get",
57962        "x-kubernetes-group-version-kind": {
57963          "group": "autoscaling",
57964          "kind": "HorizontalPodAutoscaler",
57965          "version": "v2beta2"
57966        }
57967      },
57968      "parameters": [
57969        {
57970          "description": "name of the HorizontalPodAutoscaler",
57971          "in": "path",
57972          "name": "name",
57973          "required": true,
57974          "type": "string",
57975          "uniqueItems": true
57976        },
57977        {
57978          "description": "object name and auth scope, such as for teams and projects",
57979          "in": "path",
57980          "name": "namespace",
57981          "required": true,
57982          "type": "string",
57983          "uniqueItems": true
57984        },
57985        {
57986          "description": "If 'true', then the output is pretty printed.",
57987          "in": "query",
57988          "name": "pretty",
57989          "type": "string",
57990          "uniqueItems": true
57991        }
57992      ],
57993      "patch": {
57994        "consumes": [
57995          "application/json-patch+json",
57996          "application/merge-patch+json",
57997          "application/strategic-merge-patch+json",
57998          "application/apply-patch+yaml"
57999        ],
58000        "description": "partially update status of the specified HorizontalPodAutoscaler",
58001        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
58002        "parameters": [
58003          {
58004            "in": "body",
58005            "name": "body",
58006            "required": true,
58007            "schema": {
58008              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
58009            }
58010          },
58011          {
58012            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58013            "in": "query",
58014            "name": "dryRun",
58015            "type": "string",
58016            "uniqueItems": true
58017          },
58018          {
58019            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
58020            "in": "query",
58021            "name": "fieldManager",
58022            "type": "string",
58023            "uniqueItems": true
58024          },
58025          {
58026            "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.",
58027            "in": "query",
58028            "name": "force",
58029            "type": "boolean",
58030            "uniqueItems": true
58031          }
58032        ],
58033        "produces": [
58034          "application/json",
58035          "application/yaml",
58036          "application/vnd.kubernetes.protobuf"
58037        ],
58038        "responses": {
58039          "200": {
58040            "description": "OK",
58041            "schema": {
58042              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58043            }
58044          },
58045          "401": {
58046            "description": "Unauthorized"
58047          }
58048        },
58049        "schemes": [
58050          "https"
58051        ],
58052        "tags": [
58053          "autoscaling_v2beta2"
58054        ],
58055        "x-kubernetes-action": "patch",
58056        "x-kubernetes-group-version-kind": {
58057          "group": "autoscaling",
58058          "kind": "HorizontalPodAutoscaler",
58059          "version": "v2beta2"
58060        }
58061      },
58062      "put": {
58063        "consumes": [
58064          "*/*"
58065        ],
58066        "description": "replace status of the specified HorizontalPodAutoscaler",
58067        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
58068        "parameters": [
58069          {
58070            "in": "body",
58071            "name": "body",
58072            "required": true,
58073            "schema": {
58074              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58075            }
58076          },
58077          {
58078            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58079            "in": "query",
58080            "name": "dryRun",
58081            "type": "string",
58082            "uniqueItems": true
58083          },
58084          {
58085            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58086            "in": "query",
58087            "name": "fieldManager",
58088            "type": "string",
58089            "uniqueItems": true
58090          }
58091        ],
58092        "produces": [
58093          "application/json",
58094          "application/yaml",
58095          "application/vnd.kubernetes.protobuf"
58096        ],
58097        "responses": {
58098          "200": {
58099            "description": "OK",
58100            "schema": {
58101              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58102            }
58103          },
58104          "201": {
58105            "description": "Created",
58106            "schema": {
58107              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58108            }
58109          },
58110          "401": {
58111            "description": "Unauthorized"
58112          }
58113        },
58114        "schemes": [
58115          "https"
58116        ],
58117        "tags": [
58118          "autoscaling_v2beta2"
58119        ],
58120        "x-kubernetes-action": "put",
58121        "x-kubernetes-group-version-kind": {
58122          "group": "autoscaling",
58123          "kind": "HorizontalPodAutoscaler",
58124          "version": "v2beta2"
58125        }
58126      }
58127    },
58128    "/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers": {
58129      "get": {
58130        "consumes": [
58131          "*/*"
58132        ],
58133        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
58134        "operationId": "watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces",
58135        "produces": [
58136          "application/json",
58137          "application/yaml",
58138          "application/vnd.kubernetes.protobuf",
58139          "application/json;stream=watch",
58140          "application/vnd.kubernetes.protobuf;stream=watch"
58141        ],
58142        "responses": {
58143          "200": {
58144            "description": "OK",
58145            "schema": {
58146              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58147            }
58148          },
58149          "401": {
58150            "description": "Unauthorized"
58151          }
58152        },
58153        "schemes": [
58154          "https"
58155        ],
58156        "tags": [
58157          "autoscaling_v2beta2"
58158        ],
58159        "x-kubernetes-action": "watchlist",
58160        "x-kubernetes-group-version-kind": {
58161          "group": "autoscaling",
58162          "kind": "HorizontalPodAutoscaler",
58163          "version": "v2beta2"
58164        }
58165      },
58166      "parameters": [
58167        {
58168          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58169          "in": "query",
58170          "name": "allowWatchBookmarks",
58171          "type": "boolean",
58172          "uniqueItems": true
58173        },
58174        {
58175          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58176          "in": "query",
58177          "name": "continue",
58178          "type": "string",
58179          "uniqueItems": true
58180        },
58181        {
58182          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58183          "in": "query",
58184          "name": "fieldSelector",
58185          "type": "string",
58186          "uniqueItems": true
58187        },
58188        {
58189          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58190          "in": "query",
58191          "name": "labelSelector",
58192          "type": "string",
58193          "uniqueItems": true
58194        },
58195        {
58196          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58197          "in": "query",
58198          "name": "limit",
58199          "type": "integer",
58200          "uniqueItems": true
58201        },
58202        {
58203          "description": "If 'true', then the output is pretty printed.",
58204          "in": "query",
58205          "name": "pretty",
58206          "type": "string",
58207          "uniqueItems": true
58208        },
58209        {
58210          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58211          "in": "query",
58212          "name": "resourceVersion",
58213          "type": "string",
58214          "uniqueItems": true
58215        },
58216        {
58217          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58218          "in": "query",
58219          "name": "resourceVersionMatch",
58220          "type": "string",
58221          "uniqueItems": true
58222        },
58223        {
58224          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58225          "in": "query",
58226          "name": "timeoutSeconds",
58227          "type": "integer",
58228          "uniqueItems": true
58229        },
58230        {
58231          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58232          "in": "query",
58233          "name": "watch",
58234          "type": "boolean",
58235          "uniqueItems": true
58236        }
58237      ]
58238    },
58239    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers": {
58240      "get": {
58241        "consumes": [
58242          "*/*"
58243        ],
58244        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
58245        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList",
58246        "produces": [
58247          "application/json",
58248          "application/yaml",
58249          "application/vnd.kubernetes.protobuf",
58250          "application/json;stream=watch",
58251          "application/vnd.kubernetes.protobuf;stream=watch"
58252        ],
58253        "responses": {
58254          "200": {
58255            "description": "OK",
58256            "schema": {
58257              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58258            }
58259          },
58260          "401": {
58261            "description": "Unauthorized"
58262          }
58263        },
58264        "schemes": [
58265          "https"
58266        ],
58267        "tags": [
58268          "autoscaling_v2beta2"
58269        ],
58270        "x-kubernetes-action": "watchlist",
58271        "x-kubernetes-group-version-kind": {
58272          "group": "autoscaling",
58273          "kind": "HorizontalPodAutoscaler",
58274          "version": "v2beta2"
58275        }
58276      },
58277      "parameters": [
58278        {
58279          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58280          "in": "query",
58281          "name": "allowWatchBookmarks",
58282          "type": "boolean",
58283          "uniqueItems": true
58284        },
58285        {
58286          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58287          "in": "query",
58288          "name": "continue",
58289          "type": "string",
58290          "uniqueItems": true
58291        },
58292        {
58293          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58294          "in": "query",
58295          "name": "fieldSelector",
58296          "type": "string",
58297          "uniqueItems": true
58298        },
58299        {
58300          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58301          "in": "query",
58302          "name": "labelSelector",
58303          "type": "string",
58304          "uniqueItems": true
58305        },
58306        {
58307          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58308          "in": "query",
58309          "name": "limit",
58310          "type": "integer",
58311          "uniqueItems": true
58312        },
58313        {
58314          "description": "object name and auth scope, such as for teams and projects",
58315          "in": "path",
58316          "name": "namespace",
58317          "required": true,
58318          "type": "string",
58319          "uniqueItems": true
58320        },
58321        {
58322          "description": "If 'true', then the output is pretty printed.",
58323          "in": "query",
58324          "name": "pretty",
58325          "type": "string",
58326          "uniqueItems": true
58327        },
58328        {
58329          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58330          "in": "query",
58331          "name": "resourceVersion",
58332          "type": "string",
58333          "uniqueItems": true
58334        },
58335        {
58336          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58337          "in": "query",
58338          "name": "resourceVersionMatch",
58339          "type": "string",
58340          "uniqueItems": true
58341        },
58342        {
58343          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58344          "in": "query",
58345          "name": "timeoutSeconds",
58346          "type": "integer",
58347          "uniqueItems": true
58348        },
58349        {
58350          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58351          "in": "query",
58352          "name": "watch",
58353          "type": "boolean",
58354          "uniqueItems": true
58355        }
58356      ]
58357    },
58358    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
58359      "get": {
58360        "consumes": [
58361          "*/*"
58362        ],
58363        "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.",
58364        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
58365        "produces": [
58366          "application/json",
58367          "application/yaml",
58368          "application/vnd.kubernetes.protobuf",
58369          "application/json;stream=watch",
58370          "application/vnd.kubernetes.protobuf;stream=watch"
58371        ],
58372        "responses": {
58373          "200": {
58374            "description": "OK",
58375            "schema": {
58376              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58377            }
58378          },
58379          "401": {
58380            "description": "Unauthorized"
58381          }
58382        },
58383        "schemes": [
58384          "https"
58385        ],
58386        "tags": [
58387          "autoscaling_v2beta2"
58388        ],
58389        "x-kubernetes-action": "watch",
58390        "x-kubernetes-group-version-kind": {
58391          "group": "autoscaling",
58392          "kind": "HorizontalPodAutoscaler",
58393          "version": "v2beta2"
58394        }
58395      },
58396      "parameters": [
58397        {
58398          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58399          "in": "query",
58400          "name": "allowWatchBookmarks",
58401          "type": "boolean",
58402          "uniqueItems": true
58403        },
58404        {
58405          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58406          "in": "query",
58407          "name": "continue",
58408          "type": "string",
58409          "uniqueItems": true
58410        },
58411        {
58412          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58413          "in": "query",
58414          "name": "fieldSelector",
58415          "type": "string",
58416          "uniqueItems": true
58417        },
58418        {
58419          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58420          "in": "query",
58421          "name": "labelSelector",
58422          "type": "string",
58423          "uniqueItems": true
58424        },
58425        {
58426          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58427          "in": "query",
58428          "name": "limit",
58429          "type": "integer",
58430          "uniqueItems": true
58431        },
58432        {
58433          "description": "name of the HorizontalPodAutoscaler",
58434          "in": "path",
58435          "name": "name",
58436          "required": true,
58437          "type": "string",
58438          "uniqueItems": true
58439        },
58440        {
58441          "description": "object name and auth scope, such as for teams and projects",
58442          "in": "path",
58443          "name": "namespace",
58444          "required": true,
58445          "type": "string",
58446          "uniqueItems": true
58447        },
58448        {
58449          "description": "If 'true', then the output is pretty printed.",
58450          "in": "query",
58451          "name": "pretty",
58452          "type": "string",
58453          "uniqueItems": true
58454        },
58455        {
58456          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58457          "in": "query",
58458          "name": "resourceVersion",
58459          "type": "string",
58460          "uniqueItems": true
58461        },
58462        {
58463          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58464          "in": "query",
58465          "name": "resourceVersionMatch",
58466          "type": "string",
58467          "uniqueItems": true
58468        },
58469        {
58470          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58471          "in": "query",
58472          "name": "timeoutSeconds",
58473          "type": "integer",
58474          "uniqueItems": true
58475        },
58476        {
58477          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58478          "in": "query",
58479          "name": "watch",
58480          "type": "boolean",
58481          "uniqueItems": true
58482        }
58483      ]
58484    },
58485    "/apis/batch/": {
58486      "get": {
58487        "consumes": [
58488          "application/json",
58489          "application/yaml",
58490          "application/vnd.kubernetes.protobuf"
58491        ],
58492        "description": "get information of a group",
58493        "operationId": "getBatchAPIGroup",
58494        "produces": [
58495          "application/json",
58496          "application/yaml",
58497          "application/vnd.kubernetes.protobuf"
58498        ],
58499        "responses": {
58500          "200": {
58501            "description": "OK",
58502            "schema": {
58503              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
58504            }
58505          },
58506          "401": {
58507            "description": "Unauthorized"
58508          }
58509        },
58510        "schemes": [
58511          "https"
58512        ],
58513        "tags": [
58514          "batch"
58515        ]
58516      }
58517    },
58518    "/apis/batch/v1/": {
58519      "get": {
58520        "consumes": [
58521          "application/json",
58522          "application/yaml",
58523          "application/vnd.kubernetes.protobuf"
58524        ],
58525        "description": "get available resources",
58526        "operationId": "getBatchV1APIResources",
58527        "produces": [
58528          "application/json",
58529          "application/yaml",
58530          "application/vnd.kubernetes.protobuf"
58531        ],
58532        "responses": {
58533          "200": {
58534            "description": "OK",
58535            "schema": {
58536              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
58537            }
58538          },
58539          "401": {
58540            "description": "Unauthorized"
58541          }
58542        },
58543        "schemes": [
58544          "https"
58545        ],
58546        "tags": [
58547          "batch_v1"
58548        ]
58549      }
58550    },
58551    "/apis/batch/v1/jobs": {
58552      "get": {
58553        "consumes": [
58554          "*/*"
58555        ],
58556        "description": "list or watch objects of kind Job",
58557        "operationId": "listBatchV1JobForAllNamespaces",
58558        "produces": [
58559          "application/json",
58560          "application/yaml",
58561          "application/vnd.kubernetes.protobuf",
58562          "application/json;stream=watch",
58563          "application/vnd.kubernetes.protobuf;stream=watch"
58564        ],
58565        "responses": {
58566          "200": {
58567            "description": "OK",
58568            "schema": {
58569              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
58570            }
58571          },
58572          "401": {
58573            "description": "Unauthorized"
58574          }
58575        },
58576        "schemes": [
58577          "https"
58578        ],
58579        "tags": [
58580          "batch_v1"
58581        ],
58582        "x-kubernetes-action": "list",
58583        "x-kubernetes-group-version-kind": {
58584          "group": "batch",
58585          "kind": "Job",
58586          "version": "v1"
58587        }
58588      },
58589      "parameters": [
58590        {
58591          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58592          "in": "query",
58593          "name": "allowWatchBookmarks",
58594          "type": "boolean",
58595          "uniqueItems": true
58596        },
58597        {
58598          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58599          "in": "query",
58600          "name": "continue",
58601          "type": "string",
58602          "uniqueItems": true
58603        },
58604        {
58605          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58606          "in": "query",
58607          "name": "fieldSelector",
58608          "type": "string",
58609          "uniqueItems": true
58610        },
58611        {
58612          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58613          "in": "query",
58614          "name": "labelSelector",
58615          "type": "string",
58616          "uniqueItems": true
58617        },
58618        {
58619          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58620          "in": "query",
58621          "name": "limit",
58622          "type": "integer",
58623          "uniqueItems": true
58624        },
58625        {
58626          "description": "If 'true', then the output is pretty printed.",
58627          "in": "query",
58628          "name": "pretty",
58629          "type": "string",
58630          "uniqueItems": true
58631        },
58632        {
58633          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58634          "in": "query",
58635          "name": "resourceVersion",
58636          "type": "string",
58637          "uniqueItems": true
58638        },
58639        {
58640          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58641          "in": "query",
58642          "name": "resourceVersionMatch",
58643          "type": "string",
58644          "uniqueItems": true
58645        },
58646        {
58647          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58648          "in": "query",
58649          "name": "timeoutSeconds",
58650          "type": "integer",
58651          "uniqueItems": true
58652        },
58653        {
58654          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58655          "in": "query",
58656          "name": "watch",
58657          "type": "boolean",
58658          "uniqueItems": true
58659        }
58660      ]
58661    },
58662    "/apis/batch/v1/namespaces/{namespace}/jobs": {
58663      "delete": {
58664        "consumes": [
58665          "*/*"
58666        ],
58667        "description": "delete collection of Job",
58668        "operationId": "deleteBatchV1CollectionNamespacedJob",
58669        "parameters": [
58670          {
58671            "in": "body",
58672            "name": "body",
58673            "schema": {
58674              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
58675            }
58676          },
58677          {
58678            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58679            "in": "query",
58680            "name": "continue",
58681            "type": "string",
58682            "uniqueItems": true
58683          },
58684          {
58685            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58686            "in": "query",
58687            "name": "dryRun",
58688            "type": "string",
58689            "uniqueItems": true
58690          },
58691          {
58692            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58693            "in": "query",
58694            "name": "fieldSelector",
58695            "type": "string",
58696            "uniqueItems": true
58697          },
58698          {
58699            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
58700            "in": "query",
58701            "name": "gracePeriodSeconds",
58702            "type": "integer",
58703            "uniqueItems": true
58704          },
58705          {
58706            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58707            "in": "query",
58708            "name": "labelSelector",
58709            "type": "string",
58710            "uniqueItems": true
58711          },
58712          {
58713            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58714            "in": "query",
58715            "name": "limit",
58716            "type": "integer",
58717            "uniqueItems": true
58718          },
58719          {
58720            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
58721            "in": "query",
58722            "name": "orphanDependents",
58723            "type": "boolean",
58724            "uniqueItems": true
58725          },
58726          {
58727            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
58728            "in": "query",
58729            "name": "propagationPolicy",
58730            "type": "string",
58731            "uniqueItems": true
58732          },
58733          {
58734            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58735            "in": "query",
58736            "name": "resourceVersion",
58737            "type": "string",
58738            "uniqueItems": true
58739          },
58740          {
58741            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58742            "in": "query",
58743            "name": "resourceVersionMatch",
58744            "type": "string",
58745            "uniqueItems": true
58746          },
58747          {
58748            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58749            "in": "query",
58750            "name": "timeoutSeconds",
58751            "type": "integer",
58752            "uniqueItems": true
58753          }
58754        ],
58755        "produces": [
58756          "application/json",
58757          "application/yaml",
58758          "application/vnd.kubernetes.protobuf"
58759        ],
58760        "responses": {
58761          "200": {
58762            "description": "OK",
58763            "schema": {
58764              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
58765            }
58766          },
58767          "401": {
58768            "description": "Unauthorized"
58769          }
58770        },
58771        "schemes": [
58772          "https"
58773        ],
58774        "tags": [
58775          "batch_v1"
58776        ],
58777        "x-kubernetes-action": "deletecollection",
58778        "x-kubernetes-group-version-kind": {
58779          "group": "batch",
58780          "kind": "Job",
58781          "version": "v1"
58782        }
58783      },
58784      "get": {
58785        "consumes": [
58786          "*/*"
58787        ],
58788        "description": "list or watch objects of kind Job",
58789        "operationId": "listBatchV1NamespacedJob",
58790        "parameters": [
58791          {
58792            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58793            "in": "query",
58794            "name": "allowWatchBookmarks",
58795            "type": "boolean",
58796            "uniqueItems": true
58797          },
58798          {
58799            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58800            "in": "query",
58801            "name": "continue",
58802            "type": "string",
58803            "uniqueItems": true
58804          },
58805          {
58806            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58807            "in": "query",
58808            "name": "fieldSelector",
58809            "type": "string",
58810            "uniqueItems": true
58811          },
58812          {
58813            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58814            "in": "query",
58815            "name": "labelSelector",
58816            "type": "string",
58817            "uniqueItems": true
58818          },
58819          {
58820            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58821            "in": "query",
58822            "name": "limit",
58823            "type": "integer",
58824            "uniqueItems": true
58825          },
58826          {
58827            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58828            "in": "query",
58829            "name": "resourceVersion",
58830            "type": "string",
58831            "uniqueItems": true
58832          },
58833          {
58834            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58835            "in": "query",
58836            "name": "resourceVersionMatch",
58837            "type": "string",
58838            "uniqueItems": true
58839          },
58840          {
58841            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58842            "in": "query",
58843            "name": "timeoutSeconds",
58844            "type": "integer",
58845            "uniqueItems": true
58846          },
58847          {
58848            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58849            "in": "query",
58850            "name": "watch",
58851            "type": "boolean",
58852            "uniqueItems": true
58853          }
58854        ],
58855        "produces": [
58856          "application/json",
58857          "application/yaml",
58858          "application/vnd.kubernetes.protobuf",
58859          "application/json;stream=watch",
58860          "application/vnd.kubernetes.protobuf;stream=watch"
58861        ],
58862        "responses": {
58863          "200": {
58864            "description": "OK",
58865            "schema": {
58866              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
58867            }
58868          },
58869          "401": {
58870            "description": "Unauthorized"
58871          }
58872        },
58873        "schemes": [
58874          "https"
58875        ],
58876        "tags": [
58877          "batch_v1"
58878        ],
58879        "x-kubernetes-action": "list",
58880        "x-kubernetes-group-version-kind": {
58881          "group": "batch",
58882          "kind": "Job",
58883          "version": "v1"
58884        }
58885      },
58886      "parameters": [
58887        {
58888          "description": "object name and auth scope, such as for teams and projects",
58889          "in": "path",
58890          "name": "namespace",
58891          "required": true,
58892          "type": "string",
58893          "uniqueItems": true
58894        },
58895        {
58896          "description": "If 'true', then the output is pretty printed.",
58897          "in": "query",
58898          "name": "pretty",
58899          "type": "string",
58900          "uniqueItems": true
58901        }
58902      ],
58903      "post": {
58904        "consumes": [
58905          "*/*"
58906        ],
58907        "description": "create a Job",
58908        "operationId": "createBatchV1NamespacedJob",
58909        "parameters": [
58910          {
58911            "in": "body",
58912            "name": "body",
58913            "required": true,
58914            "schema": {
58915              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
58916            }
58917          },
58918          {
58919            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58920            "in": "query",
58921            "name": "dryRun",
58922            "type": "string",
58923            "uniqueItems": true
58924          },
58925          {
58926            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58927            "in": "query",
58928            "name": "fieldManager",
58929            "type": "string",
58930            "uniqueItems": true
58931          }
58932        ],
58933        "produces": [
58934          "application/json",
58935          "application/yaml",
58936          "application/vnd.kubernetes.protobuf"
58937        ],
58938        "responses": {
58939          "200": {
58940            "description": "OK",
58941            "schema": {
58942              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
58943            }
58944          },
58945          "201": {
58946            "description": "Created",
58947            "schema": {
58948              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
58949            }
58950          },
58951          "202": {
58952            "description": "Accepted",
58953            "schema": {
58954              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
58955            }
58956          },
58957          "401": {
58958            "description": "Unauthorized"
58959          }
58960        },
58961        "schemes": [
58962          "https"
58963        ],
58964        "tags": [
58965          "batch_v1"
58966        ],
58967        "x-kubernetes-action": "post",
58968        "x-kubernetes-group-version-kind": {
58969          "group": "batch",
58970          "kind": "Job",
58971          "version": "v1"
58972        }
58973      }
58974    },
58975    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}": {
58976      "delete": {
58977        "consumes": [
58978          "*/*"
58979        ],
58980        "description": "delete a Job",
58981        "operationId": "deleteBatchV1NamespacedJob",
58982        "parameters": [
58983          {
58984            "in": "body",
58985            "name": "body",
58986            "schema": {
58987              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
58988            }
58989          },
58990          {
58991            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58992            "in": "query",
58993            "name": "dryRun",
58994            "type": "string",
58995            "uniqueItems": true
58996          },
58997          {
58998            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
58999            "in": "query",
59000            "name": "gracePeriodSeconds",
59001            "type": "integer",
59002            "uniqueItems": true
59003          },
59004          {
59005            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
59006            "in": "query",
59007            "name": "orphanDependents",
59008            "type": "boolean",
59009            "uniqueItems": true
59010          },
59011          {
59012            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
59013            "in": "query",
59014            "name": "propagationPolicy",
59015            "type": "string",
59016            "uniqueItems": true
59017          }
59018        ],
59019        "produces": [
59020          "application/json",
59021          "application/yaml",
59022          "application/vnd.kubernetes.protobuf"
59023        ],
59024        "responses": {
59025          "200": {
59026            "description": "OK",
59027            "schema": {
59028              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59029            }
59030          },
59031          "202": {
59032            "description": "Accepted",
59033            "schema": {
59034              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59035            }
59036          },
59037          "401": {
59038            "description": "Unauthorized"
59039          }
59040        },
59041        "schemes": [
59042          "https"
59043        ],
59044        "tags": [
59045          "batch_v1"
59046        ],
59047        "x-kubernetes-action": "delete",
59048        "x-kubernetes-group-version-kind": {
59049          "group": "batch",
59050          "kind": "Job",
59051          "version": "v1"
59052        }
59053      },
59054      "get": {
59055        "consumes": [
59056          "*/*"
59057        ],
59058        "description": "read the specified Job",
59059        "operationId": "readBatchV1NamespacedJob",
59060        "produces": [
59061          "application/json",
59062          "application/yaml",
59063          "application/vnd.kubernetes.protobuf"
59064        ],
59065        "responses": {
59066          "200": {
59067            "description": "OK",
59068            "schema": {
59069              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59070            }
59071          },
59072          "401": {
59073            "description": "Unauthorized"
59074          }
59075        },
59076        "schemes": [
59077          "https"
59078        ],
59079        "tags": [
59080          "batch_v1"
59081        ],
59082        "x-kubernetes-action": "get",
59083        "x-kubernetes-group-version-kind": {
59084          "group": "batch",
59085          "kind": "Job",
59086          "version": "v1"
59087        }
59088      },
59089      "parameters": [
59090        {
59091          "description": "name of the Job",
59092          "in": "path",
59093          "name": "name",
59094          "required": true,
59095          "type": "string",
59096          "uniqueItems": true
59097        },
59098        {
59099          "description": "object name and auth scope, such as for teams and projects",
59100          "in": "path",
59101          "name": "namespace",
59102          "required": true,
59103          "type": "string",
59104          "uniqueItems": true
59105        },
59106        {
59107          "description": "If 'true', then the output is pretty printed.",
59108          "in": "query",
59109          "name": "pretty",
59110          "type": "string",
59111          "uniqueItems": true
59112        }
59113      ],
59114      "patch": {
59115        "consumes": [
59116          "application/json-patch+json",
59117          "application/merge-patch+json",
59118          "application/strategic-merge-patch+json",
59119          "application/apply-patch+yaml"
59120        ],
59121        "description": "partially update the specified Job",
59122        "operationId": "patchBatchV1NamespacedJob",
59123        "parameters": [
59124          {
59125            "in": "body",
59126            "name": "body",
59127            "required": true,
59128            "schema": {
59129              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59130            }
59131          },
59132          {
59133            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59134            "in": "query",
59135            "name": "dryRun",
59136            "type": "string",
59137            "uniqueItems": true
59138          },
59139          {
59140            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
59141            "in": "query",
59142            "name": "fieldManager",
59143            "type": "string",
59144            "uniqueItems": true
59145          },
59146          {
59147            "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.",
59148            "in": "query",
59149            "name": "force",
59150            "type": "boolean",
59151            "uniqueItems": true
59152          }
59153        ],
59154        "produces": [
59155          "application/json",
59156          "application/yaml",
59157          "application/vnd.kubernetes.protobuf"
59158        ],
59159        "responses": {
59160          "200": {
59161            "description": "OK",
59162            "schema": {
59163              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59164            }
59165          },
59166          "401": {
59167            "description": "Unauthorized"
59168          }
59169        },
59170        "schemes": [
59171          "https"
59172        ],
59173        "tags": [
59174          "batch_v1"
59175        ],
59176        "x-kubernetes-action": "patch",
59177        "x-kubernetes-group-version-kind": {
59178          "group": "batch",
59179          "kind": "Job",
59180          "version": "v1"
59181        }
59182      },
59183      "put": {
59184        "consumes": [
59185          "*/*"
59186        ],
59187        "description": "replace the specified Job",
59188        "operationId": "replaceBatchV1NamespacedJob",
59189        "parameters": [
59190          {
59191            "in": "body",
59192            "name": "body",
59193            "required": true,
59194            "schema": {
59195              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59196            }
59197          },
59198          {
59199            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59200            "in": "query",
59201            "name": "dryRun",
59202            "type": "string",
59203            "uniqueItems": true
59204          },
59205          {
59206            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59207            "in": "query",
59208            "name": "fieldManager",
59209            "type": "string",
59210            "uniqueItems": true
59211          }
59212        ],
59213        "produces": [
59214          "application/json",
59215          "application/yaml",
59216          "application/vnd.kubernetes.protobuf"
59217        ],
59218        "responses": {
59219          "200": {
59220            "description": "OK",
59221            "schema": {
59222              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59223            }
59224          },
59225          "201": {
59226            "description": "Created",
59227            "schema": {
59228              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59229            }
59230          },
59231          "401": {
59232            "description": "Unauthorized"
59233          }
59234        },
59235        "schemes": [
59236          "https"
59237        ],
59238        "tags": [
59239          "batch_v1"
59240        ],
59241        "x-kubernetes-action": "put",
59242        "x-kubernetes-group-version-kind": {
59243          "group": "batch",
59244          "kind": "Job",
59245          "version": "v1"
59246        }
59247      }
59248    },
59249    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status": {
59250      "get": {
59251        "consumes": [
59252          "*/*"
59253        ],
59254        "description": "read status of the specified Job",
59255        "operationId": "readBatchV1NamespacedJobStatus",
59256        "produces": [
59257          "application/json",
59258          "application/yaml",
59259          "application/vnd.kubernetes.protobuf"
59260        ],
59261        "responses": {
59262          "200": {
59263            "description": "OK",
59264            "schema": {
59265              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59266            }
59267          },
59268          "401": {
59269            "description": "Unauthorized"
59270          }
59271        },
59272        "schemes": [
59273          "https"
59274        ],
59275        "tags": [
59276          "batch_v1"
59277        ],
59278        "x-kubernetes-action": "get",
59279        "x-kubernetes-group-version-kind": {
59280          "group": "batch",
59281          "kind": "Job",
59282          "version": "v1"
59283        }
59284      },
59285      "parameters": [
59286        {
59287          "description": "name of the Job",
59288          "in": "path",
59289          "name": "name",
59290          "required": true,
59291          "type": "string",
59292          "uniqueItems": true
59293        },
59294        {
59295          "description": "object name and auth scope, such as for teams and projects",
59296          "in": "path",
59297          "name": "namespace",
59298          "required": true,
59299          "type": "string",
59300          "uniqueItems": true
59301        },
59302        {
59303          "description": "If 'true', then the output is pretty printed.",
59304          "in": "query",
59305          "name": "pretty",
59306          "type": "string",
59307          "uniqueItems": true
59308        }
59309      ],
59310      "patch": {
59311        "consumes": [
59312          "application/json-patch+json",
59313          "application/merge-patch+json",
59314          "application/strategic-merge-patch+json",
59315          "application/apply-patch+yaml"
59316        ],
59317        "description": "partially update status of the specified Job",
59318        "operationId": "patchBatchV1NamespacedJobStatus",
59319        "parameters": [
59320          {
59321            "in": "body",
59322            "name": "body",
59323            "required": true,
59324            "schema": {
59325              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59326            }
59327          },
59328          {
59329            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59330            "in": "query",
59331            "name": "dryRun",
59332            "type": "string",
59333            "uniqueItems": true
59334          },
59335          {
59336            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
59337            "in": "query",
59338            "name": "fieldManager",
59339            "type": "string",
59340            "uniqueItems": true
59341          },
59342          {
59343            "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.",
59344            "in": "query",
59345            "name": "force",
59346            "type": "boolean",
59347            "uniqueItems": true
59348          }
59349        ],
59350        "produces": [
59351          "application/json",
59352          "application/yaml",
59353          "application/vnd.kubernetes.protobuf"
59354        ],
59355        "responses": {
59356          "200": {
59357            "description": "OK",
59358            "schema": {
59359              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59360            }
59361          },
59362          "401": {
59363            "description": "Unauthorized"
59364          }
59365        },
59366        "schemes": [
59367          "https"
59368        ],
59369        "tags": [
59370          "batch_v1"
59371        ],
59372        "x-kubernetes-action": "patch",
59373        "x-kubernetes-group-version-kind": {
59374          "group": "batch",
59375          "kind": "Job",
59376          "version": "v1"
59377        }
59378      },
59379      "put": {
59380        "consumes": [
59381          "*/*"
59382        ],
59383        "description": "replace status of the specified Job",
59384        "operationId": "replaceBatchV1NamespacedJobStatus",
59385        "parameters": [
59386          {
59387            "in": "body",
59388            "name": "body",
59389            "required": true,
59390            "schema": {
59391              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59392            }
59393          },
59394          {
59395            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59396            "in": "query",
59397            "name": "dryRun",
59398            "type": "string",
59399            "uniqueItems": true
59400          },
59401          {
59402            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59403            "in": "query",
59404            "name": "fieldManager",
59405            "type": "string",
59406            "uniqueItems": true
59407          }
59408        ],
59409        "produces": [
59410          "application/json",
59411          "application/yaml",
59412          "application/vnd.kubernetes.protobuf"
59413        ],
59414        "responses": {
59415          "200": {
59416            "description": "OK",
59417            "schema": {
59418              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59419            }
59420          },
59421          "201": {
59422            "description": "Created",
59423            "schema": {
59424              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59425            }
59426          },
59427          "401": {
59428            "description": "Unauthorized"
59429          }
59430        },
59431        "schemes": [
59432          "https"
59433        ],
59434        "tags": [
59435          "batch_v1"
59436        ],
59437        "x-kubernetes-action": "put",
59438        "x-kubernetes-group-version-kind": {
59439          "group": "batch",
59440          "kind": "Job",
59441          "version": "v1"
59442        }
59443      }
59444    },
59445    "/apis/batch/v1/watch/jobs": {
59446      "get": {
59447        "consumes": [
59448          "*/*"
59449        ],
59450        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
59451        "operationId": "watchBatchV1JobListForAllNamespaces",
59452        "produces": [
59453          "application/json",
59454          "application/yaml",
59455          "application/vnd.kubernetes.protobuf",
59456          "application/json;stream=watch",
59457          "application/vnd.kubernetes.protobuf;stream=watch"
59458        ],
59459        "responses": {
59460          "200": {
59461            "description": "OK",
59462            "schema": {
59463              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
59464            }
59465          },
59466          "401": {
59467            "description": "Unauthorized"
59468          }
59469        },
59470        "schemes": [
59471          "https"
59472        ],
59473        "tags": [
59474          "batch_v1"
59475        ],
59476        "x-kubernetes-action": "watchlist",
59477        "x-kubernetes-group-version-kind": {
59478          "group": "batch",
59479          "kind": "Job",
59480          "version": "v1"
59481        }
59482      },
59483      "parameters": [
59484        {
59485          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
59486          "in": "query",
59487          "name": "allowWatchBookmarks",
59488          "type": "boolean",
59489          "uniqueItems": true
59490        },
59491        {
59492          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59493          "in": "query",
59494          "name": "continue",
59495          "type": "string",
59496          "uniqueItems": true
59497        },
59498        {
59499          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59500          "in": "query",
59501          "name": "fieldSelector",
59502          "type": "string",
59503          "uniqueItems": true
59504        },
59505        {
59506          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59507          "in": "query",
59508          "name": "labelSelector",
59509          "type": "string",
59510          "uniqueItems": true
59511        },
59512        {
59513          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59514          "in": "query",
59515          "name": "limit",
59516          "type": "integer",
59517          "uniqueItems": true
59518        },
59519        {
59520          "description": "If 'true', then the output is pretty printed.",
59521          "in": "query",
59522          "name": "pretty",
59523          "type": "string",
59524          "uniqueItems": true
59525        },
59526        {
59527          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59528          "in": "query",
59529          "name": "resourceVersion",
59530          "type": "string",
59531          "uniqueItems": true
59532        },
59533        {
59534          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59535          "in": "query",
59536          "name": "resourceVersionMatch",
59537          "type": "string",
59538          "uniqueItems": true
59539        },
59540        {
59541          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59542          "in": "query",
59543          "name": "timeoutSeconds",
59544          "type": "integer",
59545          "uniqueItems": true
59546        },
59547        {
59548          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59549          "in": "query",
59550          "name": "watch",
59551          "type": "boolean",
59552          "uniqueItems": true
59553        }
59554      ]
59555    },
59556    "/apis/batch/v1/watch/namespaces/{namespace}/jobs": {
59557      "get": {
59558        "consumes": [
59559          "*/*"
59560        ],
59561        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
59562        "operationId": "watchBatchV1NamespacedJobList",
59563        "produces": [
59564          "application/json",
59565          "application/yaml",
59566          "application/vnd.kubernetes.protobuf",
59567          "application/json;stream=watch",
59568          "application/vnd.kubernetes.protobuf;stream=watch"
59569        ],
59570        "responses": {
59571          "200": {
59572            "description": "OK",
59573            "schema": {
59574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
59575            }
59576          },
59577          "401": {
59578            "description": "Unauthorized"
59579          }
59580        },
59581        "schemes": [
59582          "https"
59583        ],
59584        "tags": [
59585          "batch_v1"
59586        ],
59587        "x-kubernetes-action": "watchlist",
59588        "x-kubernetes-group-version-kind": {
59589          "group": "batch",
59590          "kind": "Job",
59591          "version": "v1"
59592        }
59593      },
59594      "parameters": [
59595        {
59596          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
59597          "in": "query",
59598          "name": "allowWatchBookmarks",
59599          "type": "boolean",
59600          "uniqueItems": true
59601        },
59602        {
59603          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59604          "in": "query",
59605          "name": "continue",
59606          "type": "string",
59607          "uniqueItems": true
59608        },
59609        {
59610          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59611          "in": "query",
59612          "name": "fieldSelector",
59613          "type": "string",
59614          "uniqueItems": true
59615        },
59616        {
59617          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59618          "in": "query",
59619          "name": "labelSelector",
59620          "type": "string",
59621          "uniqueItems": true
59622        },
59623        {
59624          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59625          "in": "query",
59626          "name": "limit",
59627          "type": "integer",
59628          "uniqueItems": true
59629        },
59630        {
59631          "description": "object name and auth scope, such as for teams and projects",
59632          "in": "path",
59633          "name": "namespace",
59634          "required": true,
59635          "type": "string",
59636          "uniqueItems": true
59637        },
59638        {
59639          "description": "If 'true', then the output is pretty printed.",
59640          "in": "query",
59641          "name": "pretty",
59642          "type": "string",
59643          "uniqueItems": true
59644        },
59645        {
59646          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59647          "in": "query",
59648          "name": "resourceVersion",
59649          "type": "string",
59650          "uniqueItems": true
59651        },
59652        {
59653          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59654          "in": "query",
59655          "name": "resourceVersionMatch",
59656          "type": "string",
59657          "uniqueItems": true
59658        },
59659        {
59660          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59661          "in": "query",
59662          "name": "timeoutSeconds",
59663          "type": "integer",
59664          "uniqueItems": true
59665        },
59666        {
59667          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59668          "in": "query",
59669          "name": "watch",
59670          "type": "boolean",
59671          "uniqueItems": true
59672        }
59673      ]
59674    },
59675    "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}": {
59676      "get": {
59677        "consumes": [
59678          "*/*"
59679        ],
59680        "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.",
59681        "operationId": "watchBatchV1NamespacedJob",
59682        "produces": [
59683          "application/json",
59684          "application/yaml",
59685          "application/vnd.kubernetes.protobuf",
59686          "application/json;stream=watch",
59687          "application/vnd.kubernetes.protobuf;stream=watch"
59688        ],
59689        "responses": {
59690          "200": {
59691            "description": "OK",
59692            "schema": {
59693              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
59694            }
59695          },
59696          "401": {
59697            "description": "Unauthorized"
59698          }
59699        },
59700        "schemes": [
59701          "https"
59702        ],
59703        "tags": [
59704          "batch_v1"
59705        ],
59706        "x-kubernetes-action": "watch",
59707        "x-kubernetes-group-version-kind": {
59708          "group": "batch",
59709          "kind": "Job",
59710          "version": "v1"
59711        }
59712      },
59713      "parameters": [
59714        {
59715          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
59716          "in": "query",
59717          "name": "allowWatchBookmarks",
59718          "type": "boolean",
59719          "uniqueItems": true
59720        },
59721        {
59722          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59723          "in": "query",
59724          "name": "continue",
59725          "type": "string",
59726          "uniqueItems": true
59727        },
59728        {
59729          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59730          "in": "query",
59731          "name": "fieldSelector",
59732          "type": "string",
59733          "uniqueItems": true
59734        },
59735        {
59736          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59737          "in": "query",
59738          "name": "labelSelector",
59739          "type": "string",
59740          "uniqueItems": true
59741        },
59742        {
59743          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59744          "in": "query",
59745          "name": "limit",
59746          "type": "integer",
59747          "uniqueItems": true
59748        },
59749        {
59750          "description": "name of the Job",
59751          "in": "path",
59752          "name": "name",
59753          "required": true,
59754          "type": "string",
59755          "uniqueItems": true
59756        },
59757        {
59758          "description": "object name and auth scope, such as for teams and projects",
59759          "in": "path",
59760          "name": "namespace",
59761          "required": true,
59762          "type": "string",
59763          "uniqueItems": true
59764        },
59765        {
59766          "description": "If 'true', then the output is pretty printed.",
59767          "in": "query",
59768          "name": "pretty",
59769          "type": "string",
59770          "uniqueItems": true
59771        },
59772        {
59773          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59774          "in": "query",
59775          "name": "resourceVersion",
59776          "type": "string",
59777          "uniqueItems": true
59778        },
59779        {
59780          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59781          "in": "query",
59782          "name": "resourceVersionMatch",
59783          "type": "string",
59784          "uniqueItems": true
59785        },
59786        {
59787          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59788          "in": "query",
59789          "name": "timeoutSeconds",
59790          "type": "integer",
59791          "uniqueItems": true
59792        },
59793        {
59794          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59795          "in": "query",
59796          "name": "watch",
59797          "type": "boolean",
59798          "uniqueItems": true
59799        }
59800      ]
59801    },
59802    "/apis/batch/v1beta1/": {
59803      "get": {
59804        "consumes": [
59805          "application/json",
59806          "application/yaml",
59807          "application/vnd.kubernetes.protobuf"
59808        ],
59809        "description": "get available resources",
59810        "operationId": "getBatchV1beta1APIResources",
59811        "produces": [
59812          "application/json",
59813          "application/yaml",
59814          "application/vnd.kubernetes.protobuf"
59815        ],
59816        "responses": {
59817          "200": {
59818            "description": "OK",
59819            "schema": {
59820              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
59821            }
59822          },
59823          "401": {
59824            "description": "Unauthorized"
59825          }
59826        },
59827        "schemes": [
59828          "https"
59829        ],
59830        "tags": [
59831          "batch_v1beta1"
59832        ]
59833      }
59834    },
59835    "/apis/batch/v1beta1/cronjobs": {
59836      "get": {
59837        "consumes": [
59838          "*/*"
59839        ],
59840        "description": "list or watch objects of kind CronJob",
59841        "operationId": "listBatchV1beta1CronJobForAllNamespaces",
59842        "produces": [
59843          "application/json",
59844          "application/yaml",
59845          "application/vnd.kubernetes.protobuf",
59846          "application/json;stream=watch",
59847          "application/vnd.kubernetes.protobuf;stream=watch"
59848        ],
59849        "responses": {
59850          "200": {
59851            "description": "OK",
59852            "schema": {
59853              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
59854            }
59855          },
59856          "401": {
59857            "description": "Unauthorized"
59858          }
59859        },
59860        "schemes": [
59861          "https"
59862        ],
59863        "tags": [
59864          "batch_v1beta1"
59865        ],
59866        "x-kubernetes-action": "list",
59867        "x-kubernetes-group-version-kind": {
59868          "group": "batch",
59869          "kind": "CronJob",
59870          "version": "v1beta1"
59871        }
59872      },
59873      "parameters": [
59874        {
59875          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
59876          "in": "query",
59877          "name": "allowWatchBookmarks",
59878          "type": "boolean",
59879          "uniqueItems": true
59880        },
59881        {
59882          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59883          "in": "query",
59884          "name": "continue",
59885          "type": "string",
59886          "uniqueItems": true
59887        },
59888        {
59889          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59890          "in": "query",
59891          "name": "fieldSelector",
59892          "type": "string",
59893          "uniqueItems": true
59894        },
59895        {
59896          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59897          "in": "query",
59898          "name": "labelSelector",
59899          "type": "string",
59900          "uniqueItems": true
59901        },
59902        {
59903          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59904          "in": "query",
59905          "name": "limit",
59906          "type": "integer",
59907          "uniqueItems": true
59908        },
59909        {
59910          "description": "If 'true', then the output is pretty printed.",
59911          "in": "query",
59912          "name": "pretty",
59913          "type": "string",
59914          "uniqueItems": true
59915        },
59916        {
59917          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59918          "in": "query",
59919          "name": "resourceVersion",
59920          "type": "string",
59921          "uniqueItems": true
59922        },
59923        {
59924          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59925          "in": "query",
59926          "name": "resourceVersionMatch",
59927          "type": "string",
59928          "uniqueItems": true
59929        },
59930        {
59931          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59932          "in": "query",
59933          "name": "timeoutSeconds",
59934          "type": "integer",
59935          "uniqueItems": true
59936        },
59937        {
59938          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59939          "in": "query",
59940          "name": "watch",
59941          "type": "boolean",
59942          "uniqueItems": true
59943        }
59944      ]
59945    },
59946    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs": {
59947      "delete": {
59948        "consumes": [
59949          "*/*"
59950        ],
59951        "description": "delete collection of CronJob",
59952        "operationId": "deleteBatchV1beta1CollectionNamespacedCronJob",
59953        "parameters": [
59954          {
59955            "in": "body",
59956            "name": "body",
59957            "schema": {
59958              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
59959            }
59960          },
59961          {
59962            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59963            "in": "query",
59964            "name": "continue",
59965            "type": "string",
59966            "uniqueItems": true
59967          },
59968          {
59969            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59970            "in": "query",
59971            "name": "dryRun",
59972            "type": "string",
59973            "uniqueItems": true
59974          },
59975          {
59976            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59977            "in": "query",
59978            "name": "fieldSelector",
59979            "type": "string",
59980            "uniqueItems": true
59981          },
59982          {
59983            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
59984            "in": "query",
59985            "name": "gracePeriodSeconds",
59986            "type": "integer",
59987            "uniqueItems": true
59988          },
59989          {
59990            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59991            "in": "query",
59992            "name": "labelSelector",
59993            "type": "string",
59994            "uniqueItems": true
59995          },
59996          {
59997            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59998            "in": "query",
59999            "name": "limit",
60000            "type": "integer",
60001            "uniqueItems": true
60002          },
60003          {
60004            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
60005            "in": "query",
60006            "name": "orphanDependents",
60007            "type": "boolean",
60008            "uniqueItems": true
60009          },
60010          {
60011            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
60012            "in": "query",
60013            "name": "propagationPolicy",
60014            "type": "string",
60015            "uniqueItems": true
60016          },
60017          {
60018            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60019            "in": "query",
60020            "name": "resourceVersion",
60021            "type": "string",
60022            "uniqueItems": true
60023          },
60024          {
60025            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60026            "in": "query",
60027            "name": "resourceVersionMatch",
60028            "type": "string",
60029            "uniqueItems": true
60030          },
60031          {
60032            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60033            "in": "query",
60034            "name": "timeoutSeconds",
60035            "type": "integer",
60036            "uniqueItems": true
60037          }
60038        ],
60039        "produces": [
60040          "application/json",
60041          "application/yaml",
60042          "application/vnd.kubernetes.protobuf"
60043        ],
60044        "responses": {
60045          "200": {
60046            "description": "OK",
60047            "schema": {
60048              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
60049            }
60050          },
60051          "401": {
60052            "description": "Unauthorized"
60053          }
60054        },
60055        "schemes": [
60056          "https"
60057        ],
60058        "tags": [
60059          "batch_v1beta1"
60060        ],
60061        "x-kubernetes-action": "deletecollection",
60062        "x-kubernetes-group-version-kind": {
60063          "group": "batch",
60064          "kind": "CronJob",
60065          "version": "v1beta1"
60066        }
60067      },
60068      "get": {
60069        "consumes": [
60070          "*/*"
60071        ],
60072        "description": "list or watch objects of kind CronJob",
60073        "operationId": "listBatchV1beta1NamespacedCronJob",
60074        "parameters": [
60075          {
60076            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60077            "in": "query",
60078            "name": "allowWatchBookmarks",
60079            "type": "boolean",
60080            "uniqueItems": true
60081          },
60082          {
60083            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60084            "in": "query",
60085            "name": "continue",
60086            "type": "string",
60087            "uniqueItems": true
60088          },
60089          {
60090            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60091            "in": "query",
60092            "name": "fieldSelector",
60093            "type": "string",
60094            "uniqueItems": true
60095          },
60096          {
60097            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60098            "in": "query",
60099            "name": "labelSelector",
60100            "type": "string",
60101            "uniqueItems": true
60102          },
60103          {
60104            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60105            "in": "query",
60106            "name": "limit",
60107            "type": "integer",
60108            "uniqueItems": true
60109          },
60110          {
60111            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60112            "in": "query",
60113            "name": "resourceVersion",
60114            "type": "string",
60115            "uniqueItems": true
60116          },
60117          {
60118            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60119            "in": "query",
60120            "name": "resourceVersionMatch",
60121            "type": "string",
60122            "uniqueItems": true
60123          },
60124          {
60125            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60126            "in": "query",
60127            "name": "timeoutSeconds",
60128            "type": "integer",
60129            "uniqueItems": true
60130          },
60131          {
60132            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60133            "in": "query",
60134            "name": "watch",
60135            "type": "boolean",
60136            "uniqueItems": true
60137          }
60138        ],
60139        "produces": [
60140          "application/json",
60141          "application/yaml",
60142          "application/vnd.kubernetes.protobuf",
60143          "application/json;stream=watch",
60144          "application/vnd.kubernetes.protobuf;stream=watch"
60145        ],
60146        "responses": {
60147          "200": {
60148            "description": "OK",
60149            "schema": {
60150              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
60151            }
60152          },
60153          "401": {
60154            "description": "Unauthorized"
60155          }
60156        },
60157        "schemes": [
60158          "https"
60159        ],
60160        "tags": [
60161          "batch_v1beta1"
60162        ],
60163        "x-kubernetes-action": "list",
60164        "x-kubernetes-group-version-kind": {
60165          "group": "batch",
60166          "kind": "CronJob",
60167          "version": "v1beta1"
60168        }
60169      },
60170      "parameters": [
60171        {
60172          "description": "object name and auth scope, such as for teams and projects",
60173          "in": "path",
60174          "name": "namespace",
60175          "required": true,
60176          "type": "string",
60177          "uniqueItems": true
60178        },
60179        {
60180          "description": "If 'true', then the output is pretty printed.",
60181          "in": "query",
60182          "name": "pretty",
60183          "type": "string",
60184          "uniqueItems": true
60185        }
60186      ],
60187      "post": {
60188        "consumes": [
60189          "*/*"
60190        ],
60191        "description": "create a CronJob",
60192        "operationId": "createBatchV1beta1NamespacedCronJob",
60193        "parameters": [
60194          {
60195            "in": "body",
60196            "name": "body",
60197            "required": true,
60198            "schema": {
60199              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60200            }
60201          },
60202          {
60203            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60204            "in": "query",
60205            "name": "dryRun",
60206            "type": "string",
60207            "uniqueItems": true
60208          },
60209          {
60210            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60211            "in": "query",
60212            "name": "fieldManager",
60213            "type": "string",
60214            "uniqueItems": true
60215          }
60216        ],
60217        "produces": [
60218          "application/json",
60219          "application/yaml",
60220          "application/vnd.kubernetes.protobuf"
60221        ],
60222        "responses": {
60223          "200": {
60224            "description": "OK",
60225            "schema": {
60226              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60227            }
60228          },
60229          "201": {
60230            "description": "Created",
60231            "schema": {
60232              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60233            }
60234          },
60235          "202": {
60236            "description": "Accepted",
60237            "schema": {
60238              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60239            }
60240          },
60241          "401": {
60242            "description": "Unauthorized"
60243          }
60244        },
60245        "schemes": [
60246          "https"
60247        ],
60248        "tags": [
60249          "batch_v1beta1"
60250        ],
60251        "x-kubernetes-action": "post",
60252        "x-kubernetes-group-version-kind": {
60253          "group": "batch",
60254          "kind": "CronJob",
60255          "version": "v1beta1"
60256        }
60257      }
60258    },
60259    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}": {
60260      "delete": {
60261        "consumes": [
60262          "*/*"
60263        ],
60264        "description": "delete a CronJob",
60265        "operationId": "deleteBatchV1beta1NamespacedCronJob",
60266        "parameters": [
60267          {
60268            "in": "body",
60269            "name": "body",
60270            "schema": {
60271              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
60272            }
60273          },
60274          {
60275            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60276            "in": "query",
60277            "name": "dryRun",
60278            "type": "string",
60279            "uniqueItems": true
60280          },
60281          {
60282            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
60283            "in": "query",
60284            "name": "gracePeriodSeconds",
60285            "type": "integer",
60286            "uniqueItems": true
60287          },
60288          {
60289            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
60290            "in": "query",
60291            "name": "orphanDependents",
60292            "type": "boolean",
60293            "uniqueItems": true
60294          },
60295          {
60296            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
60297            "in": "query",
60298            "name": "propagationPolicy",
60299            "type": "string",
60300            "uniqueItems": true
60301          }
60302        ],
60303        "produces": [
60304          "application/json",
60305          "application/yaml",
60306          "application/vnd.kubernetes.protobuf"
60307        ],
60308        "responses": {
60309          "200": {
60310            "description": "OK",
60311            "schema": {
60312              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
60313            }
60314          },
60315          "202": {
60316            "description": "Accepted",
60317            "schema": {
60318              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
60319            }
60320          },
60321          "401": {
60322            "description": "Unauthorized"
60323          }
60324        },
60325        "schemes": [
60326          "https"
60327        ],
60328        "tags": [
60329          "batch_v1beta1"
60330        ],
60331        "x-kubernetes-action": "delete",
60332        "x-kubernetes-group-version-kind": {
60333          "group": "batch",
60334          "kind": "CronJob",
60335          "version": "v1beta1"
60336        }
60337      },
60338      "get": {
60339        "consumes": [
60340          "*/*"
60341        ],
60342        "description": "read the specified CronJob",
60343        "operationId": "readBatchV1beta1NamespacedCronJob",
60344        "produces": [
60345          "application/json",
60346          "application/yaml",
60347          "application/vnd.kubernetes.protobuf"
60348        ],
60349        "responses": {
60350          "200": {
60351            "description": "OK",
60352            "schema": {
60353              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60354            }
60355          },
60356          "401": {
60357            "description": "Unauthorized"
60358          }
60359        },
60360        "schemes": [
60361          "https"
60362        ],
60363        "tags": [
60364          "batch_v1beta1"
60365        ],
60366        "x-kubernetes-action": "get",
60367        "x-kubernetes-group-version-kind": {
60368          "group": "batch",
60369          "kind": "CronJob",
60370          "version": "v1beta1"
60371        }
60372      },
60373      "parameters": [
60374        {
60375          "description": "name of the CronJob",
60376          "in": "path",
60377          "name": "name",
60378          "required": true,
60379          "type": "string",
60380          "uniqueItems": true
60381        },
60382        {
60383          "description": "object name and auth scope, such as for teams and projects",
60384          "in": "path",
60385          "name": "namespace",
60386          "required": true,
60387          "type": "string",
60388          "uniqueItems": true
60389        },
60390        {
60391          "description": "If 'true', then the output is pretty printed.",
60392          "in": "query",
60393          "name": "pretty",
60394          "type": "string",
60395          "uniqueItems": true
60396        }
60397      ],
60398      "patch": {
60399        "consumes": [
60400          "application/json-patch+json",
60401          "application/merge-patch+json",
60402          "application/strategic-merge-patch+json",
60403          "application/apply-patch+yaml"
60404        ],
60405        "description": "partially update the specified CronJob",
60406        "operationId": "patchBatchV1beta1NamespacedCronJob",
60407        "parameters": [
60408          {
60409            "in": "body",
60410            "name": "body",
60411            "required": true,
60412            "schema": {
60413              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
60414            }
60415          },
60416          {
60417            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60418            "in": "query",
60419            "name": "dryRun",
60420            "type": "string",
60421            "uniqueItems": true
60422          },
60423          {
60424            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
60425            "in": "query",
60426            "name": "fieldManager",
60427            "type": "string",
60428            "uniqueItems": true
60429          },
60430          {
60431            "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.",
60432            "in": "query",
60433            "name": "force",
60434            "type": "boolean",
60435            "uniqueItems": true
60436          }
60437        ],
60438        "produces": [
60439          "application/json",
60440          "application/yaml",
60441          "application/vnd.kubernetes.protobuf"
60442        ],
60443        "responses": {
60444          "200": {
60445            "description": "OK",
60446            "schema": {
60447              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60448            }
60449          },
60450          "401": {
60451            "description": "Unauthorized"
60452          }
60453        },
60454        "schemes": [
60455          "https"
60456        ],
60457        "tags": [
60458          "batch_v1beta1"
60459        ],
60460        "x-kubernetes-action": "patch",
60461        "x-kubernetes-group-version-kind": {
60462          "group": "batch",
60463          "kind": "CronJob",
60464          "version": "v1beta1"
60465        }
60466      },
60467      "put": {
60468        "consumes": [
60469          "*/*"
60470        ],
60471        "description": "replace the specified CronJob",
60472        "operationId": "replaceBatchV1beta1NamespacedCronJob",
60473        "parameters": [
60474          {
60475            "in": "body",
60476            "name": "body",
60477            "required": true,
60478            "schema": {
60479              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60480            }
60481          },
60482          {
60483            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60484            "in": "query",
60485            "name": "dryRun",
60486            "type": "string",
60487            "uniqueItems": true
60488          },
60489          {
60490            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60491            "in": "query",
60492            "name": "fieldManager",
60493            "type": "string",
60494            "uniqueItems": true
60495          }
60496        ],
60497        "produces": [
60498          "application/json",
60499          "application/yaml",
60500          "application/vnd.kubernetes.protobuf"
60501        ],
60502        "responses": {
60503          "200": {
60504            "description": "OK",
60505            "schema": {
60506              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60507            }
60508          },
60509          "201": {
60510            "description": "Created",
60511            "schema": {
60512              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60513            }
60514          },
60515          "401": {
60516            "description": "Unauthorized"
60517          }
60518        },
60519        "schemes": [
60520          "https"
60521        ],
60522        "tags": [
60523          "batch_v1beta1"
60524        ],
60525        "x-kubernetes-action": "put",
60526        "x-kubernetes-group-version-kind": {
60527          "group": "batch",
60528          "kind": "CronJob",
60529          "version": "v1beta1"
60530        }
60531      }
60532    },
60533    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status": {
60534      "get": {
60535        "consumes": [
60536          "*/*"
60537        ],
60538        "description": "read status of the specified CronJob",
60539        "operationId": "readBatchV1beta1NamespacedCronJobStatus",
60540        "produces": [
60541          "application/json",
60542          "application/yaml",
60543          "application/vnd.kubernetes.protobuf"
60544        ],
60545        "responses": {
60546          "200": {
60547            "description": "OK",
60548            "schema": {
60549              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60550            }
60551          },
60552          "401": {
60553            "description": "Unauthorized"
60554          }
60555        },
60556        "schemes": [
60557          "https"
60558        ],
60559        "tags": [
60560          "batch_v1beta1"
60561        ],
60562        "x-kubernetes-action": "get",
60563        "x-kubernetes-group-version-kind": {
60564          "group": "batch",
60565          "kind": "CronJob",
60566          "version": "v1beta1"
60567        }
60568      },
60569      "parameters": [
60570        {
60571          "description": "name of the CronJob",
60572          "in": "path",
60573          "name": "name",
60574          "required": true,
60575          "type": "string",
60576          "uniqueItems": true
60577        },
60578        {
60579          "description": "object name and auth scope, such as for teams and projects",
60580          "in": "path",
60581          "name": "namespace",
60582          "required": true,
60583          "type": "string",
60584          "uniqueItems": true
60585        },
60586        {
60587          "description": "If 'true', then the output is pretty printed.",
60588          "in": "query",
60589          "name": "pretty",
60590          "type": "string",
60591          "uniqueItems": true
60592        }
60593      ],
60594      "patch": {
60595        "consumes": [
60596          "application/json-patch+json",
60597          "application/merge-patch+json",
60598          "application/strategic-merge-patch+json",
60599          "application/apply-patch+yaml"
60600        ],
60601        "description": "partially update status of the specified CronJob",
60602        "operationId": "patchBatchV1beta1NamespacedCronJobStatus",
60603        "parameters": [
60604          {
60605            "in": "body",
60606            "name": "body",
60607            "required": true,
60608            "schema": {
60609              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
60610            }
60611          },
60612          {
60613            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60614            "in": "query",
60615            "name": "dryRun",
60616            "type": "string",
60617            "uniqueItems": true
60618          },
60619          {
60620            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
60621            "in": "query",
60622            "name": "fieldManager",
60623            "type": "string",
60624            "uniqueItems": true
60625          },
60626          {
60627            "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.",
60628            "in": "query",
60629            "name": "force",
60630            "type": "boolean",
60631            "uniqueItems": true
60632          }
60633        ],
60634        "produces": [
60635          "application/json",
60636          "application/yaml",
60637          "application/vnd.kubernetes.protobuf"
60638        ],
60639        "responses": {
60640          "200": {
60641            "description": "OK",
60642            "schema": {
60643              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60644            }
60645          },
60646          "401": {
60647            "description": "Unauthorized"
60648          }
60649        },
60650        "schemes": [
60651          "https"
60652        ],
60653        "tags": [
60654          "batch_v1beta1"
60655        ],
60656        "x-kubernetes-action": "patch",
60657        "x-kubernetes-group-version-kind": {
60658          "group": "batch",
60659          "kind": "CronJob",
60660          "version": "v1beta1"
60661        }
60662      },
60663      "put": {
60664        "consumes": [
60665          "*/*"
60666        ],
60667        "description": "replace status of the specified CronJob",
60668        "operationId": "replaceBatchV1beta1NamespacedCronJobStatus",
60669        "parameters": [
60670          {
60671            "in": "body",
60672            "name": "body",
60673            "required": true,
60674            "schema": {
60675              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60676            }
60677          },
60678          {
60679            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60680            "in": "query",
60681            "name": "dryRun",
60682            "type": "string",
60683            "uniqueItems": true
60684          },
60685          {
60686            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60687            "in": "query",
60688            "name": "fieldManager",
60689            "type": "string",
60690            "uniqueItems": true
60691          }
60692        ],
60693        "produces": [
60694          "application/json",
60695          "application/yaml",
60696          "application/vnd.kubernetes.protobuf"
60697        ],
60698        "responses": {
60699          "200": {
60700            "description": "OK",
60701            "schema": {
60702              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60703            }
60704          },
60705          "201": {
60706            "description": "Created",
60707            "schema": {
60708              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
60709            }
60710          },
60711          "401": {
60712            "description": "Unauthorized"
60713          }
60714        },
60715        "schemes": [
60716          "https"
60717        ],
60718        "tags": [
60719          "batch_v1beta1"
60720        ],
60721        "x-kubernetes-action": "put",
60722        "x-kubernetes-group-version-kind": {
60723          "group": "batch",
60724          "kind": "CronJob",
60725          "version": "v1beta1"
60726        }
60727      }
60728    },
60729    "/apis/batch/v1beta1/watch/cronjobs": {
60730      "get": {
60731        "consumes": [
60732          "*/*"
60733        ],
60734        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
60735        "operationId": "watchBatchV1beta1CronJobListForAllNamespaces",
60736        "produces": [
60737          "application/json",
60738          "application/yaml",
60739          "application/vnd.kubernetes.protobuf",
60740          "application/json;stream=watch",
60741          "application/vnd.kubernetes.protobuf;stream=watch"
60742        ],
60743        "responses": {
60744          "200": {
60745            "description": "OK",
60746            "schema": {
60747              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60748            }
60749          },
60750          "401": {
60751            "description": "Unauthorized"
60752          }
60753        },
60754        "schemes": [
60755          "https"
60756        ],
60757        "tags": [
60758          "batch_v1beta1"
60759        ],
60760        "x-kubernetes-action": "watchlist",
60761        "x-kubernetes-group-version-kind": {
60762          "group": "batch",
60763          "kind": "CronJob",
60764          "version": "v1beta1"
60765        }
60766      },
60767      "parameters": [
60768        {
60769          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60770          "in": "query",
60771          "name": "allowWatchBookmarks",
60772          "type": "boolean",
60773          "uniqueItems": true
60774        },
60775        {
60776          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60777          "in": "query",
60778          "name": "continue",
60779          "type": "string",
60780          "uniqueItems": true
60781        },
60782        {
60783          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60784          "in": "query",
60785          "name": "fieldSelector",
60786          "type": "string",
60787          "uniqueItems": true
60788        },
60789        {
60790          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60791          "in": "query",
60792          "name": "labelSelector",
60793          "type": "string",
60794          "uniqueItems": true
60795        },
60796        {
60797          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60798          "in": "query",
60799          "name": "limit",
60800          "type": "integer",
60801          "uniqueItems": true
60802        },
60803        {
60804          "description": "If 'true', then the output is pretty printed.",
60805          "in": "query",
60806          "name": "pretty",
60807          "type": "string",
60808          "uniqueItems": true
60809        },
60810        {
60811          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60812          "in": "query",
60813          "name": "resourceVersion",
60814          "type": "string",
60815          "uniqueItems": true
60816        },
60817        {
60818          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60819          "in": "query",
60820          "name": "resourceVersionMatch",
60821          "type": "string",
60822          "uniqueItems": true
60823        },
60824        {
60825          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60826          "in": "query",
60827          "name": "timeoutSeconds",
60828          "type": "integer",
60829          "uniqueItems": true
60830        },
60831        {
60832          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60833          "in": "query",
60834          "name": "watch",
60835          "type": "boolean",
60836          "uniqueItems": true
60837        }
60838      ]
60839    },
60840    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs": {
60841      "get": {
60842        "consumes": [
60843          "*/*"
60844        ],
60845        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
60846        "operationId": "watchBatchV1beta1NamespacedCronJobList",
60847        "produces": [
60848          "application/json",
60849          "application/yaml",
60850          "application/vnd.kubernetes.protobuf",
60851          "application/json;stream=watch",
60852          "application/vnd.kubernetes.protobuf;stream=watch"
60853        ],
60854        "responses": {
60855          "200": {
60856            "description": "OK",
60857            "schema": {
60858              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60859            }
60860          },
60861          "401": {
60862            "description": "Unauthorized"
60863          }
60864        },
60865        "schemes": [
60866          "https"
60867        ],
60868        "tags": [
60869          "batch_v1beta1"
60870        ],
60871        "x-kubernetes-action": "watchlist",
60872        "x-kubernetes-group-version-kind": {
60873          "group": "batch",
60874          "kind": "CronJob",
60875          "version": "v1beta1"
60876        }
60877      },
60878      "parameters": [
60879        {
60880          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60881          "in": "query",
60882          "name": "allowWatchBookmarks",
60883          "type": "boolean",
60884          "uniqueItems": true
60885        },
60886        {
60887          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60888          "in": "query",
60889          "name": "continue",
60890          "type": "string",
60891          "uniqueItems": true
60892        },
60893        {
60894          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60895          "in": "query",
60896          "name": "fieldSelector",
60897          "type": "string",
60898          "uniqueItems": true
60899        },
60900        {
60901          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60902          "in": "query",
60903          "name": "labelSelector",
60904          "type": "string",
60905          "uniqueItems": true
60906        },
60907        {
60908          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60909          "in": "query",
60910          "name": "limit",
60911          "type": "integer",
60912          "uniqueItems": true
60913        },
60914        {
60915          "description": "object name and auth scope, such as for teams and projects",
60916          "in": "path",
60917          "name": "namespace",
60918          "required": true,
60919          "type": "string",
60920          "uniqueItems": true
60921        },
60922        {
60923          "description": "If 'true', then the output is pretty printed.",
60924          "in": "query",
60925          "name": "pretty",
60926          "type": "string",
60927          "uniqueItems": true
60928        },
60929        {
60930          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60931          "in": "query",
60932          "name": "resourceVersion",
60933          "type": "string",
60934          "uniqueItems": true
60935        },
60936        {
60937          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60938          "in": "query",
60939          "name": "resourceVersionMatch",
60940          "type": "string",
60941          "uniqueItems": true
60942        },
60943        {
60944          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60945          "in": "query",
60946          "name": "timeoutSeconds",
60947          "type": "integer",
60948          "uniqueItems": true
60949        },
60950        {
60951          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60952          "in": "query",
60953          "name": "watch",
60954          "type": "boolean",
60955          "uniqueItems": true
60956        }
60957      ]
60958    },
60959    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs/{name}": {
60960      "get": {
60961        "consumes": [
60962          "*/*"
60963        ],
60964        "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.",
60965        "operationId": "watchBatchV1beta1NamespacedCronJob",
60966        "produces": [
60967          "application/json",
60968          "application/yaml",
60969          "application/vnd.kubernetes.protobuf",
60970          "application/json;stream=watch",
60971          "application/vnd.kubernetes.protobuf;stream=watch"
60972        ],
60973        "responses": {
60974          "200": {
60975            "description": "OK",
60976            "schema": {
60977              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60978            }
60979          },
60980          "401": {
60981            "description": "Unauthorized"
60982          }
60983        },
60984        "schemes": [
60985          "https"
60986        ],
60987        "tags": [
60988          "batch_v1beta1"
60989        ],
60990        "x-kubernetes-action": "watch",
60991        "x-kubernetes-group-version-kind": {
60992          "group": "batch",
60993          "kind": "CronJob",
60994          "version": "v1beta1"
60995        }
60996      },
60997      "parameters": [
60998        {
60999          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
61000          "in": "query",
61001          "name": "allowWatchBookmarks",
61002          "type": "boolean",
61003          "uniqueItems": true
61004        },
61005        {
61006          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61007          "in": "query",
61008          "name": "continue",
61009          "type": "string",
61010          "uniqueItems": true
61011        },
61012        {
61013          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61014          "in": "query",
61015          "name": "fieldSelector",
61016          "type": "string",
61017          "uniqueItems": true
61018        },
61019        {
61020          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61021          "in": "query",
61022          "name": "labelSelector",
61023          "type": "string",
61024          "uniqueItems": true
61025        },
61026        {
61027          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61028          "in": "query",
61029          "name": "limit",
61030          "type": "integer",
61031          "uniqueItems": true
61032        },
61033        {
61034          "description": "name of the CronJob",
61035          "in": "path",
61036          "name": "name",
61037          "required": true,
61038          "type": "string",
61039          "uniqueItems": true
61040        },
61041        {
61042          "description": "object name and auth scope, such as for teams and projects",
61043          "in": "path",
61044          "name": "namespace",
61045          "required": true,
61046          "type": "string",
61047          "uniqueItems": true
61048        },
61049        {
61050          "description": "If 'true', then the output is pretty printed.",
61051          "in": "query",
61052          "name": "pretty",
61053          "type": "string",
61054          "uniqueItems": true
61055        },
61056        {
61057          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61058          "in": "query",
61059          "name": "resourceVersion",
61060          "type": "string",
61061          "uniqueItems": true
61062        },
61063        {
61064          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61065          "in": "query",
61066          "name": "resourceVersionMatch",
61067          "type": "string",
61068          "uniqueItems": true
61069        },
61070        {
61071          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61072          "in": "query",
61073          "name": "timeoutSeconds",
61074          "type": "integer",
61075          "uniqueItems": true
61076        },
61077        {
61078          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61079          "in": "query",
61080          "name": "watch",
61081          "type": "boolean",
61082          "uniqueItems": true
61083        }
61084      ]
61085    },
61086    "/apis/batch/v2alpha1/": {
61087      "get": {
61088        "consumes": [
61089          "application/json",
61090          "application/yaml",
61091          "application/vnd.kubernetes.protobuf"
61092        ],
61093        "description": "get available resources",
61094        "operationId": "getBatchV2alpha1APIResources",
61095        "produces": [
61096          "application/json",
61097          "application/yaml",
61098          "application/vnd.kubernetes.protobuf"
61099        ],
61100        "responses": {
61101          "200": {
61102            "description": "OK",
61103            "schema": {
61104              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
61105            }
61106          },
61107          "401": {
61108            "description": "Unauthorized"
61109          }
61110        },
61111        "schemes": [
61112          "https"
61113        ],
61114        "tags": [
61115          "batch_v2alpha1"
61116        ]
61117      }
61118    },
61119    "/apis/batch/v2alpha1/cronjobs": {
61120      "get": {
61121        "consumes": [
61122          "*/*"
61123        ],
61124        "description": "list or watch objects of kind CronJob",
61125        "operationId": "listBatchV2alpha1CronJobForAllNamespaces",
61126        "produces": [
61127          "application/json",
61128          "application/yaml",
61129          "application/vnd.kubernetes.protobuf",
61130          "application/json;stream=watch",
61131          "application/vnd.kubernetes.protobuf;stream=watch"
61132        ],
61133        "responses": {
61134          "200": {
61135            "description": "OK",
61136            "schema": {
61137              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobList"
61138            }
61139          },
61140          "401": {
61141            "description": "Unauthorized"
61142          }
61143        },
61144        "schemes": [
61145          "https"
61146        ],
61147        "tags": [
61148          "batch_v2alpha1"
61149        ],
61150        "x-kubernetes-action": "list",
61151        "x-kubernetes-group-version-kind": {
61152          "group": "batch",
61153          "kind": "CronJob",
61154          "version": "v2alpha1"
61155        }
61156      },
61157      "parameters": [
61158        {
61159          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
61160          "in": "query",
61161          "name": "allowWatchBookmarks",
61162          "type": "boolean",
61163          "uniqueItems": true
61164        },
61165        {
61166          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61167          "in": "query",
61168          "name": "continue",
61169          "type": "string",
61170          "uniqueItems": true
61171        },
61172        {
61173          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61174          "in": "query",
61175          "name": "fieldSelector",
61176          "type": "string",
61177          "uniqueItems": true
61178        },
61179        {
61180          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61181          "in": "query",
61182          "name": "labelSelector",
61183          "type": "string",
61184          "uniqueItems": true
61185        },
61186        {
61187          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61188          "in": "query",
61189          "name": "limit",
61190          "type": "integer",
61191          "uniqueItems": true
61192        },
61193        {
61194          "description": "If 'true', then the output is pretty printed.",
61195          "in": "query",
61196          "name": "pretty",
61197          "type": "string",
61198          "uniqueItems": true
61199        },
61200        {
61201          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61202          "in": "query",
61203          "name": "resourceVersion",
61204          "type": "string",
61205          "uniqueItems": true
61206        },
61207        {
61208          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61209          "in": "query",
61210          "name": "resourceVersionMatch",
61211          "type": "string",
61212          "uniqueItems": true
61213        },
61214        {
61215          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61216          "in": "query",
61217          "name": "timeoutSeconds",
61218          "type": "integer",
61219          "uniqueItems": true
61220        },
61221        {
61222          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61223          "in": "query",
61224          "name": "watch",
61225          "type": "boolean",
61226          "uniqueItems": true
61227        }
61228      ]
61229    },
61230    "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs": {
61231      "delete": {
61232        "consumes": [
61233          "*/*"
61234        ],
61235        "description": "delete collection of CronJob",
61236        "operationId": "deleteBatchV2alpha1CollectionNamespacedCronJob",
61237        "parameters": [
61238          {
61239            "in": "body",
61240            "name": "body",
61241            "schema": {
61242              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
61243            }
61244          },
61245          {
61246            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61247            "in": "query",
61248            "name": "continue",
61249            "type": "string",
61250            "uniqueItems": true
61251          },
61252          {
61253            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61254            "in": "query",
61255            "name": "dryRun",
61256            "type": "string",
61257            "uniqueItems": true
61258          },
61259          {
61260            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61261            "in": "query",
61262            "name": "fieldSelector",
61263            "type": "string",
61264            "uniqueItems": true
61265          },
61266          {
61267            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
61268            "in": "query",
61269            "name": "gracePeriodSeconds",
61270            "type": "integer",
61271            "uniqueItems": true
61272          },
61273          {
61274            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61275            "in": "query",
61276            "name": "labelSelector",
61277            "type": "string",
61278            "uniqueItems": true
61279          },
61280          {
61281            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61282            "in": "query",
61283            "name": "limit",
61284            "type": "integer",
61285            "uniqueItems": true
61286          },
61287          {
61288            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
61289            "in": "query",
61290            "name": "orphanDependents",
61291            "type": "boolean",
61292            "uniqueItems": true
61293          },
61294          {
61295            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
61296            "in": "query",
61297            "name": "propagationPolicy",
61298            "type": "string",
61299            "uniqueItems": true
61300          },
61301          {
61302            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61303            "in": "query",
61304            "name": "resourceVersion",
61305            "type": "string",
61306            "uniqueItems": true
61307          },
61308          {
61309            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61310            "in": "query",
61311            "name": "resourceVersionMatch",
61312            "type": "string",
61313            "uniqueItems": true
61314          },
61315          {
61316            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61317            "in": "query",
61318            "name": "timeoutSeconds",
61319            "type": "integer",
61320            "uniqueItems": true
61321          }
61322        ],
61323        "produces": [
61324          "application/json",
61325          "application/yaml",
61326          "application/vnd.kubernetes.protobuf"
61327        ],
61328        "responses": {
61329          "200": {
61330            "description": "OK",
61331            "schema": {
61332              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61333            }
61334          },
61335          "401": {
61336            "description": "Unauthorized"
61337          }
61338        },
61339        "schemes": [
61340          "https"
61341        ],
61342        "tags": [
61343          "batch_v2alpha1"
61344        ],
61345        "x-kubernetes-action": "deletecollection",
61346        "x-kubernetes-group-version-kind": {
61347          "group": "batch",
61348          "kind": "CronJob",
61349          "version": "v2alpha1"
61350        }
61351      },
61352      "get": {
61353        "consumes": [
61354          "*/*"
61355        ],
61356        "description": "list or watch objects of kind CronJob",
61357        "operationId": "listBatchV2alpha1NamespacedCronJob",
61358        "parameters": [
61359          {
61360            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
61361            "in": "query",
61362            "name": "allowWatchBookmarks",
61363            "type": "boolean",
61364            "uniqueItems": true
61365          },
61366          {
61367            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61368            "in": "query",
61369            "name": "continue",
61370            "type": "string",
61371            "uniqueItems": true
61372          },
61373          {
61374            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61375            "in": "query",
61376            "name": "fieldSelector",
61377            "type": "string",
61378            "uniqueItems": true
61379          },
61380          {
61381            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61382            "in": "query",
61383            "name": "labelSelector",
61384            "type": "string",
61385            "uniqueItems": true
61386          },
61387          {
61388            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61389            "in": "query",
61390            "name": "limit",
61391            "type": "integer",
61392            "uniqueItems": true
61393          },
61394          {
61395            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61396            "in": "query",
61397            "name": "resourceVersion",
61398            "type": "string",
61399            "uniqueItems": true
61400          },
61401          {
61402            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61403            "in": "query",
61404            "name": "resourceVersionMatch",
61405            "type": "string",
61406            "uniqueItems": true
61407          },
61408          {
61409            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61410            "in": "query",
61411            "name": "timeoutSeconds",
61412            "type": "integer",
61413            "uniqueItems": true
61414          },
61415          {
61416            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61417            "in": "query",
61418            "name": "watch",
61419            "type": "boolean",
61420            "uniqueItems": true
61421          }
61422        ],
61423        "produces": [
61424          "application/json",
61425          "application/yaml",
61426          "application/vnd.kubernetes.protobuf",
61427          "application/json;stream=watch",
61428          "application/vnd.kubernetes.protobuf;stream=watch"
61429        ],
61430        "responses": {
61431          "200": {
61432            "description": "OK",
61433            "schema": {
61434              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobList"
61435            }
61436          },
61437          "401": {
61438            "description": "Unauthorized"
61439          }
61440        },
61441        "schemes": [
61442          "https"
61443        ],
61444        "tags": [
61445          "batch_v2alpha1"
61446        ],
61447        "x-kubernetes-action": "list",
61448        "x-kubernetes-group-version-kind": {
61449          "group": "batch",
61450          "kind": "CronJob",
61451          "version": "v2alpha1"
61452        }
61453      },
61454      "parameters": [
61455        {
61456          "description": "object name and auth scope, such as for teams and projects",
61457          "in": "path",
61458          "name": "namespace",
61459          "required": true,
61460          "type": "string",
61461          "uniqueItems": true
61462        },
61463        {
61464          "description": "If 'true', then the output is pretty printed.",
61465          "in": "query",
61466          "name": "pretty",
61467          "type": "string",
61468          "uniqueItems": true
61469        }
61470      ],
61471      "post": {
61472        "consumes": [
61473          "*/*"
61474        ],
61475        "description": "create a CronJob",
61476        "operationId": "createBatchV2alpha1NamespacedCronJob",
61477        "parameters": [
61478          {
61479            "in": "body",
61480            "name": "body",
61481            "required": true,
61482            "schema": {
61483              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61484            }
61485          },
61486          {
61487            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61488            "in": "query",
61489            "name": "dryRun",
61490            "type": "string",
61491            "uniqueItems": true
61492          },
61493          {
61494            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61495            "in": "query",
61496            "name": "fieldManager",
61497            "type": "string",
61498            "uniqueItems": true
61499          }
61500        ],
61501        "produces": [
61502          "application/json",
61503          "application/yaml",
61504          "application/vnd.kubernetes.protobuf"
61505        ],
61506        "responses": {
61507          "200": {
61508            "description": "OK",
61509            "schema": {
61510              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61511            }
61512          },
61513          "201": {
61514            "description": "Created",
61515            "schema": {
61516              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61517            }
61518          },
61519          "202": {
61520            "description": "Accepted",
61521            "schema": {
61522              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61523            }
61524          },
61525          "401": {
61526            "description": "Unauthorized"
61527          }
61528        },
61529        "schemes": [
61530          "https"
61531        ],
61532        "tags": [
61533          "batch_v2alpha1"
61534        ],
61535        "x-kubernetes-action": "post",
61536        "x-kubernetes-group-version-kind": {
61537          "group": "batch",
61538          "kind": "CronJob",
61539          "version": "v2alpha1"
61540        }
61541      }
61542    },
61543    "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}": {
61544      "delete": {
61545        "consumes": [
61546          "*/*"
61547        ],
61548        "description": "delete a CronJob",
61549        "operationId": "deleteBatchV2alpha1NamespacedCronJob",
61550        "parameters": [
61551          {
61552            "in": "body",
61553            "name": "body",
61554            "schema": {
61555              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
61556            }
61557          },
61558          {
61559            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61560            "in": "query",
61561            "name": "dryRun",
61562            "type": "string",
61563            "uniqueItems": true
61564          },
61565          {
61566            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
61567            "in": "query",
61568            "name": "gracePeriodSeconds",
61569            "type": "integer",
61570            "uniqueItems": true
61571          },
61572          {
61573            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
61574            "in": "query",
61575            "name": "orphanDependents",
61576            "type": "boolean",
61577            "uniqueItems": true
61578          },
61579          {
61580            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
61581            "in": "query",
61582            "name": "propagationPolicy",
61583            "type": "string",
61584            "uniqueItems": true
61585          }
61586        ],
61587        "produces": [
61588          "application/json",
61589          "application/yaml",
61590          "application/vnd.kubernetes.protobuf"
61591        ],
61592        "responses": {
61593          "200": {
61594            "description": "OK",
61595            "schema": {
61596              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61597            }
61598          },
61599          "202": {
61600            "description": "Accepted",
61601            "schema": {
61602              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61603            }
61604          },
61605          "401": {
61606            "description": "Unauthorized"
61607          }
61608        },
61609        "schemes": [
61610          "https"
61611        ],
61612        "tags": [
61613          "batch_v2alpha1"
61614        ],
61615        "x-kubernetes-action": "delete",
61616        "x-kubernetes-group-version-kind": {
61617          "group": "batch",
61618          "kind": "CronJob",
61619          "version": "v2alpha1"
61620        }
61621      },
61622      "get": {
61623        "consumes": [
61624          "*/*"
61625        ],
61626        "description": "read the specified CronJob",
61627        "operationId": "readBatchV2alpha1NamespacedCronJob",
61628        "produces": [
61629          "application/json",
61630          "application/yaml",
61631          "application/vnd.kubernetes.protobuf"
61632        ],
61633        "responses": {
61634          "200": {
61635            "description": "OK",
61636            "schema": {
61637              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61638            }
61639          },
61640          "401": {
61641            "description": "Unauthorized"
61642          }
61643        },
61644        "schemes": [
61645          "https"
61646        ],
61647        "tags": [
61648          "batch_v2alpha1"
61649        ],
61650        "x-kubernetes-action": "get",
61651        "x-kubernetes-group-version-kind": {
61652          "group": "batch",
61653          "kind": "CronJob",
61654          "version": "v2alpha1"
61655        }
61656      },
61657      "parameters": [
61658        {
61659          "description": "name of the CronJob",
61660          "in": "path",
61661          "name": "name",
61662          "required": true,
61663          "type": "string",
61664          "uniqueItems": true
61665        },
61666        {
61667          "description": "object name and auth scope, such as for teams and projects",
61668          "in": "path",
61669          "name": "namespace",
61670          "required": true,
61671          "type": "string",
61672          "uniqueItems": true
61673        },
61674        {
61675          "description": "If 'true', then the output is pretty printed.",
61676          "in": "query",
61677          "name": "pretty",
61678          "type": "string",
61679          "uniqueItems": true
61680        }
61681      ],
61682      "patch": {
61683        "consumes": [
61684          "application/json-patch+json",
61685          "application/merge-patch+json",
61686          "application/strategic-merge-patch+json",
61687          "application/apply-patch+yaml"
61688        ],
61689        "description": "partially update the specified CronJob",
61690        "operationId": "patchBatchV2alpha1NamespacedCronJob",
61691        "parameters": [
61692          {
61693            "in": "body",
61694            "name": "body",
61695            "required": true,
61696            "schema": {
61697              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
61698            }
61699          },
61700          {
61701            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61702            "in": "query",
61703            "name": "dryRun",
61704            "type": "string",
61705            "uniqueItems": true
61706          },
61707          {
61708            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
61709            "in": "query",
61710            "name": "fieldManager",
61711            "type": "string",
61712            "uniqueItems": true
61713          },
61714          {
61715            "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.",
61716            "in": "query",
61717            "name": "force",
61718            "type": "boolean",
61719            "uniqueItems": true
61720          }
61721        ],
61722        "produces": [
61723          "application/json",
61724          "application/yaml",
61725          "application/vnd.kubernetes.protobuf"
61726        ],
61727        "responses": {
61728          "200": {
61729            "description": "OK",
61730            "schema": {
61731              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61732            }
61733          },
61734          "401": {
61735            "description": "Unauthorized"
61736          }
61737        },
61738        "schemes": [
61739          "https"
61740        ],
61741        "tags": [
61742          "batch_v2alpha1"
61743        ],
61744        "x-kubernetes-action": "patch",
61745        "x-kubernetes-group-version-kind": {
61746          "group": "batch",
61747          "kind": "CronJob",
61748          "version": "v2alpha1"
61749        }
61750      },
61751      "put": {
61752        "consumes": [
61753          "*/*"
61754        ],
61755        "description": "replace the specified CronJob",
61756        "operationId": "replaceBatchV2alpha1NamespacedCronJob",
61757        "parameters": [
61758          {
61759            "in": "body",
61760            "name": "body",
61761            "required": true,
61762            "schema": {
61763              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61764            }
61765          },
61766          {
61767            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61768            "in": "query",
61769            "name": "dryRun",
61770            "type": "string",
61771            "uniqueItems": true
61772          },
61773          {
61774            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61775            "in": "query",
61776            "name": "fieldManager",
61777            "type": "string",
61778            "uniqueItems": true
61779          }
61780        ],
61781        "produces": [
61782          "application/json",
61783          "application/yaml",
61784          "application/vnd.kubernetes.protobuf"
61785        ],
61786        "responses": {
61787          "200": {
61788            "description": "OK",
61789            "schema": {
61790              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61791            }
61792          },
61793          "201": {
61794            "description": "Created",
61795            "schema": {
61796              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61797            }
61798          },
61799          "401": {
61800            "description": "Unauthorized"
61801          }
61802        },
61803        "schemes": [
61804          "https"
61805        ],
61806        "tags": [
61807          "batch_v2alpha1"
61808        ],
61809        "x-kubernetes-action": "put",
61810        "x-kubernetes-group-version-kind": {
61811          "group": "batch",
61812          "kind": "CronJob",
61813          "version": "v2alpha1"
61814        }
61815      }
61816    },
61817    "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status": {
61818      "get": {
61819        "consumes": [
61820          "*/*"
61821        ],
61822        "description": "read status of the specified CronJob",
61823        "operationId": "readBatchV2alpha1NamespacedCronJobStatus",
61824        "produces": [
61825          "application/json",
61826          "application/yaml",
61827          "application/vnd.kubernetes.protobuf"
61828        ],
61829        "responses": {
61830          "200": {
61831            "description": "OK",
61832            "schema": {
61833              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61834            }
61835          },
61836          "401": {
61837            "description": "Unauthorized"
61838          }
61839        },
61840        "schemes": [
61841          "https"
61842        ],
61843        "tags": [
61844          "batch_v2alpha1"
61845        ],
61846        "x-kubernetes-action": "get",
61847        "x-kubernetes-group-version-kind": {
61848          "group": "batch",
61849          "kind": "CronJob",
61850          "version": "v2alpha1"
61851        }
61852      },
61853      "parameters": [
61854        {
61855          "description": "name of the CronJob",
61856          "in": "path",
61857          "name": "name",
61858          "required": true,
61859          "type": "string",
61860          "uniqueItems": true
61861        },
61862        {
61863          "description": "object name and auth scope, such as for teams and projects",
61864          "in": "path",
61865          "name": "namespace",
61866          "required": true,
61867          "type": "string",
61868          "uniqueItems": true
61869        },
61870        {
61871          "description": "If 'true', then the output is pretty printed.",
61872          "in": "query",
61873          "name": "pretty",
61874          "type": "string",
61875          "uniqueItems": true
61876        }
61877      ],
61878      "patch": {
61879        "consumes": [
61880          "application/json-patch+json",
61881          "application/merge-patch+json",
61882          "application/strategic-merge-patch+json",
61883          "application/apply-patch+yaml"
61884        ],
61885        "description": "partially update status of the specified CronJob",
61886        "operationId": "patchBatchV2alpha1NamespacedCronJobStatus",
61887        "parameters": [
61888          {
61889            "in": "body",
61890            "name": "body",
61891            "required": true,
61892            "schema": {
61893              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
61894            }
61895          },
61896          {
61897            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61898            "in": "query",
61899            "name": "dryRun",
61900            "type": "string",
61901            "uniqueItems": true
61902          },
61903          {
61904            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
61905            "in": "query",
61906            "name": "fieldManager",
61907            "type": "string",
61908            "uniqueItems": true
61909          },
61910          {
61911            "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.",
61912            "in": "query",
61913            "name": "force",
61914            "type": "boolean",
61915            "uniqueItems": true
61916          }
61917        ],
61918        "produces": [
61919          "application/json",
61920          "application/yaml",
61921          "application/vnd.kubernetes.protobuf"
61922        ],
61923        "responses": {
61924          "200": {
61925            "description": "OK",
61926            "schema": {
61927              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61928            }
61929          },
61930          "401": {
61931            "description": "Unauthorized"
61932          }
61933        },
61934        "schemes": [
61935          "https"
61936        ],
61937        "tags": [
61938          "batch_v2alpha1"
61939        ],
61940        "x-kubernetes-action": "patch",
61941        "x-kubernetes-group-version-kind": {
61942          "group": "batch",
61943          "kind": "CronJob",
61944          "version": "v2alpha1"
61945        }
61946      },
61947      "put": {
61948        "consumes": [
61949          "*/*"
61950        ],
61951        "description": "replace status of the specified CronJob",
61952        "operationId": "replaceBatchV2alpha1NamespacedCronJobStatus",
61953        "parameters": [
61954          {
61955            "in": "body",
61956            "name": "body",
61957            "required": true,
61958            "schema": {
61959              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61960            }
61961          },
61962          {
61963            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61964            "in": "query",
61965            "name": "dryRun",
61966            "type": "string",
61967            "uniqueItems": true
61968          },
61969          {
61970            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61971            "in": "query",
61972            "name": "fieldManager",
61973            "type": "string",
61974            "uniqueItems": true
61975          }
61976        ],
61977        "produces": [
61978          "application/json",
61979          "application/yaml",
61980          "application/vnd.kubernetes.protobuf"
61981        ],
61982        "responses": {
61983          "200": {
61984            "description": "OK",
61985            "schema": {
61986              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61987            }
61988          },
61989          "201": {
61990            "description": "Created",
61991            "schema": {
61992              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
61993            }
61994          },
61995          "401": {
61996            "description": "Unauthorized"
61997          }
61998        },
61999        "schemes": [
62000          "https"
62001        ],
62002        "tags": [
62003          "batch_v2alpha1"
62004        ],
62005        "x-kubernetes-action": "put",
62006        "x-kubernetes-group-version-kind": {
62007          "group": "batch",
62008          "kind": "CronJob",
62009          "version": "v2alpha1"
62010        }
62011      }
62012    },
62013    "/apis/batch/v2alpha1/watch/cronjobs": {
62014      "get": {
62015        "consumes": [
62016          "*/*"
62017        ],
62018        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
62019        "operationId": "watchBatchV2alpha1CronJobListForAllNamespaces",
62020        "produces": [
62021          "application/json",
62022          "application/yaml",
62023          "application/vnd.kubernetes.protobuf",
62024          "application/json;stream=watch",
62025          "application/vnd.kubernetes.protobuf;stream=watch"
62026        ],
62027        "responses": {
62028          "200": {
62029            "description": "OK",
62030            "schema": {
62031              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62032            }
62033          },
62034          "401": {
62035            "description": "Unauthorized"
62036          }
62037        },
62038        "schemes": [
62039          "https"
62040        ],
62041        "tags": [
62042          "batch_v2alpha1"
62043        ],
62044        "x-kubernetes-action": "watchlist",
62045        "x-kubernetes-group-version-kind": {
62046          "group": "batch",
62047          "kind": "CronJob",
62048          "version": "v2alpha1"
62049        }
62050      },
62051      "parameters": [
62052        {
62053          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62054          "in": "query",
62055          "name": "allowWatchBookmarks",
62056          "type": "boolean",
62057          "uniqueItems": true
62058        },
62059        {
62060          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62061          "in": "query",
62062          "name": "continue",
62063          "type": "string",
62064          "uniqueItems": true
62065        },
62066        {
62067          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62068          "in": "query",
62069          "name": "fieldSelector",
62070          "type": "string",
62071          "uniqueItems": true
62072        },
62073        {
62074          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62075          "in": "query",
62076          "name": "labelSelector",
62077          "type": "string",
62078          "uniqueItems": true
62079        },
62080        {
62081          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62082          "in": "query",
62083          "name": "limit",
62084          "type": "integer",
62085          "uniqueItems": true
62086        },
62087        {
62088          "description": "If 'true', then the output is pretty printed.",
62089          "in": "query",
62090          "name": "pretty",
62091          "type": "string",
62092          "uniqueItems": true
62093        },
62094        {
62095          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62096          "in": "query",
62097          "name": "resourceVersion",
62098          "type": "string",
62099          "uniqueItems": true
62100        },
62101        {
62102          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62103          "in": "query",
62104          "name": "resourceVersionMatch",
62105          "type": "string",
62106          "uniqueItems": true
62107        },
62108        {
62109          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62110          "in": "query",
62111          "name": "timeoutSeconds",
62112          "type": "integer",
62113          "uniqueItems": true
62114        },
62115        {
62116          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62117          "in": "query",
62118          "name": "watch",
62119          "type": "boolean",
62120          "uniqueItems": true
62121        }
62122      ]
62123    },
62124    "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs": {
62125      "get": {
62126        "consumes": [
62127          "*/*"
62128        ],
62129        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
62130        "operationId": "watchBatchV2alpha1NamespacedCronJobList",
62131        "produces": [
62132          "application/json",
62133          "application/yaml",
62134          "application/vnd.kubernetes.protobuf",
62135          "application/json;stream=watch",
62136          "application/vnd.kubernetes.protobuf;stream=watch"
62137        ],
62138        "responses": {
62139          "200": {
62140            "description": "OK",
62141            "schema": {
62142              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62143            }
62144          },
62145          "401": {
62146            "description": "Unauthorized"
62147          }
62148        },
62149        "schemes": [
62150          "https"
62151        ],
62152        "tags": [
62153          "batch_v2alpha1"
62154        ],
62155        "x-kubernetes-action": "watchlist",
62156        "x-kubernetes-group-version-kind": {
62157          "group": "batch",
62158          "kind": "CronJob",
62159          "version": "v2alpha1"
62160        }
62161      },
62162      "parameters": [
62163        {
62164          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62165          "in": "query",
62166          "name": "allowWatchBookmarks",
62167          "type": "boolean",
62168          "uniqueItems": true
62169        },
62170        {
62171          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62172          "in": "query",
62173          "name": "continue",
62174          "type": "string",
62175          "uniqueItems": true
62176        },
62177        {
62178          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62179          "in": "query",
62180          "name": "fieldSelector",
62181          "type": "string",
62182          "uniqueItems": true
62183        },
62184        {
62185          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62186          "in": "query",
62187          "name": "labelSelector",
62188          "type": "string",
62189          "uniqueItems": true
62190        },
62191        {
62192          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62193          "in": "query",
62194          "name": "limit",
62195          "type": "integer",
62196          "uniqueItems": true
62197        },
62198        {
62199          "description": "object name and auth scope, such as for teams and projects",
62200          "in": "path",
62201          "name": "namespace",
62202          "required": true,
62203          "type": "string",
62204          "uniqueItems": true
62205        },
62206        {
62207          "description": "If 'true', then the output is pretty printed.",
62208          "in": "query",
62209          "name": "pretty",
62210          "type": "string",
62211          "uniqueItems": true
62212        },
62213        {
62214          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62215          "in": "query",
62216          "name": "resourceVersion",
62217          "type": "string",
62218          "uniqueItems": true
62219        },
62220        {
62221          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62222          "in": "query",
62223          "name": "resourceVersionMatch",
62224          "type": "string",
62225          "uniqueItems": true
62226        },
62227        {
62228          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62229          "in": "query",
62230          "name": "timeoutSeconds",
62231          "type": "integer",
62232          "uniqueItems": true
62233        },
62234        {
62235          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62236          "in": "query",
62237          "name": "watch",
62238          "type": "boolean",
62239          "uniqueItems": true
62240        }
62241      ]
62242    },
62243    "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs/{name}": {
62244      "get": {
62245        "consumes": [
62246          "*/*"
62247        ],
62248        "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.",
62249        "operationId": "watchBatchV2alpha1NamespacedCronJob",
62250        "produces": [
62251          "application/json",
62252          "application/yaml",
62253          "application/vnd.kubernetes.protobuf",
62254          "application/json;stream=watch",
62255          "application/vnd.kubernetes.protobuf;stream=watch"
62256        ],
62257        "responses": {
62258          "200": {
62259            "description": "OK",
62260            "schema": {
62261              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62262            }
62263          },
62264          "401": {
62265            "description": "Unauthorized"
62266          }
62267        },
62268        "schemes": [
62269          "https"
62270        ],
62271        "tags": [
62272          "batch_v2alpha1"
62273        ],
62274        "x-kubernetes-action": "watch",
62275        "x-kubernetes-group-version-kind": {
62276          "group": "batch",
62277          "kind": "CronJob",
62278          "version": "v2alpha1"
62279        }
62280      },
62281      "parameters": [
62282        {
62283          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62284          "in": "query",
62285          "name": "allowWatchBookmarks",
62286          "type": "boolean",
62287          "uniqueItems": true
62288        },
62289        {
62290          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62291          "in": "query",
62292          "name": "continue",
62293          "type": "string",
62294          "uniqueItems": true
62295        },
62296        {
62297          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62298          "in": "query",
62299          "name": "fieldSelector",
62300          "type": "string",
62301          "uniqueItems": true
62302        },
62303        {
62304          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62305          "in": "query",
62306          "name": "labelSelector",
62307          "type": "string",
62308          "uniqueItems": true
62309        },
62310        {
62311          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62312          "in": "query",
62313          "name": "limit",
62314          "type": "integer",
62315          "uniqueItems": true
62316        },
62317        {
62318          "description": "name of the CronJob",
62319          "in": "path",
62320          "name": "name",
62321          "required": true,
62322          "type": "string",
62323          "uniqueItems": true
62324        },
62325        {
62326          "description": "object name and auth scope, such as for teams and projects",
62327          "in": "path",
62328          "name": "namespace",
62329          "required": true,
62330          "type": "string",
62331          "uniqueItems": true
62332        },
62333        {
62334          "description": "If 'true', then the output is pretty printed.",
62335          "in": "query",
62336          "name": "pretty",
62337          "type": "string",
62338          "uniqueItems": true
62339        },
62340        {
62341          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62342          "in": "query",
62343          "name": "resourceVersion",
62344          "type": "string",
62345          "uniqueItems": true
62346        },
62347        {
62348          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62349          "in": "query",
62350          "name": "resourceVersionMatch",
62351          "type": "string",
62352          "uniqueItems": true
62353        },
62354        {
62355          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62356          "in": "query",
62357          "name": "timeoutSeconds",
62358          "type": "integer",
62359          "uniqueItems": true
62360        },
62361        {
62362          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62363          "in": "query",
62364          "name": "watch",
62365          "type": "boolean",
62366          "uniqueItems": true
62367        }
62368      ]
62369    },
62370    "/apis/certificates.k8s.io/": {
62371      "get": {
62372        "consumes": [
62373          "application/json",
62374          "application/yaml",
62375          "application/vnd.kubernetes.protobuf"
62376        ],
62377        "description": "get information of a group",
62378        "operationId": "getCertificatesAPIGroup",
62379        "produces": [
62380          "application/json",
62381          "application/yaml",
62382          "application/vnd.kubernetes.protobuf"
62383        ],
62384        "responses": {
62385          "200": {
62386            "description": "OK",
62387            "schema": {
62388              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
62389            }
62390          },
62391          "401": {
62392            "description": "Unauthorized"
62393          }
62394        },
62395        "schemes": [
62396          "https"
62397        ],
62398        "tags": [
62399          "certificates"
62400        ]
62401      }
62402    },
62403    "/apis/certificates.k8s.io/v1/": {
62404      "get": {
62405        "consumes": [
62406          "application/json",
62407          "application/yaml",
62408          "application/vnd.kubernetes.protobuf"
62409        ],
62410        "description": "get available resources",
62411        "operationId": "getCertificatesV1APIResources",
62412        "produces": [
62413          "application/json",
62414          "application/yaml",
62415          "application/vnd.kubernetes.protobuf"
62416        ],
62417        "responses": {
62418          "200": {
62419            "description": "OK",
62420            "schema": {
62421              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
62422            }
62423          },
62424          "401": {
62425            "description": "Unauthorized"
62426          }
62427        },
62428        "schemes": [
62429          "https"
62430        ],
62431        "tags": [
62432          "certificates_v1"
62433        ]
62434      }
62435    },
62436    "/apis/certificates.k8s.io/v1/certificatesigningrequests": {
62437      "delete": {
62438        "consumes": [
62439          "*/*"
62440        ],
62441        "description": "delete collection of CertificateSigningRequest",
62442        "operationId": "deleteCertificatesV1CollectionCertificateSigningRequest",
62443        "parameters": [
62444          {
62445            "in": "body",
62446            "name": "body",
62447            "schema": {
62448              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62449            }
62450          },
62451          {
62452            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62453            "in": "query",
62454            "name": "continue",
62455            "type": "string",
62456            "uniqueItems": true
62457          },
62458          {
62459            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62460            "in": "query",
62461            "name": "dryRun",
62462            "type": "string",
62463            "uniqueItems": true
62464          },
62465          {
62466            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62467            "in": "query",
62468            "name": "fieldSelector",
62469            "type": "string",
62470            "uniqueItems": true
62471          },
62472          {
62473            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
62474            "in": "query",
62475            "name": "gracePeriodSeconds",
62476            "type": "integer",
62477            "uniqueItems": true
62478          },
62479          {
62480            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62481            "in": "query",
62482            "name": "labelSelector",
62483            "type": "string",
62484            "uniqueItems": true
62485          },
62486          {
62487            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62488            "in": "query",
62489            "name": "limit",
62490            "type": "integer",
62491            "uniqueItems": true
62492          },
62493          {
62494            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
62495            "in": "query",
62496            "name": "orphanDependents",
62497            "type": "boolean",
62498            "uniqueItems": true
62499          },
62500          {
62501            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
62502            "in": "query",
62503            "name": "propagationPolicy",
62504            "type": "string",
62505            "uniqueItems": true
62506          },
62507          {
62508            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62509            "in": "query",
62510            "name": "resourceVersion",
62511            "type": "string",
62512            "uniqueItems": true
62513          },
62514          {
62515            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62516            "in": "query",
62517            "name": "resourceVersionMatch",
62518            "type": "string",
62519            "uniqueItems": true
62520          },
62521          {
62522            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62523            "in": "query",
62524            "name": "timeoutSeconds",
62525            "type": "integer",
62526            "uniqueItems": true
62527          }
62528        ],
62529        "produces": [
62530          "application/json",
62531          "application/yaml",
62532          "application/vnd.kubernetes.protobuf"
62533        ],
62534        "responses": {
62535          "200": {
62536            "description": "OK",
62537            "schema": {
62538              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62539            }
62540          },
62541          "401": {
62542            "description": "Unauthorized"
62543          }
62544        },
62545        "schemes": [
62546          "https"
62547        ],
62548        "tags": [
62549          "certificates_v1"
62550        ],
62551        "x-kubernetes-action": "deletecollection",
62552        "x-kubernetes-group-version-kind": {
62553          "group": "certificates.k8s.io",
62554          "kind": "CertificateSigningRequest",
62555          "version": "v1"
62556        }
62557      },
62558      "get": {
62559        "consumes": [
62560          "*/*"
62561        ],
62562        "description": "list or watch objects of kind CertificateSigningRequest",
62563        "operationId": "listCertificatesV1CertificateSigningRequest",
62564        "parameters": [
62565          {
62566            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62567            "in": "query",
62568            "name": "allowWatchBookmarks",
62569            "type": "boolean",
62570            "uniqueItems": true
62571          },
62572          {
62573            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62574            "in": "query",
62575            "name": "continue",
62576            "type": "string",
62577            "uniqueItems": true
62578          },
62579          {
62580            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62581            "in": "query",
62582            "name": "fieldSelector",
62583            "type": "string",
62584            "uniqueItems": true
62585          },
62586          {
62587            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62588            "in": "query",
62589            "name": "labelSelector",
62590            "type": "string",
62591            "uniqueItems": true
62592          },
62593          {
62594            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62595            "in": "query",
62596            "name": "limit",
62597            "type": "integer",
62598            "uniqueItems": true
62599          },
62600          {
62601            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62602            "in": "query",
62603            "name": "resourceVersion",
62604            "type": "string",
62605            "uniqueItems": true
62606          },
62607          {
62608            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62609            "in": "query",
62610            "name": "resourceVersionMatch",
62611            "type": "string",
62612            "uniqueItems": true
62613          },
62614          {
62615            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62616            "in": "query",
62617            "name": "timeoutSeconds",
62618            "type": "integer",
62619            "uniqueItems": true
62620          },
62621          {
62622            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62623            "in": "query",
62624            "name": "watch",
62625            "type": "boolean",
62626            "uniqueItems": true
62627          }
62628        ],
62629        "produces": [
62630          "application/json",
62631          "application/yaml",
62632          "application/vnd.kubernetes.protobuf",
62633          "application/json;stream=watch",
62634          "application/vnd.kubernetes.protobuf;stream=watch"
62635        ],
62636        "responses": {
62637          "200": {
62638            "description": "OK",
62639            "schema": {
62640              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestList"
62641            }
62642          },
62643          "401": {
62644            "description": "Unauthorized"
62645          }
62646        },
62647        "schemes": [
62648          "https"
62649        ],
62650        "tags": [
62651          "certificates_v1"
62652        ],
62653        "x-kubernetes-action": "list",
62654        "x-kubernetes-group-version-kind": {
62655          "group": "certificates.k8s.io",
62656          "kind": "CertificateSigningRequest",
62657          "version": "v1"
62658        }
62659      },
62660      "parameters": [
62661        {
62662          "description": "If 'true', then the output is pretty printed.",
62663          "in": "query",
62664          "name": "pretty",
62665          "type": "string",
62666          "uniqueItems": true
62667        }
62668      ],
62669      "post": {
62670        "consumes": [
62671          "*/*"
62672        ],
62673        "description": "create a CertificateSigningRequest",
62674        "operationId": "createCertificatesV1CertificateSigningRequest",
62675        "parameters": [
62676          {
62677            "in": "body",
62678            "name": "body",
62679            "required": true,
62680            "schema": {
62681              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62682            }
62683          },
62684          {
62685            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62686            "in": "query",
62687            "name": "dryRun",
62688            "type": "string",
62689            "uniqueItems": true
62690          },
62691          {
62692            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62693            "in": "query",
62694            "name": "fieldManager",
62695            "type": "string",
62696            "uniqueItems": true
62697          }
62698        ],
62699        "produces": [
62700          "application/json",
62701          "application/yaml",
62702          "application/vnd.kubernetes.protobuf"
62703        ],
62704        "responses": {
62705          "200": {
62706            "description": "OK",
62707            "schema": {
62708              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62709            }
62710          },
62711          "201": {
62712            "description": "Created",
62713            "schema": {
62714              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62715            }
62716          },
62717          "202": {
62718            "description": "Accepted",
62719            "schema": {
62720              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62721            }
62722          },
62723          "401": {
62724            "description": "Unauthorized"
62725          }
62726        },
62727        "schemes": [
62728          "https"
62729        ],
62730        "tags": [
62731          "certificates_v1"
62732        ],
62733        "x-kubernetes-action": "post",
62734        "x-kubernetes-group-version-kind": {
62735          "group": "certificates.k8s.io",
62736          "kind": "CertificateSigningRequest",
62737          "version": "v1"
62738        }
62739      }
62740    },
62741    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}": {
62742      "delete": {
62743        "consumes": [
62744          "*/*"
62745        ],
62746        "description": "delete a CertificateSigningRequest",
62747        "operationId": "deleteCertificatesV1CertificateSigningRequest",
62748        "parameters": [
62749          {
62750            "in": "body",
62751            "name": "body",
62752            "schema": {
62753              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62754            }
62755          },
62756          {
62757            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62758            "in": "query",
62759            "name": "dryRun",
62760            "type": "string",
62761            "uniqueItems": true
62762          },
62763          {
62764            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
62765            "in": "query",
62766            "name": "gracePeriodSeconds",
62767            "type": "integer",
62768            "uniqueItems": true
62769          },
62770          {
62771            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
62772            "in": "query",
62773            "name": "orphanDependents",
62774            "type": "boolean",
62775            "uniqueItems": true
62776          },
62777          {
62778            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
62779            "in": "query",
62780            "name": "propagationPolicy",
62781            "type": "string",
62782            "uniqueItems": true
62783          }
62784        ],
62785        "produces": [
62786          "application/json",
62787          "application/yaml",
62788          "application/vnd.kubernetes.protobuf"
62789        ],
62790        "responses": {
62791          "200": {
62792            "description": "OK",
62793            "schema": {
62794              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62795            }
62796          },
62797          "202": {
62798            "description": "Accepted",
62799            "schema": {
62800              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62801            }
62802          },
62803          "401": {
62804            "description": "Unauthorized"
62805          }
62806        },
62807        "schemes": [
62808          "https"
62809        ],
62810        "tags": [
62811          "certificates_v1"
62812        ],
62813        "x-kubernetes-action": "delete",
62814        "x-kubernetes-group-version-kind": {
62815          "group": "certificates.k8s.io",
62816          "kind": "CertificateSigningRequest",
62817          "version": "v1"
62818        }
62819      },
62820      "get": {
62821        "consumes": [
62822          "*/*"
62823        ],
62824        "description": "read the specified CertificateSigningRequest",
62825        "operationId": "readCertificatesV1CertificateSigningRequest",
62826        "produces": [
62827          "application/json",
62828          "application/yaml",
62829          "application/vnd.kubernetes.protobuf"
62830        ],
62831        "responses": {
62832          "200": {
62833            "description": "OK",
62834            "schema": {
62835              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62836            }
62837          },
62838          "401": {
62839            "description": "Unauthorized"
62840          }
62841        },
62842        "schemes": [
62843          "https"
62844        ],
62845        "tags": [
62846          "certificates_v1"
62847        ],
62848        "x-kubernetes-action": "get",
62849        "x-kubernetes-group-version-kind": {
62850          "group": "certificates.k8s.io",
62851          "kind": "CertificateSigningRequest",
62852          "version": "v1"
62853        }
62854      },
62855      "parameters": [
62856        {
62857          "description": "name of the CertificateSigningRequest",
62858          "in": "path",
62859          "name": "name",
62860          "required": true,
62861          "type": "string",
62862          "uniqueItems": true
62863        },
62864        {
62865          "description": "If 'true', then the output is pretty printed.",
62866          "in": "query",
62867          "name": "pretty",
62868          "type": "string",
62869          "uniqueItems": true
62870        }
62871      ],
62872      "patch": {
62873        "consumes": [
62874          "application/json-patch+json",
62875          "application/merge-patch+json",
62876          "application/strategic-merge-patch+json",
62877          "application/apply-patch+yaml"
62878        ],
62879        "description": "partially update the specified CertificateSigningRequest",
62880        "operationId": "patchCertificatesV1CertificateSigningRequest",
62881        "parameters": [
62882          {
62883            "in": "body",
62884            "name": "body",
62885            "required": true,
62886            "schema": {
62887              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
62888            }
62889          },
62890          {
62891            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62892            "in": "query",
62893            "name": "dryRun",
62894            "type": "string",
62895            "uniqueItems": true
62896          },
62897          {
62898            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
62899            "in": "query",
62900            "name": "fieldManager",
62901            "type": "string",
62902            "uniqueItems": true
62903          },
62904          {
62905            "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.",
62906            "in": "query",
62907            "name": "force",
62908            "type": "boolean",
62909            "uniqueItems": true
62910          }
62911        ],
62912        "produces": [
62913          "application/json",
62914          "application/yaml",
62915          "application/vnd.kubernetes.protobuf"
62916        ],
62917        "responses": {
62918          "200": {
62919            "description": "OK",
62920            "schema": {
62921              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62922            }
62923          },
62924          "401": {
62925            "description": "Unauthorized"
62926          }
62927        },
62928        "schemes": [
62929          "https"
62930        ],
62931        "tags": [
62932          "certificates_v1"
62933        ],
62934        "x-kubernetes-action": "patch",
62935        "x-kubernetes-group-version-kind": {
62936          "group": "certificates.k8s.io",
62937          "kind": "CertificateSigningRequest",
62938          "version": "v1"
62939        }
62940      },
62941      "put": {
62942        "consumes": [
62943          "*/*"
62944        ],
62945        "description": "replace the specified CertificateSigningRequest",
62946        "operationId": "replaceCertificatesV1CertificateSigningRequest",
62947        "parameters": [
62948          {
62949            "in": "body",
62950            "name": "body",
62951            "required": true,
62952            "schema": {
62953              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62954            }
62955          },
62956          {
62957            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62958            "in": "query",
62959            "name": "dryRun",
62960            "type": "string",
62961            "uniqueItems": true
62962          },
62963          {
62964            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62965            "in": "query",
62966            "name": "fieldManager",
62967            "type": "string",
62968            "uniqueItems": true
62969          }
62970        ],
62971        "produces": [
62972          "application/json",
62973          "application/yaml",
62974          "application/vnd.kubernetes.protobuf"
62975        ],
62976        "responses": {
62977          "200": {
62978            "description": "OK",
62979            "schema": {
62980              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62981            }
62982          },
62983          "201": {
62984            "description": "Created",
62985            "schema": {
62986              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62987            }
62988          },
62989          "401": {
62990            "description": "Unauthorized"
62991          }
62992        },
62993        "schemes": [
62994          "https"
62995        ],
62996        "tags": [
62997          "certificates_v1"
62998        ],
62999        "x-kubernetes-action": "put",
63000        "x-kubernetes-group-version-kind": {
63001          "group": "certificates.k8s.io",
63002          "kind": "CertificateSigningRequest",
63003          "version": "v1"
63004        }
63005      }
63006    },
63007    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/approval": {
63008      "get": {
63009        "consumes": [
63010          "*/*"
63011        ],
63012        "description": "read approval of the specified CertificateSigningRequest",
63013        "operationId": "readCertificatesV1CertificateSigningRequestApproval",
63014        "produces": [
63015          "application/json",
63016          "application/yaml",
63017          "application/vnd.kubernetes.protobuf"
63018        ],
63019        "responses": {
63020          "200": {
63021            "description": "OK",
63022            "schema": {
63023              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63024            }
63025          },
63026          "401": {
63027            "description": "Unauthorized"
63028          }
63029        },
63030        "schemes": [
63031          "https"
63032        ],
63033        "tags": [
63034          "certificates_v1"
63035        ],
63036        "x-kubernetes-action": "get",
63037        "x-kubernetes-group-version-kind": {
63038          "group": "certificates.k8s.io",
63039          "kind": "CertificateSigningRequest",
63040          "version": "v1"
63041        }
63042      },
63043      "parameters": [
63044        {
63045          "description": "name of the CertificateSigningRequest",
63046          "in": "path",
63047          "name": "name",
63048          "required": true,
63049          "type": "string",
63050          "uniqueItems": true
63051        },
63052        {
63053          "description": "If 'true', then the output is pretty printed.",
63054          "in": "query",
63055          "name": "pretty",
63056          "type": "string",
63057          "uniqueItems": true
63058        }
63059      ],
63060      "patch": {
63061        "consumes": [
63062          "application/json-patch+json",
63063          "application/merge-patch+json",
63064          "application/strategic-merge-patch+json",
63065          "application/apply-patch+yaml"
63066        ],
63067        "description": "partially update approval of the specified CertificateSigningRequest",
63068        "operationId": "patchCertificatesV1CertificateSigningRequestApproval",
63069        "parameters": [
63070          {
63071            "in": "body",
63072            "name": "body",
63073            "required": true,
63074            "schema": {
63075              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
63076            }
63077          },
63078          {
63079            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63080            "in": "query",
63081            "name": "dryRun",
63082            "type": "string",
63083            "uniqueItems": true
63084          },
63085          {
63086            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
63087            "in": "query",
63088            "name": "fieldManager",
63089            "type": "string",
63090            "uniqueItems": true
63091          },
63092          {
63093            "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.",
63094            "in": "query",
63095            "name": "force",
63096            "type": "boolean",
63097            "uniqueItems": true
63098          }
63099        ],
63100        "produces": [
63101          "application/json",
63102          "application/yaml",
63103          "application/vnd.kubernetes.protobuf"
63104        ],
63105        "responses": {
63106          "200": {
63107            "description": "OK",
63108            "schema": {
63109              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63110            }
63111          },
63112          "401": {
63113            "description": "Unauthorized"
63114          }
63115        },
63116        "schemes": [
63117          "https"
63118        ],
63119        "tags": [
63120          "certificates_v1"
63121        ],
63122        "x-kubernetes-action": "patch",
63123        "x-kubernetes-group-version-kind": {
63124          "group": "certificates.k8s.io",
63125          "kind": "CertificateSigningRequest",
63126          "version": "v1"
63127        }
63128      },
63129      "put": {
63130        "consumes": [
63131          "*/*"
63132        ],
63133        "description": "replace approval of the specified CertificateSigningRequest",
63134        "operationId": "replaceCertificatesV1CertificateSigningRequestApproval",
63135        "parameters": [
63136          {
63137            "in": "body",
63138            "name": "body",
63139            "required": true,
63140            "schema": {
63141              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63142            }
63143          },
63144          {
63145            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63146            "in": "query",
63147            "name": "dryRun",
63148            "type": "string",
63149            "uniqueItems": true
63150          },
63151          {
63152            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63153            "in": "query",
63154            "name": "fieldManager",
63155            "type": "string",
63156            "uniqueItems": true
63157          }
63158        ],
63159        "produces": [
63160          "application/json",
63161          "application/yaml",
63162          "application/vnd.kubernetes.protobuf"
63163        ],
63164        "responses": {
63165          "200": {
63166            "description": "OK",
63167            "schema": {
63168              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63169            }
63170          },
63171          "201": {
63172            "description": "Created",
63173            "schema": {
63174              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63175            }
63176          },
63177          "401": {
63178            "description": "Unauthorized"
63179          }
63180        },
63181        "schemes": [
63182          "https"
63183        ],
63184        "tags": [
63185          "certificates_v1"
63186        ],
63187        "x-kubernetes-action": "put",
63188        "x-kubernetes-group-version-kind": {
63189          "group": "certificates.k8s.io",
63190          "kind": "CertificateSigningRequest",
63191          "version": "v1"
63192        }
63193      }
63194    },
63195    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/status": {
63196      "get": {
63197        "consumes": [
63198          "*/*"
63199        ],
63200        "description": "read status of the specified CertificateSigningRequest",
63201        "operationId": "readCertificatesV1CertificateSigningRequestStatus",
63202        "produces": [
63203          "application/json",
63204          "application/yaml",
63205          "application/vnd.kubernetes.protobuf"
63206        ],
63207        "responses": {
63208          "200": {
63209            "description": "OK",
63210            "schema": {
63211              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63212            }
63213          },
63214          "401": {
63215            "description": "Unauthorized"
63216          }
63217        },
63218        "schemes": [
63219          "https"
63220        ],
63221        "tags": [
63222          "certificates_v1"
63223        ],
63224        "x-kubernetes-action": "get",
63225        "x-kubernetes-group-version-kind": {
63226          "group": "certificates.k8s.io",
63227          "kind": "CertificateSigningRequest",
63228          "version": "v1"
63229        }
63230      },
63231      "parameters": [
63232        {
63233          "description": "name of the CertificateSigningRequest",
63234          "in": "path",
63235          "name": "name",
63236          "required": true,
63237          "type": "string",
63238          "uniqueItems": true
63239        },
63240        {
63241          "description": "If 'true', then the output is pretty printed.",
63242          "in": "query",
63243          "name": "pretty",
63244          "type": "string",
63245          "uniqueItems": true
63246        }
63247      ],
63248      "patch": {
63249        "consumes": [
63250          "application/json-patch+json",
63251          "application/merge-patch+json",
63252          "application/strategic-merge-patch+json",
63253          "application/apply-patch+yaml"
63254        ],
63255        "description": "partially update status of the specified CertificateSigningRequest",
63256        "operationId": "patchCertificatesV1CertificateSigningRequestStatus",
63257        "parameters": [
63258          {
63259            "in": "body",
63260            "name": "body",
63261            "required": true,
63262            "schema": {
63263              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
63264            }
63265          },
63266          {
63267            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63268            "in": "query",
63269            "name": "dryRun",
63270            "type": "string",
63271            "uniqueItems": true
63272          },
63273          {
63274            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
63275            "in": "query",
63276            "name": "fieldManager",
63277            "type": "string",
63278            "uniqueItems": true
63279          },
63280          {
63281            "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.",
63282            "in": "query",
63283            "name": "force",
63284            "type": "boolean",
63285            "uniqueItems": true
63286          }
63287        ],
63288        "produces": [
63289          "application/json",
63290          "application/yaml",
63291          "application/vnd.kubernetes.protobuf"
63292        ],
63293        "responses": {
63294          "200": {
63295            "description": "OK",
63296            "schema": {
63297              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63298            }
63299          },
63300          "401": {
63301            "description": "Unauthorized"
63302          }
63303        },
63304        "schemes": [
63305          "https"
63306        ],
63307        "tags": [
63308          "certificates_v1"
63309        ],
63310        "x-kubernetes-action": "patch",
63311        "x-kubernetes-group-version-kind": {
63312          "group": "certificates.k8s.io",
63313          "kind": "CertificateSigningRequest",
63314          "version": "v1"
63315        }
63316      },
63317      "put": {
63318        "consumes": [
63319          "*/*"
63320        ],
63321        "description": "replace status of the specified CertificateSigningRequest",
63322        "operationId": "replaceCertificatesV1CertificateSigningRequestStatus",
63323        "parameters": [
63324          {
63325            "in": "body",
63326            "name": "body",
63327            "required": true,
63328            "schema": {
63329              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63330            }
63331          },
63332          {
63333            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63334            "in": "query",
63335            "name": "dryRun",
63336            "type": "string",
63337            "uniqueItems": true
63338          },
63339          {
63340            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63341            "in": "query",
63342            "name": "fieldManager",
63343            "type": "string",
63344            "uniqueItems": true
63345          }
63346        ],
63347        "produces": [
63348          "application/json",
63349          "application/yaml",
63350          "application/vnd.kubernetes.protobuf"
63351        ],
63352        "responses": {
63353          "200": {
63354            "description": "OK",
63355            "schema": {
63356              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63357            }
63358          },
63359          "201": {
63360            "description": "Created",
63361            "schema": {
63362              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63363            }
63364          },
63365          "401": {
63366            "description": "Unauthorized"
63367          }
63368        },
63369        "schemes": [
63370          "https"
63371        ],
63372        "tags": [
63373          "certificates_v1"
63374        ],
63375        "x-kubernetes-action": "put",
63376        "x-kubernetes-group-version-kind": {
63377          "group": "certificates.k8s.io",
63378          "kind": "CertificateSigningRequest",
63379          "version": "v1"
63380        }
63381      }
63382    },
63383    "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests": {
63384      "get": {
63385        "consumes": [
63386          "*/*"
63387        ],
63388        "description": "watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead.",
63389        "operationId": "watchCertificatesV1CertificateSigningRequestList",
63390        "produces": [
63391          "application/json",
63392          "application/yaml",
63393          "application/vnd.kubernetes.protobuf",
63394          "application/json;stream=watch",
63395          "application/vnd.kubernetes.protobuf;stream=watch"
63396        ],
63397        "responses": {
63398          "200": {
63399            "description": "OK",
63400            "schema": {
63401              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
63402            }
63403          },
63404          "401": {
63405            "description": "Unauthorized"
63406          }
63407        },
63408        "schemes": [
63409          "https"
63410        ],
63411        "tags": [
63412          "certificates_v1"
63413        ],
63414        "x-kubernetes-action": "watchlist",
63415        "x-kubernetes-group-version-kind": {
63416          "group": "certificates.k8s.io",
63417          "kind": "CertificateSigningRequest",
63418          "version": "v1"
63419        }
63420      },
63421      "parameters": [
63422        {
63423          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
63424          "in": "query",
63425          "name": "allowWatchBookmarks",
63426          "type": "boolean",
63427          "uniqueItems": true
63428        },
63429        {
63430          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63431          "in": "query",
63432          "name": "continue",
63433          "type": "string",
63434          "uniqueItems": true
63435        },
63436        {
63437          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63438          "in": "query",
63439          "name": "fieldSelector",
63440          "type": "string",
63441          "uniqueItems": true
63442        },
63443        {
63444          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63445          "in": "query",
63446          "name": "labelSelector",
63447          "type": "string",
63448          "uniqueItems": true
63449        },
63450        {
63451          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63452          "in": "query",
63453          "name": "limit",
63454          "type": "integer",
63455          "uniqueItems": true
63456        },
63457        {
63458          "description": "If 'true', then the output is pretty printed.",
63459          "in": "query",
63460          "name": "pretty",
63461          "type": "string",
63462          "uniqueItems": true
63463        },
63464        {
63465          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63466          "in": "query",
63467          "name": "resourceVersion",
63468          "type": "string",
63469          "uniqueItems": true
63470        },
63471        {
63472          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63473          "in": "query",
63474          "name": "resourceVersionMatch",
63475          "type": "string",
63476          "uniqueItems": true
63477        },
63478        {
63479          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63480          "in": "query",
63481          "name": "timeoutSeconds",
63482          "type": "integer",
63483          "uniqueItems": true
63484        },
63485        {
63486          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63487          "in": "query",
63488          "name": "watch",
63489          "type": "boolean",
63490          "uniqueItems": true
63491        }
63492      ]
63493    },
63494    "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests/{name}": {
63495      "get": {
63496        "consumes": [
63497          "*/*"
63498        ],
63499        "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.",
63500        "operationId": "watchCertificatesV1CertificateSigningRequest",
63501        "produces": [
63502          "application/json",
63503          "application/yaml",
63504          "application/vnd.kubernetes.protobuf",
63505          "application/json;stream=watch",
63506          "application/vnd.kubernetes.protobuf;stream=watch"
63507        ],
63508        "responses": {
63509          "200": {
63510            "description": "OK",
63511            "schema": {
63512              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
63513            }
63514          },
63515          "401": {
63516            "description": "Unauthorized"
63517          }
63518        },
63519        "schemes": [
63520          "https"
63521        ],
63522        "tags": [
63523          "certificates_v1"
63524        ],
63525        "x-kubernetes-action": "watch",
63526        "x-kubernetes-group-version-kind": {
63527          "group": "certificates.k8s.io",
63528          "kind": "CertificateSigningRequest",
63529          "version": "v1"
63530        }
63531      },
63532      "parameters": [
63533        {
63534          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
63535          "in": "query",
63536          "name": "allowWatchBookmarks",
63537          "type": "boolean",
63538          "uniqueItems": true
63539        },
63540        {
63541          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63542          "in": "query",
63543          "name": "continue",
63544          "type": "string",
63545          "uniqueItems": true
63546        },
63547        {
63548          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63549          "in": "query",
63550          "name": "fieldSelector",
63551          "type": "string",
63552          "uniqueItems": true
63553        },
63554        {
63555          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63556          "in": "query",
63557          "name": "labelSelector",
63558          "type": "string",
63559          "uniqueItems": true
63560        },
63561        {
63562          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63563          "in": "query",
63564          "name": "limit",
63565          "type": "integer",
63566          "uniqueItems": true
63567        },
63568        {
63569          "description": "name of the CertificateSigningRequest",
63570          "in": "path",
63571          "name": "name",
63572          "required": true,
63573          "type": "string",
63574          "uniqueItems": true
63575        },
63576        {
63577          "description": "If 'true', then the output is pretty printed.",
63578          "in": "query",
63579          "name": "pretty",
63580          "type": "string",
63581          "uniqueItems": true
63582        },
63583        {
63584          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63585          "in": "query",
63586          "name": "resourceVersion",
63587          "type": "string",
63588          "uniqueItems": true
63589        },
63590        {
63591          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63592          "in": "query",
63593          "name": "resourceVersionMatch",
63594          "type": "string",
63595          "uniqueItems": true
63596        },
63597        {
63598          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63599          "in": "query",
63600          "name": "timeoutSeconds",
63601          "type": "integer",
63602          "uniqueItems": true
63603        },
63604        {
63605          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63606          "in": "query",
63607          "name": "watch",
63608          "type": "boolean",
63609          "uniqueItems": true
63610        }
63611      ]
63612    },
63613    "/apis/certificates.k8s.io/v1beta1/": {
63614      "get": {
63615        "consumes": [
63616          "application/json",
63617          "application/yaml",
63618          "application/vnd.kubernetes.protobuf"
63619        ],
63620        "description": "get available resources",
63621        "operationId": "getCertificatesV1beta1APIResources",
63622        "produces": [
63623          "application/json",
63624          "application/yaml",
63625          "application/vnd.kubernetes.protobuf"
63626        ],
63627        "responses": {
63628          "200": {
63629            "description": "OK",
63630            "schema": {
63631              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
63632            }
63633          },
63634          "401": {
63635            "description": "Unauthorized"
63636          }
63637        },
63638        "schemes": [
63639          "https"
63640        ],
63641        "tags": [
63642          "certificates_v1beta1"
63643        ]
63644      }
63645    },
63646    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests": {
63647      "delete": {
63648        "consumes": [
63649          "*/*"
63650        ],
63651        "description": "delete collection of CertificateSigningRequest",
63652        "operationId": "deleteCertificatesV1beta1CollectionCertificateSigningRequest",
63653        "parameters": [
63654          {
63655            "in": "body",
63656            "name": "body",
63657            "schema": {
63658              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
63659            }
63660          },
63661          {
63662            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63663            "in": "query",
63664            "name": "continue",
63665            "type": "string",
63666            "uniqueItems": true
63667          },
63668          {
63669            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63670            "in": "query",
63671            "name": "dryRun",
63672            "type": "string",
63673            "uniqueItems": true
63674          },
63675          {
63676            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63677            "in": "query",
63678            "name": "fieldSelector",
63679            "type": "string",
63680            "uniqueItems": true
63681          },
63682          {
63683            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
63684            "in": "query",
63685            "name": "gracePeriodSeconds",
63686            "type": "integer",
63687            "uniqueItems": true
63688          },
63689          {
63690            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63691            "in": "query",
63692            "name": "labelSelector",
63693            "type": "string",
63694            "uniqueItems": true
63695          },
63696          {
63697            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63698            "in": "query",
63699            "name": "limit",
63700            "type": "integer",
63701            "uniqueItems": true
63702          },
63703          {
63704            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
63705            "in": "query",
63706            "name": "orphanDependents",
63707            "type": "boolean",
63708            "uniqueItems": true
63709          },
63710          {
63711            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
63712            "in": "query",
63713            "name": "propagationPolicy",
63714            "type": "string",
63715            "uniqueItems": true
63716          },
63717          {
63718            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63719            "in": "query",
63720            "name": "resourceVersion",
63721            "type": "string",
63722            "uniqueItems": true
63723          },
63724          {
63725            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63726            "in": "query",
63727            "name": "resourceVersionMatch",
63728            "type": "string",
63729            "uniqueItems": true
63730          },
63731          {
63732            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63733            "in": "query",
63734            "name": "timeoutSeconds",
63735            "type": "integer",
63736            "uniqueItems": true
63737          }
63738        ],
63739        "produces": [
63740          "application/json",
63741          "application/yaml",
63742          "application/vnd.kubernetes.protobuf"
63743        ],
63744        "responses": {
63745          "200": {
63746            "description": "OK",
63747            "schema": {
63748              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
63749            }
63750          },
63751          "401": {
63752            "description": "Unauthorized"
63753          }
63754        },
63755        "schemes": [
63756          "https"
63757        ],
63758        "tags": [
63759          "certificates_v1beta1"
63760        ],
63761        "x-kubernetes-action": "deletecollection",
63762        "x-kubernetes-group-version-kind": {
63763          "group": "certificates.k8s.io",
63764          "kind": "CertificateSigningRequest",
63765          "version": "v1beta1"
63766        }
63767      },
63768      "get": {
63769        "consumes": [
63770          "*/*"
63771        ],
63772        "description": "list or watch objects of kind CertificateSigningRequest",
63773        "operationId": "listCertificatesV1beta1CertificateSigningRequest",
63774        "parameters": [
63775          {
63776            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
63777            "in": "query",
63778            "name": "allowWatchBookmarks",
63779            "type": "boolean",
63780            "uniqueItems": true
63781          },
63782          {
63783            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63784            "in": "query",
63785            "name": "continue",
63786            "type": "string",
63787            "uniqueItems": true
63788          },
63789          {
63790            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63791            "in": "query",
63792            "name": "fieldSelector",
63793            "type": "string",
63794            "uniqueItems": true
63795          },
63796          {
63797            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63798            "in": "query",
63799            "name": "labelSelector",
63800            "type": "string",
63801            "uniqueItems": true
63802          },
63803          {
63804            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63805            "in": "query",
63806            "name": "limit",
63807            "type": "integer",
63808            "uniqueItems": true
63809          },
63810          {
63811            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63812            "in": "query",
63813            "name": "resourceVersion",
63814            "type": "string",
63815            "uniqueItems": true
63816          },
63817          {
63818            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63819            "in": "query",
63820            "name": "resourceVersionMatch",
63821            "type": "string",
63822            "uniqueItems": true
63823          },
63824          {
63825            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63826            "in": "query",
63827            "name": "timeoutSeconds",
63828            "type": "integer",
63829            "uniqueItems": true
63830          },
63831          {
63832            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63833            "in": "query",
63834            "name": "watch",
63835            "type": "boolean",
63836            "uniqueItems": true
63837          }
63838        ],
63839        "produces": [
63840          "application/json",
63841          "application/yaml",
63842          "application/vnd.kubernetes.protobuf",
63843          "application/json;stream=watch",
63844          "application/vnd.kubernetes.protobuf;stream=watch"
63845        ],
63846        "responses": {
63847          "200": {
63848            "description": "OK",
63849            "schema": {
63850              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestList"
63851            }
63852          },
63853          "401": {
63854            "description": "Unauthorized"
63855          }
63856        },
63857        "schemes": [
63858          "https"
63859        ],
63860        "tags": [
63861          "certificates_v1beta1"
63862        ],
63863        "x-kubernetes-action": "list",
63864        "x-kubernetes-group-version-kind": {
63865          "group": "certificates.k8s.io",
63866          "kind": "CertificateSigningRequest",
63867          "version": "v1beta1"
63868        }
63869      },
63870      "parameters": [
63871        {
63872          "description": "If 'true', then the output is pretty printed.",
63873          "in": "query",
63874          "name": "pretty",
63875          "type": "string",
63876          "uniqueItems": true
63877        }
63878      ],
63879      "post": {
63880        "consumes": [
63881          "*/*"
63882        ],
63883        "description": "create a CertificateSigningRequest",
63884        "operationId": "createCertificatesV1beta1CertificateSigningRequest",
63885        "parameters": [
63886          {
63887            "in": "body",
63888            "name": "body",
63889            "required": true,
63890            "schema": {
63891              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63892            }
63893          },
63894          {
63895            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63896            "in": "query",
63897            "name": "dryRun",
63898            "type": "string",
63899            "uniqueItems": true
63900          },
63901          {
63902            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63903            "in": "query",
63904            "name": "fieldManager",
63905            "type": "string",
63906            "uniqueItems": true
63907          }
63908        ],
63909        "produces": [
63910          "application/json",
63911          "application/yaml",
63912          "application/vnd.kubernetes.protobuf"
63913        ],
63914        "responses": {
63915          "200": {
63916            "description": "OK",
63917            "schema": {
63918              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63919            }
63920          },
63921          "201": {
63922            "description": "Created",
63923            "schema": {
63924              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63925            }
63926          },
63927          "202": {
63928            "description": "Accepted",
63929            "schema": {
63930              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63931            }
63932          },
63933          "401": {
63934            "description": "Unauthorized"
63935          }
63936        },
63937        "schemes": [
63938          "https"
63939        ],
63940        "tags": [
63941          "certificates_v1beta1"
63942        ],
63943        "x-kubernetes-action": "post",
63944        "x-kubernetes-group-version-kind": {
63945          "group": "certificates.k8s.io",
63946          "kind": "CertificateSigningRequest",
63947          "version": "v1beta1"
63948        }
63949      }
63950    },
63951    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}": {
63952      "delete": {
63953        "consumes": [
63954          "*/*"
63955        ],
63956        "description": "delete a CertificateSigningRequest",
63957        "operationId": "deleteCertificatesV1beta1CertificateSigningRequest",
63958        "parameters": [
63959          {
63960            "in": "body",
63961            "name": "body",
63962            "schema": {
63963              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
63964            }
63965          },
63966          {
63967            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63968            "in": "query",
63969            "name": "dryRun",
63970            "type": "string",
63971            "uniqueItems": true
63972          },
63973          {
63974            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
63975            "in": "query",
63976            "name": "gracePeriodSeconds",
63977            "type": "integer",
63978            "uniqueItems": true
63979          },
63980          {
63981            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
63982            "in": "query",
63983            "name": "orphanDependents",
63984            "type": "boolean",
63985            "uniqueItems": true
63986          },
63987          {
63988            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
63989            "in": "query",
63990            "name": "propagationPolicy",
63991            "type": "string",
63992            "uniqueItems": true
63993          }
63994        ],
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.Status"
64005            }
64006          },
64007          "202": {
64008            "description": "Accepted",
64009            "schema": {
64010              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
64011            }
64012          },
64013          "401": {
64014            "description": "Unauthorized"
64015          }
64016        },
64017        "schemes": [
64018          "https"
64019        ],
64020        "tags": [
64021          "certificates_v1beta1"
64022        ],
64023        "x-kubernetes-action": "delete",
64024        "x-kubernetes-group-version-kind": {
64025          "group": "certificates.k8s.io",
64026          "kind": "CertificateSigningRequest",
64027          "version": "v1beta1"
64028        }
64029      },
64030      "get": {
64031        "consumes": [
64032          "*/*"
64033        ],
64034        "description": "read the specified CertificateSigningRequest",
64035        "operationId": "readCertificatesV1beta1CertificateSigningRequest",
64036        "produces": [
64037          "application/json",
64038          "application/yaml",
64039          "application/vnd.kubernetes.protobuf"
64040        ],
64041        "responses": {
64042          "200": {
64043            "description": "OK",
64044            "schema": {
64045              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64046            }
64047          },
64048          "401": {
64049            "description": "Unauthorized"
64050          }
64051        },
64052        "schemes": [
64053          "https"
64054        ],
64055        "tags": [
64056          "certificates_v1beta1"
64057        ],
64058        "x-kubernetes-action": "get",
64059        "x-kubernetes-group-version-kind": {
64060          "group": "certificates.k8s.io",
64061          "kind": "CertificateSigningRequest",
64062          "version": "v1beta1"
64063        }
64064      },
64065      "parameters": [
64066        {
64067          "description": "name of the CertificateSigningRequest",
64068          "in": "path",
64069          "name": "name",
64070          "required": true,
64071          "type": "string",
64072          "uniqueItems": true
64073        },
64074        {
64075          "description": "If 'true', then the output is pretty printed.",
64076          "in": "query",
64077          "name": "pretty",
64078          "type": "string",
64079          "uniqueItems": true
64080        }
64081      ],
64082      "patch": {
64083        "consumes": [
64084          "application/json-patch+json",
64085          "application/merge-patch+json",
64086          "application/strategic-merge-patch+json",
64087          "application/apply-patch+yaml"
64088        ],
64089        "description": "partially update the specified CertificateSigningRequest",
64090        "operationId": "patchCertificatesV1beta1CertificateSigningRequest",
64091        "parameters": [
64092          {
64093            "in": "body",
64094            "name": "body",
64095            "required": true,
64096            "schema": {
64097              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64098            }
64099          },
64100          {
64101            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64102            "in": "query",
64103            "name": "dryRun",
64104            "type": "string",
64105            "uniqueItems": true
64106          },
64107          {
64108            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
64109            "in": "query",
64110            "name": "fieldManager",
64111            "type": "string",
64112            "uniqueItems": true
64113          },
64114          {
64115            "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.",
64116            "in": "query",
64117            "name": "force",
64118            "type": "boolean",
64119            "uniqueItems": true
64120          }
64121        ],
64122        "produces": [
64123          "application/json",
64124          "application/yaml",
64125          "application/vnd.kubernetes.protobuf"
64126        ],
64127        "responses": {
64128          "200": {
64129            "description": "OK",
64130            "schema": {
64131              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64132            }
64133          },
64134          "401": {
64135            "description": "Unauthorized"
64136          }
64137        },
64138        "schemes": [
64139          "https"
64140        ],
64141        "tags": [
64142          "certificates_v1beta1"
64143        ],
64144        "x-kubernetes-action": "patch",
64145        "x-kubernetes-group-version-kind": {
64146          "group": "certificates.k8s.io",
64147          "kind": "CertificateSigningRequest",
64148          "version": "v1beta1"
64149        }
64150      },
64151      "put": {
64152        "consumes": [
64153          "*/*"
64154        ],
64155        "description": "replace the specified CertificateSigningRequest",
64156        "operationId": "replaceCertificatesV1beta1CertificateSigningRequest",
64157        "parameters": [
64158          {
64159            "in": "body",
64160            "name": "body",
64161            "required": true,
64162            "schema": {
64163              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64164            }
64165          },
64166          {
64167            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64168            "in": "query",
64169            "name": "dryRun",
64170            "type": "string",
64171            "uniqueItems": true
64172          },
64173          {
64174            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64175            "in": "query",
64176            "name": "fieldManager",
64177            "type": "string",
64178            "uniqueItems": true
64179          }
64180        ],
64181        "produces": [
64182          "application/json",
64183          "application/yaml",
64184          "application/vnd.kubernetes.protobuf"
64185        ],
64186        "responses": {
64187          "200": {
64188            "description": "OK",
64189            "schema": {
64190              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64191            }
64192          },
64193          "201": {
64194            "description": "Created",
64195            "schema": {
64196              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64197            }
64198          },
64199          "401": {
64200            "description": "Unauthorized"
64201          }
64202        },
64203        "schemes": [
64204          "https"
64205        ],
64206        "tags": [
64207          "certificates_v1beta1"
64208        ],
64209        "x-kubernetes-action": "put",
64210        "x-kubernetes-group-version-kind": {
64211          "group": "certificates.k8s.io",
64212          "kind": "CertificateSigningRequest",
64213          "version": "v1beta1"
64214        }
64215      }
64216    },
64217    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval": {
64218      "get": {
64219        "consumes": [
64220          "*/*"
64221        ],
64222        "description": "read approval of the specified CertificateSigningRequest",
64223        "operationId": "readCertificatesV1beta1CertificateSigningRequestApproval",
64224        "produces": [
64225          "application/json",
64226          "application/yaml",
64227          "application/vnd.kubernetes.protobuf"
64228        ],
64229        "responses": {
64230          "200": {
64231            "description": "OK",
64232            "schema": {
64233              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64234            }
64235          },
64236          "401": {
64237            "description": "Unauthorized"
64238          }
64239        },
64240        "schemes": [
64241          "https"
64242        ],
64243        "tags": [
64244          "certificates_v1beta1"
64245        ],
64246        "x-kubernetes-action": "get",
64247        "x-kubernetes-group-version-kind": {
64248          "group": "certificates.k8s.io",
64249          "kind": "CertificateSigningRequest",
64250          "version": "v1beta1"
64251        }
64252      },
64253      "parameters": [
64254        {
64255          "description": "name of the CertificateSigningRequest",
64256          "in": "path",
64257          "name": "name",
64258          "required": true,
64259          "type": "string",
64260          "uniqueItems": true
64261        },
64262        {
64263          "description": "If 'true', then the output is pretty printed.",
64264          "in": "query",
64265          "name": "pretty",
64266          "type": "string",
64267          "uniqueItems": true
64268        }
64269      ],
64270      "patch": {
64271        "consumes": [
64272          "application/json-patch+json",
64273          "application/merge-patch+json",
64274          "application/strategic-merge-patch+json",
64275          "application/apply-patch+yaml"
64276        ],
64277        "description": "partially update approval of the specified CertificateSigningRequest",
64278        "operationId": "patchCertificatesV1beta1CertificateSigningRequestApproval",
64279        "parameters": [
64280          {
64281            "in": "body",
64282            "name": "body",
64283            "required": true,
64284            "schema": {
64285              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64286            }
64287          },
64288          {
64289            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64290            "in": "query",
64291            "name": "dryRun",
64292            "type": "string",
64293            "uniqueItems": true
64294          },
64295          {
64296            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
64297            "in": "query",
64298            "name": "fieldManager",
64299            "type": "string",
64300            "uniqueItems": true
64301          },
64302          {
64303            "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.",
64304            "in": "query",
64305            "name": "force",
64306            "type": "boolean",
64307            "uniqueItems": true
64308          }
64309        ],
64310        "produces": [
64311          "application/json",
64312          "application/yaml",
64313          "application/vnd.kubernetes.protobuf"
64314        ],
64315        "responses": {
64316          "200": {
64317            "description": "OK",
64318            "schema": {
64319              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64320            }
64321          },
64322          "401": {
64323            "description": "Unauthorized"
64324          }
64325        },
64326        "schemes": [
64327          "https"
64328        ],
64329        "tags": [
64330          "certificates_v1beta1"
64331        ],
64332        "x-kubernetes-action": "patch",
64333        "x-kubernetes-group-version-kind": {
64334          "group": "certificates.k8s.io",
64335          "kind": "CertificateSigningRequest",
64336          "version": "v1beta1"
64337        }
64338      },
64339      "put": {
64340        "consumes": [
64341          "*/*"
64342        ],
64343        "description": "replace approval of the specified CertificateSigningRequest",
64344        "operationId": "replaceCertificatesV1beta1CertificateSigningRequestApproval",
64345        "parameters": [
64346          {
64347            "in": "body",
64348            "name": "body",
64349            "required": true,
64350            "schema": {
64351              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64352            }
64353          },
64354          {
64355            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64356            "in": "query",
64357            "name": "dryRun",
64358            "type": "string",
64359            "uniqueItems": true
64360          },
64361          {
64362            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64363            "in": "query",
64364            "name": "fieldManager",
64365            "type": "string",
64366            "uniqueItems": true
64367          }
64368        ],
64369        "produces": [
64370          "application/json",
64371          "application/yaml",
64372          "application/vnd.kubernetes.protobuf"
64373        ],
64374        "responses": {
64375          "200": {
64376            "description": "OK",
64377            "schema": {
64378              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64379            }
64380          },
64381          "201": {
64382            "description": "Created",
64383            "schema": {
64384              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64385            }
64386          },
64387          "401": {
64388            "description": "Unauthorized"
64389          }
64390        },
64391        "schemes": [
64392          "https"
64393        ],
64394        "tags": [
64395          "certificates_v1beta1"
64396        ],
64397        "x-kubernetes-action": "put",
64398        "x-kubernetes-group-version-kind": {
64399          "group": "certificates.k8s.io",
64400          "kind": "CertificateSigningRequest",
64401          "version": "v1beta1"
64402        }
64403      }
64404    },
64405    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status": {
64406      "get": {
64407        "consumes": [
64408          "*/*"
64409        ],
64410        "description": "read status of the specified CertificateSigningRequest",
64411        "operationId": "readCertificatesV1beta1CertificateSigningRequestStatus",
64412        "produces": [
64413          "application/json",
64414          "application/yaml",
64415          "application/vnd.kubernetes.protobuf"
64416        ],
64417        "responses": {
64418          "200": {
64419            "description": "OK",
64420            "schema": {
64421              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64422            }
64423          },
64424          "401": {
64425            "description": "Unauthorized"
64426          }
64427        },
64428        "schemes": [
64429          "https"
64430        ],
64431        "tags": [
64432          "certificates_v1beta1"
64433        ],
64434        "x-kubernetes-action": "get",
64435        "x-kubernetes-group-version-kind": {
64436          "group": "certificates.k8s.io",
64437          "kind": "CertificateSigningRequest",
64438          "version": "v1beta1"
64439        }
64440      },
64441      "parameters": [
64442        {
64443          "description": "name of the CertificateSigningRequest",
64444          "in": "path",
64445          "name": "name",
64446          "required": true,
64447          "type": "string",
64448          "uniqueItems": true
64449        },
64450        {
64451          "description": "If 'true', then the output is pretty printed.",
64452          "in": "query",
64453          "name": "pretty",
64454          "type": "string",
64455          "uniqueItems": true
64456        }
64457      ],
64458      "patch": {
64459        "consumes": [
64460          "application/json-patch+json",
64461          "application/merge-patch+json",
64462          "application/strategic-merge-patch+json",
64463          "application/apply-patch+yaml"
64464        ],
64465        "description": "partially update status of the specified CertificateSigningRequest",
64466        "operationId": "patchCertificatesV1beta1CertificateSigningRequestStatus",
64467        "parameters": [
64468          {
64469            "in": "body",
64470            "name": "body",
64471            "required": true,
64472            "schema": {
64473              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64474            }
64475          },
64476          {
64477            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64478            "in": "query",
64479            "name": "dryRun",
64480            "type": "string",
64481            "uniqueItems": true
64482          },
64483          {
64484            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
64485            "in": "query",
64486            "name": "fieldManager",
64487            "type": "string",
64488            "uniqueItems": true
64489          },
64490          {
64491            "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.",
64492            "in": "query",
64493            "name": "force",
64494            "type": "boolean",
64495            "uniqueItems": true
64496          }
64497        ],
64498        "produces": [
64499          "application/json",
64500          "application/yaml",
64501          "application/vnd.kubernetes.protobuf"
64502        ],
64503        "responses": {
64504          "200": {
64505            "description": "OK",
64506            "schema": {
64507              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64508            }
64509          },
64510          "401": {
64511            "description": "Unauthorized"
64512          }
64513        },
64514        "schemes": [
64515          "https"
64516        ],
64517        "tags": [
64518          "certificates_v1beta1"
64519        ],
64520        "x-kubernetes-action": "patch",
64521        "x-kubernetes-group-version-kind": {
64522          "group": "certificates.k8s.io",
64523          "kind": "CertificateSigningRequest",
64524          "version": "v1beta1"
64525        }
64526      },
64527      "put": {
64528        "consumes": [
64529          "*/*"
64530        ],
64531        "description": "replace status of the specified CertificateSigningRequest",
64532        "operationId": "replaceCertificatesV1beta1CertificateSigningRequestStatus",
64533        "parameters": [
64534          {
64535            "in": "body",
64536            "name": "body",
64537            "required": true,
64538            "schema": {
64539              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64540            }
64541          },
64542          {
64543            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64544            "in": "query",
64545            "name": "dryRun",
64546            "type": "string",
64547            "uniqueItems": true
64548          },
64549          {
64550            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64551            "in": "query",
64552            "name": "fieldManager",
64553            "type": "string",
64554            "uniqueItems": true
64555          }
64556        ],
64557        "produces": [
64558          "application/json",
64559          "application/yaml",
64560          "application/vnd.kubernetes.protobuf"
64561        ],
64562        "responses": {
64563          "200": {
64564            "description": "OK",
64565            "schema": {
64566              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64567            }
64568          },
64569          "201": {
64570            "description": "Created",
64571            "schema": {
64572              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64573            }
64574          },
64575          "401": {
64576            "description": "Unauthorized"
64577          }
64578        },
64579        "schemes": [
64580          "https"
64581        ],
64582        "tags": [
64583          "certificates_v1beta1"
64584        ],
64585        "x-kubernetes-action": "put",
64586        "x-kubernetes-group-version-kind": {
64587          "group": "certificates.k8s.io",
64588          "kind": "CertificateSigningRequest",
64589          "version": "v1beta1"
64590        }
64591      }
64592    },
64593    "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests": {
64594      "get": {
64595        "consumes": [
64596          "*/*"
64597        ],
64598        "description": "watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead.",
64599        "operationId": "watchCertificatesV1beta1CertificateSigningRequestList",
64600        "produces": [
64601          "application/json",
64602          "application/yaml",
64603          "application/vnd.kubernetes.protobuf",
64604          "application/json;stream=watch",
64605          "application/vnd.kubernetes.protobuf;stream=watch"
64606        ],
64607        "responses": {
64608          "200": {
64609            "description": "OK",
64610            "schema": {
64611              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
64612            }
64613          },
64614          "401": {
64615            "description": "Unauthorized"
64616          }
64617        },
64618        "schemes": [
64619          "https"
64620        ],
64621        "tags": [
64622          "certificates_v1beta1"
64623        ],
64624        "x-kubernetes-action": "watchlist",
64625        "x-kubernetes-group-version-kind": {
64626          "group": "certificates.k8s.io",
64627          "kind": "CertificateSigningRequest",
64628          "version": "v1beta1"
64629        }
64630      },
64631      "parameters": [
64632        {
64633          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
64634          "in": "query",
64635          "name": "allowWatchBookmarks",
64636          "type": "boolean",
64637          "uniqueItems": true
64638        },
64639        {
64640          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64641          "in": "query",
64642          "name": "continue",
64643          "type": "string",
64644          "uniqueItems": true
64645        },
64646        {
64647          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64648          "in": "query",
64649          "name": "fieldSelector",
64650          "type": "string",
64651          "uniqueItems": true
64652        },
64653        {
64654          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64655          "in": "query",
64656          "name": "labelSelector",
64657          "type": "string",
64658          "uniqueItems": true
64659        },
64660        {
64661          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64662          "in": "query",
64663          "name": "limit",
64664          "type": "integer",
64665          "uniqueItems": true
64666        },
64667        {
64668          "description": "If 'true', then the output is pretty printed.",
64669          "in": "query",
64670          "name": "pretty",
64671          "type": "string",
64672          "uniqueItems": true
64673        },
64674        {
64675          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64676          "in": "query",
64677          "name": "resourceVersion",
64678          "type": "string",
64679          "uniqueItems": true
64680        },
64681        {
64682          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64683          "in": "query",
64684          "name": "resourceVersionMatch",
64685          "type": "string",
64686          "uniqueItems": true
64687        },
64688        {
64689          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64690          "in": "query",
64691          "name": "timeoutSeconds",
64692          "type": "integer",
64693          "uniqueItems": true
64694        },
64695        {
64696          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64697          "in": "query",
64698          "name": "watch",
64699          "type": "boolean",
64700          "uniqueItems": true
64701        }
64702      ]
64703    },
64704    "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{name}": {
64705      "get": {
64706        "consumes": [
64707          "*/*"
64708        ],
64709        "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.",
64710        "operationId": "watchCertificatesV1beta1CertificateSigningRequest",
64711        "produces": [
64712          "application/json",
64713          "application/yaml",
64714          "application/vnd.kubernetes.protobuf",
64715          "application/json;stream=watch",
64716          "application/vnd.kubernetes.protobuf;stream=watch"
64717        ],
64718        "responses": {
64719          "200": {
64720            "description": "OK",
64721            "schema": {
64722              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
64723            }
64724          },
64725          "401": {
64726            "description": "Unauthorized"
64727          }
64728        },
64729        "schemes": [
64730          "https"
64731        ],
64732        "tags": [
64733          "certificates_v1beta1"
64734        ],
64735        "x-kubernetes-action": "watch",
64736        "x-kubernetes-group-version-kind": {
64737          "group": "certificates.k8s.io",
64738          "kind": "CertificateSigningRequest",
64739          "version": "v1beta1"
64740        }
64741      },
64742      "parameters": [
64743        {
64744          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
64745          "in": "query",
64746          "name": "allowWatchBookmarks",
64747          "type": "boolean",
64748          "uniqueItems": true
64749        },
64750        {
64751          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64752          "in": "query",
64753          "name": "continue",
64754          "type": "string",
64755          "uniqueItems": true
64756        },
64757        {
64758          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64759          "in": "query",
64760          "name": "fieldSelector",
64761          "type": "string",
64762          "uniqueItems": true
64763        },
64764        {
64765          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64766          "in": "query",
64767          "name": "labelSelector",
64768          "type": "string",
64769          "uniqueItems": true
64770        },
64771        {
64772          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64773          "in": "query",
64774          "name": "limit",
64775          "type": "integer",
64776          "uniqueItems": true
64777        },
64778        {
64779          "description": "name of the CertificateSigningRequest",
64780          "in": "path",
64781          "name": "name",
64782          "required": true,
64783          "type": "string",
64784          "uniqueItems": true
64785        },
64786        {
64787          "description": "If 'true', then the output is pretty printed.",
64788          "in": "query",
64789          "name": "pretty",
64790          "type": "string",
64791          "uniqueItems": true
64792        },
64793        {
64794          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64795          "in": "query",
64796          "name": "resourceVersion",
64797          "type": "string",
64798          "uniqueItems": true
64799        },
64800        {
64801          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64802          "in": "query",
64803          "name": "resourceVersionMatch",
64804          "type": "string",
64805          "uniqueItems": true
64806        },
64807        {
64808          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64809          "in": "query",
64810          "name": "timeoutSeconds",
64811          "type": "integer",
64812          "uniqueItems": true
64813        },
64814        {
64815          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64816          "in": "query",
64817          "name": "watch",
64818          "type": "boolean",
64819          "uniqueItems": true
64820        }
64821      ]
64822    },
64823    "/apis/coordination.k8s.io/": {
64824      "get": {
64825        "consumes": [
64826          "application/json",
64827          "application/yaml",
64828          "application/vnd.kubernetes.protobuf"
64829        ],
64830        "description": "get information of a group",
64831        "operationId": "getCoordinationAPIGroup",
64832        "produces": [
64833          "application/json",
64834          "application/yaml",
64835          "application/vnd.kubernetes.protobuf"
64836        ],
64837        "responses": {
64838          "200": {
64839            "description": "OK",
64840            "schema": {
64841              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
64842            }
64843          },
64844          "401": {
64845            "description": "Unauthorized"
64846          }
64847        },
64848        "schemes": [
64849          "https"
64850        ],
64851        "tags": [
64852          "coordination"
64853        ]
64854      }
64855    },
64856    "/apis/coordination.k8s.io/v1/": {
64857      "get": {
64858        "consumes": [
64859          "application/json",
64860          "application/yaml",
64861          "application/vnd.kubernetes.protobuf"
64862        ],
64863        "description": "get available resources",
64864        "operationId": "getCoordinationV1APIResources",
64865        "produces": [
64866          "application/json",
64867          "application/yaml",
64868          "application/vnd.kubernetes.protobuf"
64869        ],
64870        "responses": {
64871          "200": {
64872            "description": "OK",
64873            "schema": {
64874              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
64875            }
64876          },
64877          "401": {
64878            "description": "Unauthorized"
64879          }
64880        },
64881        "schemes": [
64882          "https"
64883        ],
64884        "tags": [
64885          "coordination_v1"
64886        ]
64887      }
64888    },
64889    "/apis/coordination.k8s.io/v1/leases": {
64890      "get": {
64891        "consumes": [
64892          "*/*"
64893        ],
64894        "description": "list or watch objects of kind Lease",
64895        "operationId": "listCoordinationV1LeaseForAllNamespaces",
64896        "produces": [
64897          "application/json",
64898          "application/yaml",
64899          "application/vnd.kubernetes.protobuf",
64900          "application/json;stream=watch",
64901          "application/vnd.kubernetes.protobuf;stream=watch"
64902        ],
64903        "responses": {
64904          "200": {
64905            "description": "OK",
64906            "schema": {
64907              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
64908            }
64909          },
64910          "401": {
64911            "description": "Unauthorized"
64912          }
64913        },
64914        "schemes": [
64915          "https"
64916        ],
64917        "tags": [
64918          "coordination_v1"
64919        ],
64920        "x-kubernetes-action": "list",
64921        "x-kubernetes-group-version-kind": {
64922          "group": "coordination.k8s.io",
64923          "kind": "Lease",
64924          "version": "v1"
64925        }
64926      },
64927      "parameters": [
64928        {
64929          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
64930          "in": "query",
64931          "name": "allowWatchBookmarks",
64932          "type": "boolean",
64933          "uniqueItems": true
64934        },
64935        {
64936          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64937          "in": "query",
64938          "name": "continue",
64939          "type": "string",
64940          "uniqueItems": true
64941        },
64942        {
64943          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64944          "in": "query",
64945          "name": "fieldSelector",
64946          "type": "string",
64947          "uniqueItems": true
64948        },
64949        {
64950          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64951          "in": "query",
64952          "name": "labelSelector",
64953          "type": "string",
64954          "uniqueItems": true
64955        },
64956        {
64957          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64958          "in": "query",
64959          "name": "limit",
64960          "type": "integer",
64961          "uniqueItems": true
64962        },
64963        {
64964          "description": "If 'true', then the output is pretty printed.",
64965          "in": "query",
64966          "name": "pretty",
64967          "type": "string",
64968          "uniqueItems": true
64969        },
64970        {
64971          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64972          "in": "query",
64973          "name": "resourceVersion",
64974          "type": "string",
64975          "uniqueItems": true
64976        },
64977        {
64978          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64979          "in": "query",
64980          "name": "resourceVersionMatch",
64981          "type": "string",
64982          "uniqueItems": true
64983        },
64984        {
64985          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64986          "in": "query",
64987          "name": "timeoutSeconds",
64988          "type": "integer",
64989          "uniqueItems": true
64990        },
64991        {
64992          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64993          "in": "query",
64994          "name": "watch",
64995          "type": "boolean",
64996          "uniqueItems": true
64997        }
64998      ]
64999    },
65000    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases": {
65001      "delete": {
65002        "consumes": [
65003          "*/*"
65004        ],
65005        "description": "delete collection of Lease",
65006        "operationId": "deleteCoordinationV1CollectionNamespacedLease",
65007        "parameters": [
65008          {
65009            "in": "body",
65010            "name": "body",
65011            "schema": {
65012              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65013            }
65014          },
65015          {
65016            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65017            "in": "query",
65018            "name": "continue",
65019            "type": "string",
65020            "uniqueItems": true
65021          },
65022          {
65023            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65024            "in": "query",
65025            "name": "dryRun",
65026            "type": "string",
65027            "uniqueItems": true
65028          },
65029          {
65030            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65031            "in": "query",
65032            "name": "fieldSelector",
65033            "type": "string",
65034            "uniqueItems": true
65035          },
65036          {
65037            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
65038            "in": "query",
65039            "name": "gracePeriodSeconds",
65040            "type": "integer",
65041            "uniqueItems": true
65042          },
65043          {
65044            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65045            "in": "query",
65046            "name": "labelSelector",
65047            "type": "string",
65048            "uniqueItems": true
65049          },
65050          {
65051            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65052            "in": "query",
65053            "name": "limit",
65054            "type": "integer",
65055            "uniqueItems": true
65056          },
65057          {
65058            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
65059            "in": "query",
65060            "name": "orphanDependents",
65061            "type": "boolean",
65062            "uniqueItems": true
65063          },
65064          {
65065            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
65066            "in": "query",
65067            "name": "propagationPolicy",
65068            "type": "string",
65069            "uniqueItems": true
65070          },
65071          {
65072            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65073            "in": "query",
65074            "name": "resourceVersion",
65075            "type": "string",
65076            "uniqueItems": true
65077          },
65078          {
65079            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65080            "in": "query",
65081            "name": "resourceVersionMatch",
65082            "type": "string",
65083            "uniqueItems": true
65084          },
65085          {
65086            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65087            "in": "query",
65088            "name": "timeoutSeconds",
65089            "type": "integer",
65090            "uniqueItems": true
65091          }
65092        ],
65093        "produces": [
65094          "application/json",
65095          "application/yaml",
65096          "application/vnd.kubernetes.protobuf"
65097        ],
65098        "responses": {
65099          "200": {
65100            "description": "OK",
65101            "schema": {
65102              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65103            }
65104          },
65105          "401": {
65106            "description": "Unauthorized"
65107          }
65108        },
65109        "schemes": [
65110          "https"
65111        ],
65112        "tags": [
65113          "coordination_v1"
65114        ],
65115        "x-kubernetes-action": "deletecollection",
65116        "x-kubernetes-group-version-kind": {
65117          "group": "coordination.k8s.io",
65118          "kind": "Lease",
65119          "version": "v1"
65120        }
65121      },
65122      "get": {
65123        "consumes": [
65124          "*/*"
65125        ],
65126        "description": "list or watch objects of kind Lease",
65127        "operationId": "listCoordinationV1NamespacedLease",
65128        "parameters": [
65129          {
65130            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65131            "in": "query",
65132            "name": "allowWatchBookmarks",
65133            "type": "boolean",
65134            "uniqueItems": true
65135          },
65136          {
65137            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65138            "in": "query",
65139            "name": "continue",
65140            "type": "string",
65141            "uniqueItems": true
65142          },
65143          {
65144            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65145            "in": "query",
65146            "name": "fieldSelector",
65147            "type": "string",
65148            "uniqueItems": true
65149          },
65150          {
65151            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65152            "in": "query",
65153            "name": "labelSelector",
65154            "type": "string",
65155            "uniqueItems": true
65156          },
65157          {
65158            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65159            "in": "query",
65160            "name": "limit",
65161            "type": "integer",
65162            "uniqueItems": true
65163          },
65164          {
65165            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65166            "in": "query",
65167            "name": "resourceVersion",
65168            "type": "string",
65169            "uniqueItems": true
65170          },
65171          {
65172            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65173            "in": "query",
65174            "name": "resourceVersionMatch",
65175            "type": "string",
65176            "uniqueItems": true
65177          },
65178          {
65179            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65180            "in": "query",
65181            "name": "timeoutSeconds",
65182            "type": "integer",
65183            "uniqueItems": true
65184          },
65185          {
65186            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65187            "in": "query",
65188            "name": "watch",
65189            "type": "boolean",
65190            "uniqueItems": true
65191          }
65192        ],
65193        "produces": [
65194          "application/json",
65195          "application/yaml",
65196          "application/vnd.kubernetes.protobuf",
65197          "application/json;stream=watch",
65198          "application/vnd.kubernetes.protobuf;stream=watch"
65199        ],
65200        "responses": {
65201          "200": {
65202            "description": "OK",
65203            "schema": {
65204              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
65205            }
65206          },
65207          "401": {
65208            "description": "Unauthorized"
65209          }
65210        },
65211        "schemes": [
65212          "https"
65213        ],
65214        "tags": [
65215          "coordination_v1"
65216        ],
65217        "x-kubernetes-action": "list",
65218        "x-kubernetes-group-version-kind": {
65219          "group": "coordination.k8s.io",
65220          "kind": "Lease",
65221          "version": "v1"
65222        }
65223      },
65224      "parameters": [
65225        {
65226          "description": "object name and auth scope, such as for teams and projects",
65227          "in": "path",
65228          "name": "namespace",
65229          "required": true,
65230          "type": "string",
65231          "uniqueItems": true
65232        },
65233        {
65234          "description": "If 'true', then the output is pretty printed.",
65235          "in": "query",
65236          "name": "pretty",
65237          "type": "string",
65238          "uniqueItems": true
65239        }
65240      ],
65241      "post": {
65242        "consumes": [
65243          "*/*"
65244        ],
65245        "description": "create a Lease",
65246        "operationId": "createCoordinationV1NamespacedLease",
65247        "parameters": [
65248          {
65249            "in": "body",
65250            "name": "body",
65251            "required": true,
65252            "schema": {
65253              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65254            }
65255          },
65256          {
65257            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65258            "in": "query",
65259            "name": "dryRun",
65260            "type": "string",
65261            "uniqueItems": true
65262          },
65263          {
65264            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65265            "in": "query",
65266            "name": "fieldManager",
65267            "type": "string",
65268            "uniqueItems": true
65269          }
65270        ],
65271        "produces": [
65272          "application/json",
65273          "application/yaml",
65274          "application/vnd.kubernetes.protobuf"
65275        ],
65276        "responses": {
65277          "200": {
65278            "description": "OK",
65279            "schema": {
65280              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65281            }
65282          },
65283          "201": {
65284            "description": "Created",
65285            "schema": {
65286              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65287            }
65288          },
65289          "202": {
65290            "description": "Accepted",
65291            "schema": {
65292              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65293            }
65294          },
65295          "401": {
65296            "description": "Unauthorized"
65297          }
65298        },
65299        "schemes": [
65300          "https"
65301        ],
65302        "tags": [
65303          "coordination_v1"
65304        ],
65305        "x-kubernetes-action": "post",
65306        "x-kubernetes-group-version-kind": {
65307          "group": "coordination.k8s.io",
65308          "kind": "Lease",
65309          "version": "v1"
65310        }
65311      }
65312    },
65313    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}": {
65314      "delete": {
65315        "consumes": [
65316          "*/*"
65317        ],
65318        "description": "delete a Lease",
65319        "operationId": "deleteCoordinationV1NamespacedLease",
65320        "parameters": [
65321          {
65322            "in": "body",
65323            "name": "body",
65324            "schema": {
65325              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65326            }
65327          },
65328          {
65329            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65330            "in": "query",
65331            "name": "dryRun",
65332            "type": "string",
65333            "uniqueItems": true
65334          },
65335          {
65336            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
65337            "in": "query",
65338            "name": "gracePeriodSeconds",
65339            "type": "integer",
65340            "uniqueItems": true
65341          },
65342          {
65343            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
65344            "in": "query",
65345            "name": "orphanDependents",
65346            "type": "boolean",
65347            "uniqueItems": true
65348          },
65349          {
65350            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
65351            "in": "query",
65352            "name": "propagationPolicy",
65353            "type": "string",
65354            "uniqueItems": true
65355          }
65356        ],
65357        "produces": [
65358          "application/json",
65359          "application/yaml",
65360          "application/vnd.kubernetes.protobuf"
65361        ],
65362        "responses": {
65363          "200": {
65364            "description": "OK",
65365            "schema": {
65366              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65367            }
65368          },
65369          "202": {
65370            "description": "Accepted",
65371            "schema": {
65372              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65373            }
65374          },
65375          "401": {
65376            "description": "Unauthorized"
65377          }
65378        },
65379        "schemes": [
65380          "https"
65381        ],
65382        "tags": [
65383          "coordination_v1"
65384        ],
65385        "x-kubernetes-action": "delete",
65386        "x-kubernetes-group-version-kind": {
65387          "group": "coordination.k8s.io",
65388          "kind": "Lease",
65389          "version": "v1"
65390        }
65391      },
65392      "get": {
65393        "consumes": [
65394          "*/*"
65395        ],
65396        "description": "read the specified Lease",
65397        "operationId": "readCoordinationV1NamespacedLease",
65398        "produces": [
65399          "application/json",
65400          "application/yaml",
65401          "application/vnd.kubernetes.protobuf"
65402        ],
65403        "responses": {
65404          "200": {
65405            "description": "OK",
65406            "schema": {
65407              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65408            }
65409          },
65410          "401": {
65411            "description": "Unauthorized"
65412          }
65413        },
65414        "schemes": [
65415          "https"
65416        ],
65417        "tags": [
65418          "coordination_v1"
65419        ],
65420        "x-kubernetes-action": "get",
65421        "x-kubernetes-group-version-kind": {
65422          "group": "coordination.k8s.io",
65423          "kind": "Lease",
65424          "version": "v1"
65425        }
65426      },
65427      "parameters": [
65428        {
65429          "description": "name of the Lease",
65430          "in": "path",
65431          "name": "name",
65432          "required": true,
65433          "type": "string",
65434          "uniqueItems": true
65435        },
65436        {
65437          "description": "object name and auth scope, such as for teams and projects",
65438          "in": "path",
65439          "name": "namespace",
65440          "required": true,
65441          "type": "string",
65442          "uniqueItems": true
65443        },
65444        {
65445          "description": "If 'true', then the output is pretty printed.",
65446          "in": "query",
65447          "name": "pretty",
65448          "type": "string",
65449          "uniqueItems": true
65450        }
65451      ],
65452      "patch": {
65453        "consumes": [
65454          "application/json-patch+json",
65455          "application/merge-patch+json",
65456          "application/strategic-merge-patch+json",
65457          "application/apply-patch+yaml"
65458        ],
65459        "description": "partially update the specified Lease",
65460        "operationId": "patchCoordinationV1NamespacedLease",
65461        "parameters": [
65462          {
65463            "in": "body",
65464            "name": "body",
65465            "required": true,
65466            "schema": {
65467              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
65468            }
65469          },
65470          {
65471            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65472            "in": "query",
65473            "name": "dryRun",
65474            "type": "string",
65475            "uniqueItems": true
65476          },
65477          {
65478            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
65479            "in": "query",
65480            "name": "fieldManager",
65481            "type": "string",
65482            "uniqueItems": true
65483          },
65484          {
65485            "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.",
65486            "in": "query",
65487            "name": "force",
65488            "type": "boolean",
65489            "uniqueItems": true
65490          }
65491        ],
65492        "produces": [
65493          "application/json",
65494          "application/yaml",
65495          "application/vnd.kubernetes.protobuf"
65496        ],
65497        "responses": {
65498          "200": {
65499            "description": "OK",
65500            "schema": {
65501              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65502            }
65503          },
65504          "401": {
65505            "description": "Unauthorized"
65506          }
65507        },
65508        "schemes": [
65509          "https"
65510        ],
65511        "tags": [
65512          "coordination_v1"
65513        ],
65514        "x-kubernetes-action": "patch",
65515        "x-kubernetes-group-version-kind": {
65516          "group": "coordination.k8s.io",
65517          "kind": "Lease",
65518          "version": "v1"
65519        }
65520      },
65521      "put": {
65522        "consumes": [
65523          "*/*"
65524        ],
65525        "description": "replace the specified Lease",
65526        "operationId": "replaceCoordinationV1NamespacedLease",
65527        "parameters": [
65528          {
65529            "in": "body",
65530            "name": "body",
65531            "required": true,
65532            "schema": {
65533              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65534            }
65535          },
65536          {
65537            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65538            "in": "query",
65539            "name": "dryRun",
65540            "type": "string",
65541            "uniqueItems": true
65542          },
65543          {
65544            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65545            "in": "query",
65546            "name": "fieldManager",
65547            "type": "string",
65548            "uniqueItems": true
65549          }
65550        ],
65551        "produces": [
65552          "application/json",
65553          "application/yaml",
65554          "application/vnd.kubernetes.protobuf"
65555        ],
65556        "responses": {
65557          "200": {
65558            "description": "OK",
65559            "schema": {
65560              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65561            }
65562          },
65563          "201": {
65564            "description": "Created",
65565            "schema": {
65566              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65567            }
65568          },
65569          "401": {
65570            "description": "Unauthorized"
65571          }
65572        },
65573        "schemes": [
65574          "https"
65575        ],
65576        "tags": [
65577          "coordination_v1"
65578        ],
65579        "x-kubernetes-action": "put",
65580        "x-kubernetes-group-version-kind": {
65581          "group": "coordination.k8s.io",
65582          "kind": "Lease",
65583          "version": "v1"
65584        }
65585      }
65586    },
65587    "/apis/coordination.k8s.io/v1/watch/leases": {
65588      "get": {
65589        "consumes": [
65590          "*/*"
65591        ],
65592        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
65593        "operationId": "watchCoordinationV1LeaseListForAllNamespaces",
65594        "produces": [
65595          "application/json",
65596          "application/yaml",
65597          "application/vnd.kubernetes.protobuf",
65598          "application/json;stream=watch",
65599          "application/vnd.kubernetes.protobuf;stream=watch"
65600        ],
65601        "responses": {
65602          "200": {
65603            "description": "OK",
65604            "schema": {
65605              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65606            }
65607          },
65608          "401": {
65609            "description": "Unauthorized"
65610          }
65611        },
65612        "schemes": [
65613          "https"
65614        ],
65615        "tags": [
65616          "coordination_v1"
65617        ],
65618        "x-kubernetes-action": "watchlist",
65619        "x-kubernetes-group-version-kind": {
65620          "group": "coordination.k8s.io",
65621          "kind": "Lease",
65622          "version": "v1"
65623        }
65624      },
65625      "parameters": [
65626        {
65627          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65628          "in": "query",
65629          "name": "allowWatchBookmarks",
65630          "type": "boolean",
65631          "uniqueItems": true
65632        },
65633        {
65634          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65635          "in": "query",
65636          "name": "continue",
65637          "type": "string",
65638          "uniqueItems": true
65639        },
65640        {
65641          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65642          "in": "query",
65643          "name": "fieldSelector",
65644          "type": "string",
65645          "uniqueItems": true
65646        },
65647        {
65648          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65649          "in": "query",
65650          "name": "labelSelector",
65651          "type": "string",
65652          "uniqueItems": true
65653        },
65654        {
65655          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65656          "in": "query",
65657          "name": "limit",
65658          "type": "integer",
65659          "uniqueItems": true
65660        },
65661        {
65662          "description": "If 'true', then the output is pretty printed.",
65663          "in": "query",
65664          "name": "pretty",
65665          "type": "string",
65666          "uniqueItems": true
65667        },
65668        {
65669          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65670          "in": "query",
65671          "name": "resourceVersion",
65672          "type": "string",
65673          "uniqueItems": true
65674        },
65675        {
65676          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65677          "in": "query",
65678          "name": "resourceVersionMatch",
65679          "type": "string",
65680          "uniqueItems": true
65681        },
65682        {
65683          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65684          "in": "query",
65685          "name": "timeoutSeconds",
65686          "type": "integer",
65687          "uniqueItems": true
65688        },
65689        {
65690          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65691          "in": "query",
65692          "name": "watch",
65693          "type": "boolean",
65694          "uniqueItems": true
65695        }
65696      ]
65697    },
65698    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases": {
65699      "get": {
65700        "consumes": [
65701          "*/*"
65702        ],
65703        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
65704        "operationId": "watchCoordinationV1NamespacedLeaseList",
65705        "produces": [
65706          "application/json",
65707          "application/yaml",
65708          "application/vnd.kubernetes.protobuf",
65709          "application/json;stream=watch",
65710          "application/vnd.kubernetes.protobuf;stream=watch"
65711        ],
65712        "responses": {
65713          "200": {
65714            "description": "OK",
65715            "schema": {
65716              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65717            }
65718          },
65719          "401": {
65720            "description": "Unauthorized"
65721          }
65722        },
65723        "schemes": [
65724          "https"
65725        ],
65726        "tags": [
65727          "coordination_v1"
65728        ],
65729        "x-kubernetes-action": "watchlist",
65730        "x-kubernetes-group-version-kind": {
65731          "group": "coordination.k8s.io",
65732          "kind": "Lease",
65733          "version": "v1"
65734        }
65735      },
65736      "parameters": [
65737        {
65738          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65739          "in": "query",
65740          "name": "allowWatchBookmarks",
65741          "type": "boolean",
65742          "uniqueItems": true
65743        },
65744        {
65745          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65746          "in": "query",
65747          "name": "continue",
65748          "type": "string",
65749          "uniqueItems": true
65750        },
65751        {
65752          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65753          "in": "query",
65754          "name": "fieldSelector",
65755          "type": "string",
65756          "uniqueItems": true
65757        },
65758        {
65759          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65760          "in": "query",
65761          "name": "labelSelector",
65762          "type": "string",
65763          "uniqueItems": true
65764        },
65765        {
65766          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65767          "in": "query",
65768          "name": "limit",
65769          "type": "integer",
65770          "uniqueItems": true
65771        },
65772        {
65773          "description": "object name and auth scope, such as for teams and projects",
65774          "in": "path",
65775          "name": "namespace",
65776          "required": true,
65777          "type": "string",
65778          "uniqueItems": true
65779        },
65780        {
65781          "description": "If 'true', then the output is pretty printed.",
65782          "in": "query",
65783          "name": "pretty",
65784          "type": "string",
65785          "uniqueItems": true
65786        },
65787        {
65788          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65789          "in": "query",
65790          "name": "resourceVersion",
65791          "type": "string",
65792          "uniqueItems": true
65793        },
65794        {
65795          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65796          "in": "query",
65797          "name": "resourceVersionMatch",
65798          "type": "string",
65799          "uniqueItems": true
65800        },
65801        {
65802          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65803          "in": "query",
65804          "name": "timeoutSeconds",
65805          "type": "integer",
65806          "uniqueItems": true
65807        },
65808        {
65809          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65810          "in": "query",
65811          "name": "watch",
65812          "type": "boolean",
65813          "uniqueItems": true
65814        }
65815      ]
65816    },
65817    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases/{name}": {
65818      "get": {
65819        "consumes": [
65820          "*/*"
65821        ],
65822        "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.",
65823        "operationId": "watchCoordinationV1NamespacedLease",
65824        "produces": [
65825          "application/json",
65826          "application/yaml",
65827          "application/vnd.kubernetes.protobuf",
65828          "application/json;stream=watch",
65829          "application/vnd.kubernetes.protobuf;stream=watch"
65830        ],
65831        "responses": {
65832          "200": {
65833            "description": "OK",
65834            "schema": {
65835              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65836            }
65837          },
65838          "401": {
65839            "description": "Unauthorized"
65840          }
65841        },
65842        "schemes": [
65843          "https"
65844        ],
65845        "tags": [
65846          "coordination_v1"
65847        ],
65848        "x-kubernetes-action": "watch",
65849        "x-kubernetes-group-version-kind": {
65850          "group": "coordination.k8s.io",
65851          "kind": "Lease",
65852          "version": "v1"
65853        }
65854      },
65855      "parameters": [
65856        {
65857          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65858          "in": "query",
65859          "name": "allowWatchBookmarks",
65860          "type": "boolean",
65861          "uniqueItems": true
65862        },
65863        {
65864          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65865          "in": "query",
65866          "name": "continue",
65867          "type": "string",
65868          "uniqueItems": true
65869        },
65870        {
65871          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65872          "in": "query",
65873          "name": "fieldSelector",
65874          "type": "string",
65875          "uniqueItems": true
65876        },
65877        {
65878          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65879          "in": "query",
65880          "name": "labelSelector",
65881          "type": "string",
65882          "uniqueItems": true
65883        },
65884        {
65885          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65886          "in": "query",
65887          "name": "limit",
65888          "type": "integer",
65889          "uniqueItems": true
65890        },
65891        {
65892          "description": "name of the Lease",
65893          "in": "path",
65894          "name": "name",
65895          "required": true,
65896          "type": "string",
65897          "uniqueItems": true
65898        },
65899        {
65900          "description": "object name and auth scope, such as for teams and projects",
65901          "in": "path",
65902          "name": "namespace",
65903          "required": true,
65904          "type": "string",
65905          "uniqueItems": true
65906        },
65907        {
65908          "description": "If 'true', then the output is pretty printed.",
65909          "in": "query",
65910          "name": "pretty",
65911          "type": "string",
65912          "uniqueItems": true
65913        },
65914        {
65915          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65916          "in": "query",
65917          "name": "resourceVersion",
65918          "type": "string",
65919          "uniqueItems": true
65920        },
65921        {
65922          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65923          "in": "query",
65924          "name": "resourceVersionMatch",
65925          "type": "string",
65926          "uniqueItems": true
65927        },
65928        {
65929          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65930          "in": "query",
65931          "name": "timeoutSeconds",
65932          "type": "integer",
65933          "uniqueItems": true
65934        },
65935        {
65936          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65937          "in": "query",
65938          "name": "watch",
65939          "type": "boolean",
65940          "uniqueItems": true
65941        }
65942      ]
65943    },
65944    "/apis/coordination.k8s.io/v1beta1/": {
65945      "get": {
65946        "consumes": [
65947          "application/json",
65948          "application/yaml",
65949          "application/vnd.kubernetes.protobuf"
65950        ],
65951        "description": "get available resources",
65952        "operationId": "getCoordinationV1beta1APIResources",
65953        "produces": [
65954          "application/json",
65955          "application/yaml",
65956          "application/vnd.kubernetes.protobuf"
65957        ],
65958        "responses": {
65959          "200": {
65960            "description": "OK",
65961            "schema": {
65962              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
65963            }
65964          },
65965          "401": {
65966            "description": "Unauthorized"
65967          }
65968        },
65969        "schemes": [
65970          "https"
65971        ],
65972        "tags": [
65973          "coordination_v1beta1"
65974        ]
65975      }
65976    },
65977    "/apis/coordination.k8s.io/v1beta1/leases": {
65978      "get": {
65979        "consumes": [
65980          "*/*"
65981        ],
65982        "description": "list or watch objects of kind Lease",
65983        "operationId": "listCoordinationV1beta1LeaseForAllNamespaces",
65984        "produces": [
65985          "application/json",
65986          "application/yaml",
65987          "application/vnd.kubernetes.protobuf",
65988          "application/json;stream=watch",
65989          "application/vnd.kubernetes.protobuf;stream=watch"
65990        ],
65991        "responses": {
65992          "200": {
65993            "description": "OK",
65994            "schema": {
65995              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseList"
65996            }
65997          },
65998          "401": {
65999            "description": "Unauthorized"
66000          }
66001        },
66002        "schemes": [
66003          "https"
66004        ],
66005        "tags": [
66006          "coordination_v1beta1"
66007        ],
66008        "x-kubernetes-action": "list",
66009        "x-kubernetes-group-version-kind": {
66010          "group": "coordination.k8s.io",
66011          "kind": "Lease",
66012          "version": "v1beta1"
66013        }
66014      },
66015      "parameters": [
66016        {
66017          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66018          "in": "query",
66019          "name": "allowWatchBookmarks",
66020          "type": "boolean",
66021          "uniqueItems": true
66022        },
66023        {
66024          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66025          "in": "query",
66026          "name": "continue",
66027          "type": "string",
66028          "uniqueItems": true
66029        },
66030        {
66031          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66032          "in": "query",
66033          "name": "fieldSelector",
66034          "type": "string",
66035          "uniqueItems": true
66036        },
66037        {
66038          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66039          "in": "query",
66040          "name": "labelSelector",
66041          "type": "string",
66042          "uniqueItems": true
66043        },
66044        {
66045          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66046          "in": "query",
66047          "name": "limit",
66048          "type": "integer",
66049          "uniqueItems": true
66050        },
66051        {
66052          "description": "If 'true', then the output is pretty printed.",
66053          "in": "query",
66054          "name": "pretty",
66055          "type": "string",
66056          "uniqueItems": true
66057        },
66058        {
66059          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66060          "in": "query",
66061          "name": "resourceVersion",
66062          "type": "string",
66063          "uniqueItems": true
66064        },
66065        {
66066          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66067          "in": "query",
66068          "name": "resourceVersionMatch",
66069          "type": "string",
66070          "uniqueItems": true
66071        },
66072        {
66073          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66074          "in": "query",
66075          "name": "timeoutSeconds",
66076          "type": "integer",
66077          "uniqueItems": true
66078        },
66079        {
66080          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66081          "in": "query",
66082          "name": "watch",
66083          "type": "boolean",
66084          "uniqueItems": true
66085        }
66086      ]
66087    },
66088    "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases": {
66089      "delete": {
66090        "consumes": [
66091          "*/*"
66092        ],
66093        "description": "delete collection of Lease",
66094        "operationId": "deleteCoordinationV1beta1CollectionNamespacedLease",
66095        "parameters": [
66096          {
66097            "in": "body",
66098            "name": "body",
66099            "schema": {
66100              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66101            }
66102          },
66103          {
66104            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66105            "in": "query",
66106            "name": "continue",
66107            "type": "string",
66108            "uniqueItems": true
66109          },
66110          {
66111            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66112            "in": "query",
66113            "name": "dryRun",
66114            "type": "string",
66115            "uniqueItems": true
66116          },
66117          {
66118            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66119            "in": "query",
66120            "name": "fieldSelector",
66121            "type": "string",
66122            "uniqueItems": true
66123          },
66124          {
66125            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
66126            "in": "query",
66127            "name": "gracePeriodSeconds",
66128            "type": "integer",
66129            "uniqueItems": true
66130          },
66131          {
66132            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66133            "in": "query",
66134            "name": "labelSelector",
66135            "type": "string",
66136            "uniqueItems": true
66137          },
66138          {
66139            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66140            "in": "query",
66141            "name": "limit",
66142            "type": "integer",
66143            "uniqueItems": true
66144          },
66145          {
66146            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
66147            "in": "query",
66148            "name": "orphanDependents",
66149            "type": "boolean",
66150            "uniqueItems": true
66151          },
66152          {
66153            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
66154            "in": "query",
66155            "name": "propagationPolicy",
66156            "type": "string",
66157            "uniqueItems": true
66158          },
66159          {
66160            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66161            "in": "query",
66162            "name": "resourceVersion",
66163            "type": "string",
66164            "uniqueItems": true
66165          },
66166          {
66167            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66168            "in": "query",
66169            "name": "resourceVersionMatch",
66170            "type": "string",
66171            "uniqueItems": true
66172          },
66173          {
66174            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66175            "in": "query",
66176            "name": "timeoutSeconds",
66177            "type": "integer",
66178            "uniqueItems": true
66179          }
66180        ],
66181        "produces": [
66182          "application/json",
66183          "application/yaml",
66184          "application/vnd.kubernetes.protobuf"
66185        ],
66186        "responses": {
66187          "200": {
66188            "description": "OK",
66189            "schema": {
66190              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66191            }
66192          },
66193          "401": {
66194            "description": "Unauthorized"
66195          }
66196        },
66197        "schemes": [
66198          "https"
66199        ],
66200        "tags": [
66201          "coordination_v1beta1"
66202        ],
66203        "x-kubernetes-action": "deletecollection",
66204        "x-kubernetes-group-version-kind": {
66205          "group": "coordination.k8s.io",
66206          "kind": "Lease",
66207          "version": "v1beta1"
66208        }
66209      },
66210      "get": {
66211        "consumes": [
66212          "*/*"
66213        ],
66214        "description": "list or watch objects of kind Lease",
66215        "operationId": "listCoordinationV1beta1NamespacedLease",
66216        "parameters": [
66217          {
66218            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66219            "in": "query",
66220            "name": "allowWatchBookmarks",
66221            "type": "boolean",
66222            "uniqueItems": true
66223          },
66224          {
66225            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66226            "in": "query",
66227            "name": "continue",
66228            "type": "string",
66229            "uniqueItems": true
66230          },
66231          {
66232            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66233            "in": "query",
66234            "name": "fieldSelector",
66235            "type": "string",
66236            "uniqueItems": true
66237          },
66238          {
66239            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66240            "in": "query",
66241            "name": "labelSelector",
66242            "type": "string",
66243            "uniqueItems": true
66244          },
66245          {
66246            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66247            "in": "query",
66248            "name": "limit",
66249            "type": "integer",
66250            "uniqueItems": true
66251          },
66252          {
66253            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66254            "in": "query",
66255            "name": "resourceVersion",
66256            "type": "string",
66257            "uniqueItems": true
66258          },
66259          {
66260            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66261            "in": "query",
66262            "name": "resourceVersionMatch",
66263            "type": "string",
66264            "uniqueItems": true
66265          },
66266          {
66267            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66268            "in": "query",
66269            "name": "timeoutSeconds",
66270            "type": "integer",
66271            "uniqueItems": true
66272          },
66273          {
66274            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66275            "in": "query",
66276            "name": "watch",
66277            "type": "boolean",
66278            "uniqueItems": true
66279          }
66280        ],
66281        "produces": [
66282          "application/json",
66283          "application/yaml",
66284          "application/vnd.kubernetes.protobuf",
66285          "application/json;stream=watch",
66286          "application/vnd.kubernetes.protobuf;stream=watch"
66287        ],
66288        "responses": {
66289          "200": {
66290            "description": "OK",
66291            "schema": {
66292              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseList"
66293            }
66294          },
66295          "401": {
66296            "description": "Unauthorized"
66297          }
66298        },
66299        "schemes": [
66300          "https"
66301        ],
66302        "tags": [
66303          "coordination_v1beta1"
66304        ],
66305        "x-kubernetes-action": "list",
66306        "x-kubernetes-group-version-kind": {
66307          "group": "coordination.k8s.io",
66308          "kind": "Lease",
66309          "version": "v1beta1"
66310        }
66311      },
66312      "parameters": [
66313        {
66314          "description": "object name and auth scope, such as for teams and projects",
66315          "in": "path",
66316          "name": "namespace",
66317          "required": true,
66318          "type": "string",
66319          "uniqueItems": true
66320        },
66321        {
66322          "description": "If 'true', then the output is pretty printed.",
66323          "in": "query",
66324          "name": "pretty",
66325          "type": "string",
66326          "uniqueItems": true
66327        }
66328      ],
66329      "post": {
66330        "consumes": [
66331          "*/*"
66332        ],
66333        "description": "create a Lease",
66334        "operationId": "createCoordinationV1beta1NamespacedLease",
66335        "parameters": [
66336          {
66337            "in": "body",
66338            "name": "body",
66339            "required": true,
66340            "schema": {
66341              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66342            }
66343          },
66344          {
66345            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66346            "in": "query",
66347            "name": "dryRun",
66348            "type": "string",
66349            "uniqueItems": true
66350          },
66351          {
66352            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66353            "in": "query",
66354            "name": "fieldManager",
66355            "type": "string",
66356            "uniqueItems": true
66357          }
66358        ],
66359        "produces": [
66360          "application/json",
66361          "application/yaml",
66362          "application/vnd.kubernetes.protobuf"
66363        ],
66364        "responses": {
66365          "200": {
66366            "description": "OK",
66367            "schema": {
66368              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66369            }
66370          },
66371          "201": {
66372            "description": "Created",
66373            "schema": {
66374              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66375            }
66376          },
66377          "202": {
66378            "description": "Accepted",
66379            "schema": {
66380              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66381            }
66382          },
66383          "401": {
66384            "description": "Unauthorized"
66385          }
66386        },
66387        "schemes": [
66388          "https"
66389        ],
66390        "tags": [
66391          "coordination_v1beta1"
66392        ],
66393        "x-kubernetes-action": "post",
66394        "x-kubernetes-group-version-kind": {
66395          "group": "coordination.k8s.io",
66396          "kind": "Lease",
66397          "version": "v1beta1"
66398        }
66399      }
66400    },
66401    "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}": {
66402      "delete": {
66403        "consumes": [
66404          "*/*"
66405        ],
66406        "description": "delete a Lease",
66407        "operationId": "deleteCoordinationV1beta1NamespacedLease",
66408        "parameters": [
66409          {
66410            "in": "body",
66411            "name": "body",
66412            "schema": {
66413              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66414            }
66415          },
66416          {
66417            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66418            "in": "query",
66419            "name": "dryRun",
66420            "type": "string",
66421            "uniqueItems": true
66422          },
66423          {
66424            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
66425            "in": "query",
66426            "name": "gracePeriodSeconds",
66427            "type": "integer",
66428            "uniqueItems": true
66429          },
66430          {
66431            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
66432            "in": "query",
66433            "name": "orphanDependents",
66434            "type": "boolean",
66435            "uniqueItems": true
66436          },
66437          {
66438            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
66439            "in": "query",
66440            "name": "propagationPolicy",
66441            "type": "string",
66442            "uniqueItems": true
66443          }
66444        ],
66445        "produces": [
66446          "application/json",
66447          "application/yaml",
66448          "application/vnd.kubernetes.protobuf"
66449        ],
66450        "responses": {
66451          "200": {
66452            "description": "OK",
66453            "schema": {
66454              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66455            }
66456          },
66457          "202": {
66458            "description": "Accepted",
66459            "schema": {
66460              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66461            }
66462          },
66463          "401": {
66464            "description": "Unauthorized"
66465          }
66466        },
66467        "schemes": [
66468          "https"
66469        ],
66470        "tags": [
66471          "coordination_v1beta1"
66472        ],
66473        "x-kubernetes-action": "delete",
66474        "x-kubernetes-group-version-kind": {
66475          "group": "coordination.k8s.io",
66476          "kind": "Lease",
66477          "version": "v1beta1"
66478        }
66479      },
66480      "get": {
66481        "consumes": [
66482          "*/*"
66483        ],
66484        "description": "read the specified Lease",
66485        "operationId": "readCoordinationV1beta1NamespacedLease",
66486        "produces": [
66487          "application/json",
66488          "application/yaml",
66489          "application/vnd.kubernetes.protobuf"
66490        ],
66491        "responses": {
66492          "200": {
66493            "description": "OK",
66494            "schema": {
66495              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66496            }
66497          },
66498          "401": {
66499            "description": "Unauthorized"
66500          }
66501        },
66502        "schemes": [
66503          "https"
66504        ],
66505        "tags": [
66506          "coordination_v1beta1"
66507        ],
66508        "x-kubernetes-action": "get",
66509        "x-kubernetes-group-version-kind": {
66510          "group": "coordination.k8s.io",
66511          "kind": "Lease",
66512          "version": "v1beta1"
66513        }
66514      },
66515      "parameters": [
66516        {
66517          "description": "name of the Lease",
66518          "in": "path",
66519          "name": "name",
66520          "required": true,
66521          "type": "string",
66522          "uniqueItems": true
66523        },
66524        {
66525          "description": "object name and auth scope, such as for teams and projects",
66526          "in": "path",
66527          "name": "namespace",
66528          "required": true,
66529          "type": "string",
66530          "uniqueItems": true
66531        },
66532        {
66533          "description": "If 'true', then the output is pretty printed.",
66534          "in": "query",
66535          "name": "pretty",
66536          "type": "string",
66537          "uniqueItems": true
66538        }
66539      ],
66540      "patch": {
66541        "consumes": [
66542          "application/json-patch+json",
66543          "application/merge-patch+json",
66544          "application/strategic-merge-patch+json",
66545          "application/apply-patch+yaml"
66546        ],
66547        "description": "partially update the specified Lease",
66548        "operationId": "patchCoordinationV1beta1NamespacedLease",
66549        "parameters": [
66550          {
66551            "in": "body",
66552            "name": "body",
66553            "required": true,
66554            "schema": {
66555              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
66556            }
66557          },
66558          {
66559            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66560            "in": "query",
66561            "name": "dryRun",
66562            "type": "string",
66563            "uniqueItems": true
66564          },
66565          {
66566            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
66567            "in": "query",
66568            "name": "fieldManager",
66569            "type": "string",
66570            "uniqueItems": true
66571          },
66572          {
66573            "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.",
66574            "in": "query",
66575            "name": "force",
66576            "type": "boolean",
66577            "uniqueItems": true
66578          }
66579        ],
66580        "produces": [
66581          "application/json",
66582          "application/yaml",
66583          "application/vnd.kubernetes.protobuf"
66584        ],
66585        "responses": {
66586          "200": {
66587            "description": "OK",
66588            "schema": {
66589              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66590            }
66591          },
66592          "401": {
66593            "description": "Unauthorized"
66594          }
66595        },
66596        "schemes": [
66597          "https"
66598        ],
66599        "tags": [
66600          "coordination_v1beta1"
66601        ],
66602        "x-kubernetes-action": "patch",
66603        "x-kubernetes-group-version-kind": {
66604          "group": "coordination.k8s.io",
66605          "kind": "Lease",
66606          "version": "v1beta1"
66607        }
66608      },
66609      "put": {
66610        "consumes": [
66611          "*/*"
66612        ],
66613        "description": "replace the specified Lease",
66614        "operationId": "replaceCoordinationV1beta1NamespacedLease",
66615        "parameters": [
66616          {
66617            "in": "body",
66618            "name": "body",
66619            "required": true,
66620            "schema": {
66621              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66622            }
66623          },
66624          {
66625            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66626            "in": "query",
66627            "name": "dryRun",
66628            "type": "string",
66629            "uniqueItems": true
66630          },
66631          {
66632            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66633            "in": "query",
66634            "name": "fieldManager",
66635            "type": "string",
66636            "uniqueItems": true
66637          }
66638        ],
66639        "produces": [
66640          "application/json",
66641          "application/yaml",
66642          "application/vnd.kubernetes.protobuf"
66643        ],
66644        "responses": {
66645          "200": {
66646            "description": "OK",
66647            "schema": {
66648              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66649            }
66650          },
66651          "201": {
66652            "description": "Created",
66653            "schema": {
66654              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66655            }
66656          },
66657          "401": {
66658            "description": "Unauthorized"
66659          }
66660        },
66661        "schemes": [
66662          "https"
66663        ],
66664        "tags": [
66665          "coordination_v1beta1"
66666        ],
66667        "x-kubernetes-action": "put",
66668        "x-kubernetes-group-version-kind": {
66669          "group": "coordination.k8s.io",
66670          "kind": "Lease",
66671          "version": "v1beta1"
66672        }
66673      }
66674    },
66675    "/apis/coordination.k8s.io/v1beta1/watch/leases": {
66676      "get": {
66677        "consumes": [
66678          "*/*"
66679        ],
66680        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
66681        "operationId": "watchCoordinationV1beta1LeaseListForAllNamespaces",
66682        "produces": [
66683          "application/json",
66684          "application/yaml",
66685          "application/vnd.kubernetes.protobuf",
66686          "application/json;stream=watch",
66687          "application/vnd.kubernetes.protobuf;stream=watch"
66688        ],
66689        "responses": {
66690          "200": {
66691            "description": "OK",
66692            "schema": {
66693              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66694            }
66695          },
66696          "401": {
66697            "description": "Unauthorized"
66698          }
66699        },
66700        "schemes": [
66701          "https"
66702        ],
66703        "tags": [
66704          "coordination_v1beta1"
66705        ],
66706        "x-kubernetes-action": "watchlist",
66707        "x-kubernetes-group-version-kind": {
66708          "group": "coordination.k8s.io",
66709          "kind": "Lease",
66710          "version": "v1beta1"
66711        }
66712      },
66713      "parameters": [
66714        {
66715          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66716          "in": "query",
66717          "name": "allowWatchBookmarks",
66718          "type": "boolean",
66719          "uniqueItems": true
66720        },
66721        {
66722          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66723          "in": "query",
66724          "name": "continue",
66725          "type": "string",
66726          "uniqueItems": true
66727        },
66728        {
66729          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66730          "in": "query",
66731          "name": "fieldSelector",
66732          "type": "string",
66733          "uniqueItems": true
66734        },
66735        {
66736          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66737          "in": "query",
66738          "name": "labelSelector",
66739          "type": "string",
66740          "uniqueItems": true
66741        },
66742        {
66743          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66744          "in": "query",
66745          "name": "limit",
66746          "type": "integer",
66747          "uniqueItems": true
66748        },
66749        {
66750          "description": "If 'true', then the output is pretty printed.",
66751          "in": "query",
66752          "name": "pretty",
66753          "type": "string",
66754          "uniqueItems": true
66755        },
66756        {
66757          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66758          "in": "query",
66759          "name": "resourceVersion",
66760          "type": "string",
66761          "uniqueItems": true
66762        },
66763        {
66764          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66765          "in": "query",
66766          "name": "resourceVersionMatch",
66767          "type": "string",
66768          "uniqueItems": true
66769        },
66770        {
66771          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66772          "in": "query",
66773          "name": "timeoutSeconds",
66774          "type": "integer",
66775          "uniqueItems": true
66776        },
66777        {
66778          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66779          "in": "query",
66780          "name": "watch",
66781          "type": "boolean",
66782          "uniqueItems": true
66783        }
66784      ]
66785    },
66786    "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases": {
66787      "get": {
66788        "consumes": [
66789          "*/*"
66790        ],
66791        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
66792        "operationId": "watchCoordinationV1beta1NamespacedLeaseList",
66793        "produces": [
66794          "application/json",
66795          "application/yaml",
66796          "application/vnd.kubernetes.protobuf",
66797          "application/json;stream=watch",
66798          "application/vnd.kubernetes.protobuf;stream=watch"
66799        ],
66800        "responses": {
66801          "200": {
66802            "description": "OK",
66803            "schema": {
66804              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66805            }
66806          },
66807          "401": {
66808            "description": "Unauthorized"
66809          }
66810        },
66811        "schemes": [
66812          "https"
66813        ],
66814        "tags": [
66815          "coordination_v1beta1"
66816        ],
66817        "x-kubernetes-action": "watchlist",
66818        "x-kubernetes-group-version-kind": {
66819          "group": "coordination.k8s.io",
66820          "kind": "Lease",
66821          "version": "v1beta1"
66822        }
66823      },
66824      "parameters": [
66825        {
66826          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66827          "in": "query",
66828          "name": "allowWatchBookmarks",
66829          "type": "boolean",
66830          "uniqueItems": true
66831        },
66832        {
66833          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66834          "in": "query",
66835          "name": "continue",
66836          "type": "string",
66837          "uniqueItems": true
66838        },
66839        {
66840          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66841          "in": "query",
66842          "name": "fieldSelector",
66843          "type": "string",
66844          "uniqueItems": true
66845        },
66846        {
66847          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66848          "in": "query",
66849          "name": "labelSelector",
66850          "type": "string",
66851          "uniqueItems": true
66852        },
66853        {
66854          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66855          "in": "query",
66856          "name": "limit",
66857          "type": "integer",
66858          "uniqueItems": true
66859        },
66860        {
66861          "description": "object name and auth scope, such as for teams and projects",
66862          "in": "path",
66863          "name": "namespace",
66864          "required": true,
66865          "type": "string",
66866          "uniqueItems": true
66867        },
66868        {
66869          "description": "If 'true', then the output is pretty printed.",
66870          "in": "query",
66871          "name": "pretty",
66872          "type": "string",
66873          "uniqueItems": true
66874        },
66875        {
66876          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66877          "in": "query",
66878          "name": "resourceVersion",
66879          "type": "string",
66880          "uniqueItems": true
66881        },
66882        {
66883          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66884          "in": "query",
66885          "name": "resourceVersionMatch",
66886          "type": "string",
66887          "uniqueItems": true
66888        },
66889        {
66890          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66891          "in": "query",
66892          "name": "timeoutSeconds",
66893          "type": "integer",
66894          "uniqueItems": true
66895        },
66896        {
66897          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66898          "in": "query",
66899          "name": "watch",
66900          "type": "boolean",
66901          "uniqueItems": true
66902        }
66903      ]
66904    },
66905    "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases/{name}": {
66906      "get": {
66907        "consumes": [
66908          "*/*"
66909        ],
66910        "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.",
66911        "operationId": "watchCoordinationV1beta1NamespacedLease",
66912        "produces": [
66913          "application/json",
66914          "application/yaml",
66915          "application/vnd.kubernetes.protobuf",
66916          "application/json;stream=watch",
66917          "application/vnd.kubernetes.protobuf;stream=watch"
66918        ],
66919        "responses": {
66920          "200": {
66921            "description": "OK",
66922            "schema": {
66923              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66924            }
66925          },
66926          "401": {
66927            "description": "Unauthorized"
66928          }
66929        },
66930        "schemes": [
66931          "https"
66932        ],
66933        "tags": [
66934          "coordination_v1beta1"
66935        ],
66936        "x-kubernetes-action": "watch",
66937        "x-kubernetes-group-version-kind": {
66938          "group": "coordination.k8s.io",
66939          "kind": "Lease",
66940          "version": "v1beta1"
66941        }
66942      },
66943      "parameters": [
66944        {
66945          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66946          "in": "query",
66947          "name": "allowWatchBookmarks",
66948          "type": "boolean",
66949          "uniqueItems": true
66950        },
66951        {
66952          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66953          "in": "query",
66954          "name": "continue",
66955          "type": "string",
66956          "uniqueItems": true
66957        },
66958        {
66959          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66960          "in": "query",
66961          "name": "fieldSelector",
66962          "type": "string",
66963          "uniqueItems": true
66964        },
66965        {
66966          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66967          "in": "query",
66968          "name": "labelSelector",
66969          "type": "string",
66970          "uniqueItems": true
66971        },
66972        {
66973          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66974          "in": "query",
66975          "name": "limit",
66976          "type": "integer",
66977          "uniqueItems": true
66978        },
66979        {
66980          "description": "name of the Lease",
66981          "in": "path",
66982          "name": "name",
66983          "required": true,
66984          "type": "string",
66985          "uniqueItems": true
66986        },
66987        {
66988          "description": "object name and auth scope, such as for teams and projects",
66989          "in": "path",
66990          "name": "namespace",
66991          "required": true,
66992          "type": "string",
66993          "uniqueItems": true
66994        },
66995        {
66996          "description": "If 'true', then the output is pretty printed.",
66997          "in": "query",
66998          "name": "pretty",
66999          "type": "string",
67000          "uniqueItems": true
67001        },
67002        {
67003          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67004          "in": "query",
67005          "name": "resourceVersion",
67006          "type": "string",
67007          "uniqueItems": true
67008        },
67009        {
67010          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67011          "in": "query",
67012          "name": "resourceVersionMatch",
67013          "type": "string",
67014          "uniqueItems": true
67015        },
67016        {
67017          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67018          "in": "query",
67019          "name": "timeoutSeconds",
67020          "type": "integer",
67021          "uniqueItems": true
67022        },
67023        {
67024          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67025          "in": "query",
67026          "name": "watch",
67027          "type": "boolean",
67028          "uniqueItems": true
67029        }
67030      ]
67031    },
67032    "/apis/discovery.k8s.io/": {
67033      "get": {
67034        "consumes": [
67035          "application/json",
67036          "application/yaml",
67037          "application/vnd.kubernetes.protobuf"
67038        ],
67039        "description": "get information of a group",
67040        "operationId": "getDiscoveryAPIGroup",
67041        "produces": [
67042          "application/json",
67043          "application/yaml",
67044          "application/vnd.kubernetes.protobuf"
67045        ],
67046        "responses": {
67047          "200": {
67048            "description": "OK",
67049            "schema": {
67050              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
67051            }
67052          },
67053          "401": {
67054            "description": "Unauthorized"
67055          }
67056        },
67057        "schemes": [
67058          "https"
67059        ],
67060        "tags": [
67061          "discovery"
67062        ]
67063      }
67064    },
67065    "/apis/discovery.k8s.io/v1beta1/": {
67066      "get": {
67067        "consumes": [
67068          "application/json",
67069          "application/yaml",
67070          "application/vnd.kubernetes.protobuf"
67071        ],
67072        "description": "get available resources",
67073        "operationId": "getDiscoveryV1beta1APIResources",
67074        "produces": [
67075          "application/json",
67076          "application/yaml",
67077          "application/vnd.kubernetes.protobuf"
67078        ],
67079        "responses": {
67080          "200": {
67081            "description": "OK",
67082            "schema": {
67083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
67084            }
67085          },
67086          "401": {
67087            "description": "Unauthorized"
67088          }
67089        },
67090        "schemes": [
67091          "https"
67092        ],
67093        "tags": [
67094          "discovery_v1beta1"
67095        ]
67096      }
67097    },
67098    "/apis/discovery.k8s.io/v1beta1/endpointslices": {
67099      "get": {
67100        "consumes": [
67101          "*/*"
67102        ],
67103        "description": "list or watch objects of kind EndpointSlice",
67104        "operationId": "listDiscoveryV1beta1EndpointSliceForAllNamespaces",
67105        "produces": [
67106          "application/json",
67107          "application/yaml",
67108          "application/vnd.kubernetes.protobuf",
67109          "application/json;stream=watch",
67110          "application/vnd.kubernetes.protobuf;stream=watch"
67111        ],
67112        "responses": {
67113          "200": {
67114            "description": "OK",
67115            "schema": {
67116              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSliceList"
67117            }
67118          },
67119          "401": {
67120            "description": "Unauthorized"
67121          }
67122        },
67123        "schemes": [
67124          "https"
67125        ],
67126        "tags": [
67127          "discovery_v1beta1"
67128        ],
67129        "x-kubernetes-action": "list",
67130        "x-kubernetes-group-version-kind": {
67131          "group": "discovery.k8s.io",
67132          "kind": "EndpointSlice",
67133          "version": "v1beta1"
67134        }
67135      },
67136      "parameters": [
67137        {
67138          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67139          "in": "query",
67140          "name": "allowWatchBookmarks",
67141          "type": "boolean",
67142          "uniqueItems": true
67143        },
67144        {
67145          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67146          "in": "query",
67147          "name": "continue",
67148          "type": "string",
67149          "uniqueItems": true
67150        },
67151        {
67152          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67153          "in": "query",
67154          "name": "fieldSelector",
67155          "type": "string",
67156          "uniqueItems": true
67157        },
67158        {
67159          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67160          "in": "query",
67161          "name": "labelSelector",
67162          "type": "string",
67163          "uniqueItems": true
67164        },
67165        {
67166          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67167          "in": "query",
67168          "name": "limit",
67169          "type": "integer",
67170          "uniqueItems": true
67171        },
67172        {
67173          "description": "If 'true', then the output is pretty printed.",
67174          "in": "query",
67175          "name": "pretty",
67176          "type": "string",
67177          "uniqueItems": true
67178        },
67179        {
67180          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67181          "in": "query",
67182          "name": "resourceVersion",
67183          "type": "string",
67184          "uniqueItems": true
67185        },
67186        {
67187          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67188          "in": "query",
67189          "name": "resourceVersionMatch",
67190          "type": "string",
67191          "uniqueItems": true
67192        },
67193        {
67194          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67195          "in": "query",
67196          "name": "timeoutSeconds",
67197          "type": "integer",
67198          "uniqueItems": true
67199        },
67200        {
67201          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67202          "in": "query",
67203          "name": "watch",
67204          "type": "boolean",
67205          "uniqueItems": true
67206        }
67207      ]
67208    },
67209    "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices": {
67210      "delete": {
67211        "consumes": [
67212          "*/*"
67213        ],
67214        "description": "delete collection of EndpointSlice",
67215        "operationId": "deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice",
67216        "parameters": [
67217          {
67218            "in": "body",
67219            "name": "body",
67220            "schema": {
67221              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
67222            }
67223          },
67224          {
67225            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67226            "in": "query",
67227            "name": "continue",
67228            "type": "string",
67229            "uniqueItems": true
67230          },
67231          {
67232            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67233            "in": "query",
67234            "name": "dryRun",
67235            "type": "string",
67236            "uniqueItems": true
67237          },
67238          {
67239            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67240            "in": "query",
67241            "name": "fieldSelector",
67242            "type": "string",
67243            "uniqueItems": true
67244          },
67245          {
67246            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
67247            "in": "query",
67248            "name": "gracePeriodSeconds",
67249            "type": "integer",
67250            "uniqueItems": true
67251          },
67252          {
67253            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67254            "in": "query",
67255            "name": "labelSelector",
67256            "type": "string",
67257            "uniqueItems": true
67258          },
67259          {
67260            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67261            "in": "query",
67262            "name": "limit",
67263            "type": "integer",
67264            "uniqueItems": true
67265          },
67266          {
67267            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
67268            "in": "query",
67269            "name": "orphanDependents",
67270            "type": "boolean",
67271            "uniqueItems": true
67272          },
67273          {
67274            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
67275            "in": "query",
67276            "name": "propagationPolicy",
67277            "type": "string",
67278            "uniqueItems": true
67279          },
67280          {
67281            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67282            "in": "query",
67283            "name": "resourceVersion",
67284            "type": "string",
67285            "uniqueItems": true
67286          },
67287          {
67288            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67289            "in": "query",
67290            "name": "resourceVersionMatch",
67291            "type": "string",
67292            "uniqueItems": true
67293          },
67294          {
67295            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67296            "in": "query",
67297            "name": "timeoutSeconds",
67298            "type": "integer",
67299            "uniqueItems": true
67300          }
67301        ],
67302        "produces": [
67303          "application/json",
67304          "application/yaml",
67305          "application/vnd.kubernetes.protobuf"
67306        ],
67307        "responses": {
67308          "200": {
67309            "description": "OK",
67310            "schema": {
67311              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67312            }
67313          },
67314          "401": {
67315            "description": "Unauthorized"
67316          }
67317        },
67318        "schemes": [
67319          "https"
67320        ],
67321        "tags": [
67322          "discovery_v1beta1"
67323        ],
67324        "x-kubernetes-action": "deletecollection",
67325        "x-kubernetes-group-version-kind": {
67326          "group": "discovery.k8s.io",
67327          "kind": "EndpointSlice",
67328          "version": "v1beta1"
67329        }
67330      },
67331      "get": {
67332        "consumes": [
67333          "*/*"
67334        ],
67335        "description": "list or watch objects of kind EndpointSlice",
67336        "operationId": "listDiscoveryV1beta1NamespacedEndpointSlice",
67337        "parameters": [
67338          {
67339            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67340            "in": "query",
67341            "name": "allowWatchBookmarks",
67342            "type": "boolean",
67343            "uniqueItems": true
67344          },
67345          {
67346            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67347            "in": "query",
67348            "name": "continue",
67349            "type": "string",
67350            "uniqueItems": true
67351          },
67352          {
67353            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67354            "in": "query",
67355            "name": "fieldSelector",
67356            "type": "string",
67357            "uniqueItems": true
67358          },
67359          {
67360            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67361            "in": "query",
67362            "name": "labelSelector",
67363            "type": "string",
67364            "uniqueItems": true
67365          },
67366          {
67367            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67368            "in": "query",
67369            "name": "limit",
67370            "type": "integer",
67371            "uniqueItems": true
67372          },
67373          {
67374            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67375            "in": "query",
67376            "name": "resourceVersion",
67377            "type": "string",
67378            "uniqueItems": true
67379          },
67380          {
67381            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67382            "in": "query",
67383            "name": "resourceVersionMatch",
67384            "type": "string",
67385            "uniqueItems": true
67386          },
67387          {
67388            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67389            "in": "query",
67390            "name": "timeoutSeconds",
67391            "type": "integer",
67392            "uniqueItems": true
67393          },
67394          {
67395            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67396            "in": "query",
67397            "name": "watch",
67398            "type": "boolean",
67399            "uniqueItems": true
67400          }
67401        ],
67402        "produces": [
67403          "application/json",
67404          "application/yaml",
67405          "application/vnd.kubernetes.protobuf",
67406          "application/json;stream=watch",
67407          "application/vnd.kubernetes.protobuf;stream=watch"
67408        ],
67409        "responses": {
67410          "200": {
67411            "description": "OK",
67412            "schema": {
67413              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSliceList"
67414            }
67415          },
67416          "401": {
67417            "description": "Unauthorized"
67418          }
67419        },
67420        "schemes": [
67421          "https"
67422        ],
67423        "tags": [
67424          "discovery_v1beta1"
67425        ],
67426        "x-kubernetes-action": "list",
67427        "x-kubernetes-group-version-kind": {
67428          "group": "discovery.k8s.io",
67429          "kind": "EndpointSlice",
67430          "version": "v1beta1"
67431        }
67432      },
67433      "parameters": [
67434        {
67435          "description": "object name and auth scope, such as for teams and projects",
67436          "in": "path",
67437          "name": "namespace",
67438          "required": true,
67439          "type": "string",
67440          "uniqueItems": true
67441        },
67442        {
67443          "description": "If 'true', then the output is pretty printed.",
67444          "in": "query",
67445          "name": "pretty",
67446          "type": "string",
67447          "uniqueItems": true
67448        }
67449      ],
67450      "post": {
67451        "consumes": [
67452          "*/*"
67453        ],
67454        "description": "create an EndpointSlice",
67455        "operationId": "createDiscoveryV1beta1NamespacedEndpointSlice",
67456        "parameters": [
67457          {
67458            "in": "body",
67459            "name": "body",
67460            "required": true,
67461            "schema": {
67462              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67463            }
67464          },
67465          {
67466            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67467            "in": "query",
67468            "name": "dryRun",
67469            "type": "string",
67470            "uniqueItems": true
67471          },
67472          {
67473            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67474            "in": "query",
67475            "name": "fieldManager",
67476            "type": "string",
67477            "uniqueItems": true
67478          }
67479        ],
67480        "produces": [
67481          "application/json",
67482          "application/yaml",
67483          "application/vnd.kubernetes.protobuf"
67484        ],
67485        "responses": {
67486          "200": {
67487            "description": "OK",
67488            "schema": {
67489              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67490            }
67491          },
67492          "201": {
67493            "description": "Created",
67494            "schema": {
67495              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67496            }
67497          },
67498          "202": {
67499            "description": "Accepted",
67500            "schema": {
67501              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67502            }
67503          },
67504          "401": {
67505            "description": "Unauthorized"
67506          }
67507        },
67508        "schemes": [
67509          "https"
67510        ],
67511        "tags": [
67512          "discovery_v1beta1"
67513        ],
67514        "x-kubernetes-action": "post",
67515        "x-kubernetes-group-version-kind": {
67516          "group": "discovery.k8s.io",
67517          "kind": "EndpointSlice",
67518          "version": "v1beta1"
67519        }
67520      }
67521    },
67522    "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}": {
67523      "delete": {
67524        "consumes": [
67525          "*/*"
67526        ],
67527        "description": "delete an EndpointSlice",
67528        "operationId": "deleteDiscoveryV1beta1NamespacedEndpointSlice",
67529        "parameters": [
67530          {
67531            "in": "body",
67532            "name": "body",
67533            "schema": {
67534              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
67535            }
67536          },
67537          {
67538            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67539            "in": "query",
67540            "name": "dryRun",
67541            "type": "string",
67542            "uniqueItems": true
67543          },
67544          {
67545            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
67546            "in": "query",
67547            "name": "gracePeriodSeconds",
67548            "type": "integer",
67549            "uniqueItems": true
67550          },
67551          {
67552            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
67553            "in": "query",
67554            "name": "orphanDependents",
67555            "type": "boolean",
67556            "uniqueItems": true
67557          },
67558          {
67559            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
67560            "in": "query",
67561            "name": "propagationPolicy",
67562            "type": "string",
67563            "uniqueItems": true
67564          }
67565        ],
67566        "produces": [
67567          "application/json",
67568          "application/yaml",
67569          "application/vnd.kubernetes.protobuf"
67570        ],
67571        "responses": {
67572          "200": {
67573            "description": "OK",
67574            "schema": {
67575              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67576            }
67577          },
67578          "202": {
67579            "description": "Accepted",
67580            "schema": {
67581              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67582            }
67583          },
67584          "401": {
67585            "description": "Unauthorized"
67586          }
67587        },
67588        "schemes": [
67589          "https"
67590        ],
67591        "tags": [
67592          "discovery_v1beta1"
67593        ],
67594        "x-kubernetes-action": "delete",
67595        "x-kubernetes-group-version-kind": {
67596          "group": "discovery.k8s.io",
67597          "kind": "EndpointSlice",
67598          "version": "v1beta1"
67599        }
67600      },
67601      "get": {
67602        "consumes": [
67603          "*/*"
67604        ],
67605        "description": "read the specified EndpointSlice",
67606        "operationId": "readDiscoveryV1beta1NamespacedEndpointSlice",
67607        "produces": [
67608          "application/json",
67609          "application/yaml",
67610          "application/vnd.kubernetes.protobuf"
67611        ],
67612        "responses": {
67613          "200": {
67614            "description": "OK",
67615            "schema": {
67616              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67617            }
67618          },
67619          "401": {
67620            "description": "Unauthorized"
67621          }
67622        },
67623        "schemes": [
67624          "https"
67625        ],
67626        "tags": [
67627          "discovery_v1beta1"
67628        ],
67629        "x-kubernetes-action": "get",
67630        "x-kubernetes-group-version-kind": {
67631          "group": "discovery.k8s.io",
67632          "kind": "EndpointSlice",
67633          "version": "v1beta1"
67634        }
67635      },
67636      "parameters": [
67637        {
67638          "description": "name of the EndpointSlice",
67639          "in": "path",
67640          "name": "name",
67641          "required": true,
67642          "type": "string",
67643          "uniqueItems": true
67644        },
67645        {
67646          "description": "object name and auth scope, such as for teams and projects",
67647          "in": "path",
67648          "name": "namespace",
67649          "required": true,
67650          "type": "string",
67651          "uniqueItems": true
67652        },
67653        {
67654          "description": "If 'true', then the output is pretty printed.",
67655          "in": "query",
67656          "name": "pretty",
67657          "type": "string",
67658          "uniqueItems": true
67659        }
67660      ],
67661      "patch": {
67662        "consumes": [
67663          "application/json-patch+json",
67664          "application/merge-patch+json",
67665          "application/strategic-merge-patch+json",
67666          "application/apply-patch+yaml"
67667        ],
67668        "description": "partially update the specified EndpointSlice",
67669        "operationId": "patchDiscoveryV1beta1NamespacedEndpointSlice",
67670        "parameters": [
67671          {
67672            "in": "body",
67673            "name": "body",
67674            "required": true,
67675            "schema": {
67676              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
67677            }
67678          },
67679          {
67680            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67681            "in": "query",
67682            "name": "dryRun",
67683            "type": "string",
67684            "uniqueItems": true
67685          },
67686          {
67687            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
67688            "in": "query",
67689            "name": "fieldManager",
67690            "type": "string",
67691            "uniqueItems": true
67692          },
67693          {
67694            "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.",
67695            "in": "query",
67696            "name": "force",
67697            "type": "boolean",
67698            "uniqueItems": true
67699          }
67700        ],
67701        "produces": [
67702          "application/json",
67703          "application/yaml",
67704          "application/vnd.kubernetes.protobuf"
67705        ],
67706        "responses": {
67707          "200": {
67708            "description": "OK",
67709            "schema": {
67710              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67711            }
67712          },
67713          "401": {
67714            "description": "Unauthorized"
67715          }
67716        },
67717        "schemes": [
67718          "https"
67719        ],
67720        "tags": [
67721          "discovery_v1beta1"
67722        ],
67723        "x-kubernetes-action": "patch",
67724        "x-kubernetes-group-version-kind": {
67725          "group": "discovery.k8s.io",
67726          "kind": "EndpointSlice",
67727          "version": "v1beta1"
67728        }
67729      },
67730      "put": {
67731        "consumes": [
67732          "*/*"
67733        ],
67734        "description": "replace the specified EndpointSlice",
67735        "operationId": "replaceDiscoveryV1beta1NamespacedEndpointSlice",
67736        "parameters": [
67737          {
67738            "in": "body",
67739            "name": "body",
67740            "required": true,
67741            "schema": {
67742              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67743            }
67744          },
67745          {
67746            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67747            "in": "query",
67748            "name": "dryRun",
67749            "type": "string",
67750            "uniqueItems": true
67751          },
67752          {
67753            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67754            "in": "query",
67755            "name": "fieldManager",
67756            "type": "string",
67757            "uniqueItems": true
67758          }
67759        ],
67760        "produces": [
67761          "application/json",
67762          "application/yaml",
67763          "application/vnd.kubernetes.protobuf"
67764        ],
67765        "responses": {
67766          "200": {
67767            "description": "OK",
67768            "schema": {
67769              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67770            }
67771          },
67772          "201": {
67773            "description": "Created",
67774            "schema": {
67775              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67776            }
67777          },
67778          "401": {
67779            "description": "Unauthorized"
67780          }
67781        },
67782        "schemes": [
67783          "https"
67784        ],
67785        "tags": [
67786          "discovery_v1beta1"
67787        ],
67788        "x-kubernetes-action": "put",
67789        "x-kubernetes-group-version-kind": {
67790          "group": "discovery.k8s.io",
67791          "kind": "EndpointSlice",
67792          "version": "v1beta1"
67793        }
67794      }
67795    },
67796    "/apis/discovery.k8s.io/v1beta1/watch/endpointslices": {
67797      "get": {
67798        "consumes": [
67799          "*/*"
67800        ],
67801        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
67802        "operationId": "watchDiscoveryV1beta1EndpointSliceListForAllNamespaces",
67803        "produces": [
67804          "application/json",
67805          "application/yaml",
67806          "application/vnd.kubernetes.protobuf",
67807          "application/json;stream=watch",
67808          "application/vnd.kubernetes.protobuf;stream=watch"
67809        ],
67810        "responses": {
67811          "200": {
67812            "description": "OK",
67813            "schema": {
67814              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67815            }
67816          },
67817          "401": {
67818            "description": "Unauthorized"
67819          }
67820        },
67821        "schemes": [
67822          "https"
67823        ],
67824        "tags": [
67825          "discovery_v1beta1"
67826        ],
67827        "x-kubernetes-action": "watchlist",
67828        "x-kubernetes-group-version-kind": {
67829          "group": "discovery.k8s.io",
67830          "kind": "EndpointSlice",
67831          "version": "v1beta1"
67832        }
67833      },
67834      "parameters": [
67835        {
67836          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67837          "in": "query",
67838          "name": "allowWatchBookmarks",
67839          "type": "boolean",
67840          "uniqueItems": true
67841        },
67842        {
67843          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67844          "in": "query",
67845          "name": "continue",
67846          "type": "string",
67847          "uniqueItems": true
67848        },
67849        {
67850          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67851          "in": "query",
67852          "name": "fieldSelector",
67853          "type": "string",
67854          "uniqueItems": true
67855        },
67856        {
67857          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67858          "in": "query",
67859          "name": "labelSelector",
67860          "type": "string",
67861          "uniqueItems": true
67862        },
67863        {
67864          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67865          "in": "query",
67866          "name": "limit",
67867          "type": "integer",
67868          "uniqueItems": true
67869        },
67870        {
67871          "description": "If 'true', then the output is pretty printed.",
67872          "in": "query",
67873          "name": "pretty",
67874          "type": "string",
67875          "uniqueItems": true
67876        },
67877        {
67878          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67879          "in": "query",
67880          "name": "resourceVersion",
67881          "type": "string",
67882          "uniqueItems": true
67883        },
67884        {
67885          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67886          "in": "query",
67887          "name": "resourceVersionMatch",
67888          "type": "string",
67889          "uniqueItems": true
67890        },
67891        {
67892          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67893          "in": "query",
67894          "name": "timeoutSeconds",
67895          "type": "integer",
67896          "uniqueItems": true
67897        },
67898        {
67899          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67900          "in": "query",
67901          "name": "watch",
67902          "type": "boolean",
67903          "uniqueItems": true
67904        }
67905      ]
67906    },
67907    "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices": {
67908      "get": {
67909        "consumes": [
67910          "*/*"
67911        ],
67912        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
67913        "operationId": "watchDiscoveryV1beta1NamespacedEndpointSliceList",
67914        "produces": [
67915          "application/json",
67916          "application/yaml",
67917          "application/vnd.kubernetes.protobuf",
67918          "application/json;stream=watch",
67919          "application/vnd.kubernetes.protobuf;stream=watch"
67920        ],
67921        "responses": {
67922          "200": {
67923            "description": "OK",
67924            "schema": {
67925              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67926            }
67927          },
67928          "401": {
67929            "description": "Unauthorized"
67930          }
67931        },
67932        "schemes": [
67933          "https"
67934        ],
67935        "tags": [
67936          "discovery_v1beta1"
67937        ],
67938        "x-kubernetes-action": "watchlist",
67939        "x-kubernetes-group-version-kind": {
67940          "group": "discovery.k8s.io",
67941          "kind": "EndpointSlice",
67942          "version": "v1beta1"
67943        }
67944      },
67945      "parameters": [
67946        {
67947          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67948          "in": "query",
67949          "name": "allowWatchBookmarks",
67950          "type": "boolean",
67951          "uniqueItems": true
67952        },
67953        {
67954          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67955          "in": "query",
67956          "name": "continue",
67957          "type": "string",
67958          "uniqueItems": true
67959        },
67960        {
67961          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67962          "in": "query",
67963          "name": "fieldSelector",
67964          "type": "string",
67965          "uniqueItems": true
67966        },
67967        {
67968          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67969          "in": "query",
67970          "name": "labelSelector",
67971          "type": "string",
67972          "uniqueItems": true
67973        },
67974        {
67975          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67976          "in": "query",
67977          "name": "limit",
67978          "type": "integer",
67979          "uniqueItems": true
67980        },
67981        {
67982          "description": "object name and auth scope, such as for teams and projects",
67983          "in": "path",
67984          "name": "namespace",
67985          "required": true,
67986          "type": "string",
67987          "uniqueItems": true
67988        },
67989        {
67990          "description": "If 'true', then the output is pretty printed.",
67991          "in": "query",
67992          "name": "pretty",
67993          "type": "string",
67994          "uniqueItems": true
67995        },
67996        {
67997          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67998          "in": "query",
67999          "name": "resourceVersion",
68000          "type": "string",
68001          "uniqueItems": true
68002        },
68003        {
68004          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68005          "in": "query",
68006          "name": "resourceVersionMatch",
68007          "type": "string",
68008          "uniqueItems": true
68009        },
68010        {
68011          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68012          "in": "query",
68013          "name": "timeoutSeconds",
68014          "type": "integer",
68015          "uniqueItems": true
68016        },
68017        {
68018          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68019          "in": "query",
68020          "name": "watch",
68021          "type": "boolean",
68022          "uniqueItems": true
68023        }
68024      ]
68025    },
68026    "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices/{name}": {
68027      "get": {
68028        "consumes": [
68029          "*/*"
68030        ],
68031        "description": "watch changes to an object of kind EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
68032        "operationId": "watchDiscoveryV1beta1NamespacedEndpointSlice",
68033        "produces": [
68034          "application/json",
68035          "application/yaml",
68036          "application/vnd.kubernetes.protobuf",
68037          "application/json;stream=watch",
68038          "application/vnd.kubernetes.protobuf;stream=watch"
68039        ],
68040        "responses": {
68041          "200": {
68042            "description": "OK",
68043            "schema": {
68044              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68045            }
68046          },
68047          "401": {
68048            "description": "Unauthorized"
68049          }
68050        },
68051        "schemes": [
68052          "https"
68053        ],
68054        "tags": [
68055          "discovery_v1beta1"
68056        ],
68057        "x-kubernetes-action": "watch",
68058        "x-kubernetes-group-version-kind": {
68059          "group": "discovery.k8s.io",
68060          "kind": "EndpointSlice",
68061          "version": "v1beta1"
68062        }
68063      },
68064      "parameters": [
68065        {
68066          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68067          "in": "query",
68068          "name": "allowWatchBookmarks",
68069          "type": "boolean",
68070          "uniqueItems": true
68071        },
68072        {
68073          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68074          "in": "query",
68075          "name": "continue",
68076          "type": "string",
68077          "uniqueItems": true
68078        },
68079        {
68080          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68081          "in": "query",
68082          "name": "fieldSelector",
68083          "type": "string",
68084          "uniqueItems": true
68085        },
68086        {
68087          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68088          "in": "query",
68089          "name": "labelSelector",
68090          "type": "string",
68091          "uniqueItems": true
68092        },
68093        {
68094          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68095          "in": "query",
68096          "name": "limit",
68097          "type": "integer",
68098          "uniqueItems": true
68099        },
68100        {
68101          "description": "name of the EndpointSlice",
68102          "in": "path",
68103          "name": "name",
68104          "required": true,
68105          "type": "string",
68106          "uniqueItems": true
68107        },
68108        {
68109          "description": "object name and auth scope, such as for teams and projects",
68110          "in": "path",
68111          "name": "namespace",
68112          "required": true,
68113          "type": "string",
68114          "uniqueItems": true
68115        },
68116        {
68117          "description": "If 'true', then the output is pretty printed.",
68118          "in": "query",
68119          "name": "pretty",
68120          "type": "string",
68121          "uniqueItems": true
68122        },
68123        {
68124          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68125          "in": "query",
68126          "name": "resourceVersion",
68127          "type": "string",
68128          "uniqueItems": true
68129        },
68130        {
68131          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68132          "in": "query",
68133          "name": "resourceVersionMatch",
68134          "type": "string",
68135          "uniqueItems": true
68136        },
68137        {
68138          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68139          "in": "query",
68140          "name": "timeoutSeconds",
68141          "type": "integer",
68142          "uniqueItems": true
68143        },
68144        {
68145          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68146          "in": "query",
68147          "name": "watch",
68148          "type": "boolean",
68149          "uniqueItems": true
68150        }
68151      ]
68152    },
68153    "/apis/events.k8s.io/": {
68154      "get": {
68155        "consumes": [
68156          "application/json",
68157          "application/yaml",
68158          "application/vnd.kubernetes.protobuf"
68159        ],
68160        "description": "get information of a group",
68161        "operationId": "getEventsAPIGroup",
68162        "produces": [
68163          "application/json",
68164          "application/yaml",
68165          "application/vnd.kubernetes.protobuf"
68166        ],
68167        "responses": {
68168          "200": {
68169            "description": "OK",
68170            "schema": {
68171              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
68172            }
68173          },
68174          "401": {
68175            "description": "Unauthorized"
68176          }
68177        },
68178        "schemes": [
68179          "https"
68180        ],
68181        "tags": [
68182          "events"
68183        ]
68184      }
68185    },
68186    "/apis/events.k8s.io/v1/": {
68187      "get": {
68188        "consumes": [
68189          "application/json",
68190          "application/yaml",
68191          "application/vnd.kubernetes.protobuf"
68192        ],
68193        "description": "get available resources",
68194        "operationId": "getEventsV1APIResources",
68195        "produces": [
68196          "application/json",
68197          "application/yaml",
68198          "application/vnd.kubernetes.protobuf"
68199        ],
68200        "responses": {
68201          "200": {
68202            "description": "OK",
68203            "schema": {
68204              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
68205            }
68206          },
68207          "401": {
68208            "description": "Unauthorized"
68209          }
68210        },
68211        "schemes": [
68212          "https"
68213        ],
68214        "tags": [
68215          "events_v1"
68216        ]
68217      }
68218    },
68219    "/apis/events.k8s.io/v1/events": {
68220      "get": {
68221        "consumes": [
68222          "*/*"
68223        ],
68224        "description": "list or watch objects of kind Event",
68225        "operationId": "listEventsV1EventForAllNamespaces",
68226        "produces": [
68227          "application/json",
68228          "application/yaml",
68229          "application/vnd.kubernetes.protobuf",
68230          "application/json;stream=watch",
68231          "application/vnd.kubernetes.protobuf;stream=watch"
68232        ],
68233        "responses": {
68234          "200": {
68235            "description": "OK",
68236            "schema": {
68237              "$ref": "#/definitions/io.k8s.api.events.v1.EventList"
68238            }
68239          },
68240          "401": {
68241            "description": "Unauthorized"
68242          }
68243        },
68244        "schemes": [
68245          "https"
68246        ],
68247        "tags": [
68248          "events_v1"
68249        ],
68250        "x-kubernetes-action": "list",
68251        "x-kubernetes-group-version-kind": {
68252          "group": "events.k8s.io",
68253          "kind": "Event",
68254          "version": "v1"
68255        }
68256      },
68257      "parameters": [
68258        {
68259          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68260          "in": "query",
68261          "name": "allowWatchBookmarks",
68262          "type": "boolean",
68263          "uniqueItems": true
68264        },
68265        {
68266          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68267          "in": "query",
68268          "name": "continue",
68269          "type": "string",
68270          "uniqueItems": true
68271        },
68272        {
68273          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68274          "in": "query",
68275          "name": "fieldSelector",
68276          "type": "string",
68277          "uniqueItems": true
68278        },
68279        {
68280          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68281          "in": "query",
68282          "name": "labelSelector",
68283          "type": "string",
68284          "uniqueItems": true
68285        },
68286        {
68287          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68288          "in": "query",
68289          "name": "limit",
68290          "type": "integer",
68291          "uniqueItems": true
68292        },
68293        {
68294          "description": "If 'true', then the output is pretty printed.",
68295          "in": "query",
68296          "name": "pretty",
68297          "type": "string",
68298          "uniqueItems": true
68299        },
68300        {
68301          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68302          "in": "query",
68303          "name": "resourceVersion",
68304          "type": "string",
68305          "uniqueItems": true
68306        },
68307        {
68308          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68309          "in": "query",
68310          "name": "resourceVersionMatch",
68311          "type": "string",
68312          "uniqueItems": true
68313        },
68314        {
68315          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68316          "in": "query",
68317          "name": "timeoutSeconds",
68318          "type": "integer",
68319          "uniqueItems": true
68320        },
68321        {
68322          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68323          "in": "query",
68324          "name": "watch",
68325          "type": "boolean",
68326          "uniqueItems": true
68327        }
68328      ]
68329    },
68330    "/apis/events.k8s.io/v1/namespaces/{namespace}/events": {
68331      "delete": {
68332        "consumes": [
68333          "*/*"
68334        ],
68335        "description": "delete collection of Event",
68336        "operationId": "deleteEventsV1CollectionNamespacedEvent",
68337        "parameters": [
68338          {
68339            "in": "body",
68340            "name": "body",
68341            "schema": {
68342              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
68343            }
68344          },
68345          {
68346            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68347            "in": "query",
68348            "name": "continue",
68349            "type": "string",
68350            "uniqueItems": true
68351          },
68352          {
68353            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68354            "in": "query",
68355            "name": "dryRun",
68356            "type": "string",
68357            "uniqueItems": true
68358          },
68359          {
68360            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68361            "in": "query",
68362            "name": "fieldSelector",
68363            "type": "string",
68364            "uniqueItems": true
68365          },
68366          {
68367            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
68368            "in": "query",
68369            "name": "gracePeriodSeconds",
68370            "type": "integer",
68371            "uniqueItems": true
68372          },
68373          {
68374            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68375            "in": "query",
68376            "name": "labelSelector",
68377            "type": "string",
68378            "uniqueItems": true
68379          },
68380          {
68381            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68382            "in": "query",
68383            "name": "limit",
68384            "type": "integer",
68385            "uniqueItems": true
68386          },
68387          {
68388            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
68389            "in": "query",
68390            "name": "orphanDependents",
68391            "type": "boolean",
68392            "uniqueItems": true
68393          },
68394          {
68395            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
68396            "in": "query",
68397            "name": "propagationPolicy",
68398            "type": "string",
68399            "uniqueItems": true
68400          },
68401          {
68402            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68403            "in": "query",
68404            "name": "resourceVersion",
68405            "type": "string",
68406            "uniqueItems": true
68407          },
68408          {
68409            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68410            "in": "query",
68411            "name": "resourceVersionMatch",
68412            "type": "string",
68413            "uniqueItems": true
68414          },
68415          {
68416            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68417            "in": "query",
68418            "name": "timeoutSeconds",
68419            "type": "integer",
68420            "uniqueItems": true
68421          }
68422        ],
68423        "produces": [
68424          "application/json",
68425          "application/yaml",
68426          "application/vnd.kubernetes.protobuf"
68427        ],
68428        "responses": {
68429          "200": {
68430            "description": "OK",
68431            "schema": {
68432              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68433            }
68434          },
68435          "401": {
68436            "description": "Unauthorized"
68437          }
68438        },
68439        "schemes": [
68440          "https"
68441        ],
68442        "tags": [
68443          "events_v1"
68444        ],
68445        "x-kubernetes-action": "deletecollection",
68446        "x-kubernetes-group-version-kind": {
68447          "group": "events.k8s.io",
68448          "kind": "Event",
68449          "version": "v1"
68450        }
68451      },
68452      "get": {
68453        "consumes": [
68454          "*/*"
68455        ],
68456        "description": "list or watch objects of kind Event",
68457        "operationId": "listEventsV1NamespacedEvent",
68458        "parameters": [
68459          {
68460            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68461            "in": "query",
68462            "name": "allowWatchBookmarks",
68463            "type": "boolean",
68464            "uniqueItems": true
68465          },
68466          {
68467            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68468            "in": "query",
68469            "name": "continue",
68470            "type": "string",
68471            "uniqueItems": true
68472          },
68473          {
68474            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68475            "in": "query",
68476            "name": "fieldSelector",
68477            "type": "string",
68478            "uniqueItems": true
68479          },
68480          {
68481            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68482            "in": "query",
68483            "name": "labelSelector",
68484            "type": "string",
68485            "uniqueItems": true
68486          },
68487          {
68488            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68489            "in": "query",
68490            "name": "limit",
68491            "type": "integer",
68492            "uniqueItems": true
68493          },
68494          {
68495            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68496            "in": "query",
68497            "name": "resourceVersion",
68498            "type": "string",
68499            "uniqueItems": true
68500          },
68501          {
68502            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68503            "in": "query",
68504            "name": "resourceVersionMatch",
68505            "type": "string",
68506            "uniqueItems": true
68507          },
68508          {
68509            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68510            "in": "query",
68511            "name": "timeoutSeconds",
68512            "type": "integer",
68513            "uniqueItems": true
68514          },
68515          {
68516            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68517            "in": "query",
68518            "name": "watch",
68519            "type": "boolean",
68520            "uniqueItems": true
68521          }
68522        ],
68523        "produces": [
68524          "application/json",
68525          "application/yaml",
68526          "application/vnd.kubernetes.protobuf",
68527          "application/json;stream=watch",
68528          "application/vnd.kubernetes.protobuf;stream=watch"
68529        ],
68530        "responses": {
68531          "200": {
68532            "description": "OK",
68533            "schema": {
68534              "$ref": "#/definitions/io.k8s.api.events.v1.EventList"
68535            }
68536          },
68537          "401": {
68538            "description": "Unauthorized"
68539          }
68540        },
68541        "schemes": [
68542          "https"
68543        ],
68544        "tags": [
68545          "events_v1"
68546        ],
68547        "x-kubernetes-action": "list",
68548        "x-kubernetes-group-version-kind": {
68549          "group": "events.k8s.io",
68550          "kind": "Event",
68551          "version": "v1"
68552        }
68553      },
68554      "parameters": [
68555        {
68556          "description": "object name and auth scope, such as for teams and projects",
68557          "in": "path",
68558          "name": "namespace",
68559          "required": true,
68560          "type": "string",
68561          "uniqueItems": true
68562        },
68563        {
68564          "description": "If 'true', then the output is pretty printed.",
68565          "in": "query",
68566          "name": "pretty",
68567          "type": "string",
68568          "uniqueItems": true
68569        }
68570      ],
68571      "post": {
68572        "consumes": [
68573          "*/*"
68574        ],
68575        "description": "create an Event",
68576        "operationId": "createEventsV1NamespacedEvent",
68577        "parameters": [
68578          {
68579            "in": "body",
68580            "name": "body",
68581            "required": true,
68582            "schema": {
68583              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68584            }
68585          },
68586          {
68587            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68588            "in": "query",
68589            "name": "dryRun",
68590            "type": "string",
68591            "uniqueItems": true
68592          },
68593          {
68594            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68595            "in": "query",
68596            "name": "fieldManager",
68597            "type": "string",
68598            "uniqueItems": true
68599          }
68600        ],
68601        "produces": [
68602          "application/json",
68603          "application/yaml",
68604          "application/vnd.kubernetes.protobuf"
68605        ],
68606        "responses": {
68607          "200": {
68608            "description": "OK",
68609            "schema": {
68610              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68611            }
68612          },
68613          "201": {
68614            "description": "Created",
68615            "schema": {
68616              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68617            }
68618          },
68619          "202": {
68620            "description": "Accepted",
68621            "schema": {
68622              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68623            }
68624          },
68625          "401": {
68626            "description": "Unauthorized"
68627          }
68628        },
68629        "schemes": [
68630          "https"
68631        ],
68632        "tags": [
68633          "events_v1"
68634        ],
68635        "x-kubernetes-action": "post",
68636        "x-kubernetes-group-version-kind": {
68637          "group": "events.k8s.io",
68638          "kind": "Event",
68639          "version": "v1"
68640        }
68641      }
68642    },
68643    "/apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}": {
68644      "delete": {
68645        "consumes": [
68646          "*/*"
68647        ],
68648        "description": "delete an Event",
68649        "operationId": "deleteEventsV1NamespacedEvent",
68650        "parameters": [
68651          {
68652            "in": "body",
68653            "name": "body",
68654            "schema": {
68655              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
68656            }
68657          },
68658          {
68659            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68660            "in": "query",
68661            "name": "dryRun",
68662            "type": "string",
68663            "uniqueItems": true
68664          },
68665          {
68666            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
68667            "in": "query",
68668            "name": "gracePeriodSeconds",
68669            "type": "integer",
68670            "uniqueItems": true
68671          },
68672          {
68673            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
68674            "in": "query",
68675            "name": "orphanDependents",
68676            "type": "boolean",
68677            "uniqueItems": true
68678          },
68679          {
68680            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
68681            "in": "query",
68682            "name": "propagationPolicy",
68683            "type": "string",
68684            "uniqueItems": true
68685          }
68686        ],
68687        "produces": [
68688          "application/json",
68689          "application/yaml",
68690          "application/vnd.kubernetes.protobuf"
68691        ],
68692        "responses": {
68693          "200": {
68694            "description": "OK",
68695            "schema": {
68696              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68697            }
68698          },
68699          "202": {
68700            "description": "Accepted",
68701            "schema": {
68702              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68703            }
68704          },
68705          "401": {
68706            "description": "Unauthorized"
68707          }
68708        },
68709        "schemes": [
68710          "https"
68711        ],
68712        "tags": [
68713          "events_v1"
68714        ],
68715        "x-kubernetes-action": "delete",
68716        "x-kubernetes-group-version-kind": {
68717          "group": "events.k8s.io",
68718          "kind": "Event",
68719          "version": "v1"
68720        }
68721      },
68722      "get": {
68723        "consumes": [
68724          "*/*"
68725        ],
68726        "description": "read the specified Event",
68727        "operationId": "readEventsV1NamespacedEvent",
68728        "produces": [
68729          "application/json",
68730          "application/yaml",
68731          "application/vnd.kubernetes.protobuf"
68732        ],
68733        "responses": {
68734          "200": {
68735            "description": "OK",
68736            "schema": {
68737              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68738            }
68739          },
68740          "401": {
68741            "description": "Unauthorized"
68742          }
68743        },
68744        "schemes": [
68745          "https"
68746        ],
68747        "tags": [
68748          "events_v1"
68749        ],
68750        "x-kubernetes-action": "get",
68751        "x-kubernetes-group-version-kind": {
68752          "group": "events.k8s.io",
68753          "kind": "Event",
68754          "version": "v1"
68755        }
68756      },
68757      "parameters": [
68758        {
68759          "description": "name of the Event",
68760          "in": "path",
68761          "name": "name",
68762          "required": true,
68763          "type": "string",
68764          "uniqueItems": true
68765        },
68766        {
68767          "description": "object name and auth scope, such as for teams and projects",
68768          "in": "path",
68769          "name": "namespace",
68770          "required": true,
68771          "type": "string",
68772          "uniqueItems": true
68773        },
68774        {
68775          "description": "If 'true', then the output is pretty printed.",
68776          "in": "query",
68777          "name": "pretty",
68778          "type": "string",
68779          "uniqueItems": true
68780        }
68781      ],
68782      "patch": {
68783        "consumes": [
68784          "application/json-patch+json",
68785          "application/merge-patch+json",
68786          "application/strategic-merge-patch+json",
68787          "application/apply-patch+yaml"
68788        ],
68789        "description": "partially update the specified Event",
68790        "operationId": "patchEventsV1NamespacedEvent",
68791        "parameters": [
68792          {
68793            "in": "body",
68794            "name": "body",
68795            "required": true,
68796            "schema": {
68797              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
68798            }
68799          },
68800          {
68801            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68802            "in": "query",
68803            "name": "dryRun",
68804            "type": "string",
68805            "uniqueItems": true
68806          },
68807          {
68808            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
68809            "in": "query",
68810            "name": "fieldManager",
68811            "type": "string",
68812            "uniqueItems": true
68813          },
68814          {
68815            "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.",
68816            "in": "query",
68817            "name": "force",
68818            "type": "boolean",
68819            "uniqueItems": true
68820          }
68821        ],
68822        "produces": [
68823          "application/json",
68824          "application/yaml",
68825          "application/vnd.kubernetes.protobuf"
68826        ],
68827        "responses": {
68828          "200": {
68829            "description": "OK",
68830            "schema": {
68831              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68832            }
68833          },
68834          "401": {
68835            "description": "Unauthorized"
68836          }
68837        },
68838        "schemes": [
68839          "https"
68840        ],
68841        "tags": [
68842          "events_v1"
68843        ],
68844        "x-kubernetes-action": "patch",
68845        "x-kubernetes-group-version-kind": {
68846          "group": "events.k8s.io",
68847          "kind": "Event",
68848          "version": "v1"
68849        }
68850      },
68851      "put": {
68852        "consumes": [
68853          "*/*"
68854        ],
68855        "description": "replace the specified Event",
68856        "operationId": "replaceEventsV1NamespacedEvent",
68857        "parameters": [
68858          {
68859            "in": "body",
68860            "name": "body",
68861            "required": true,
68862            "schema": {
68863              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68864            }
68865          },
68866          {
68867            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68868            "in": "query",
68869            "name": "dryRun",
68870            "type": "string",
68871            "uniqueItems": true
68872          },
68873          {
68874            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68875            "in": "query",
68876            "name": "fieldManager",
68877            "type": "string",
68878            "uniqueItems": true
68879          }
68880        ],
68881        "produces": [
68882          "application/json",
68883          "application/yaml",
68884          "application/vnd.kubernetes.protobuf"
68885        ],
68886        "responses": {
68887          "200": {
68888            "description": "OK",
68889            "schema": {
68890              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68891            }
68892          },
68893          "201": {
68894            "description": "Created",
68895            "schema": {
68896              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68897            }
68898          },
68899          "401": {
68900            "description": "Unauthorized"
68901          }
68902        },
68903        "schemes": [
68904          "https"
68905        ],
68906        "tags": [
68907          "events_v1"
68908        ],
68909        "x-kubernetes-action": "put",
68910        "x-kubernetes-group-version-kind": {
68911          "group": "events.k8s.io",
68912          "kind": "Event",
68913          "version": "v1"
68914        }
68915      }
68916    },
68917    "/apis/events.k8s.io/v1/watch/events": {
68918      "get": {
68919        "consumes": [
68920          "*/*"
68921        ],
68922        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
68923        "operationId": "watchEventsV1EventListForAllNamespaces",
68924        "produces": [
68925          "application/json",
68926          "application/yaml",
68927          "application/vnd.kubernetes.protobuf",
68928          "application/json;stream=watch",
68929          "application/vnd.kubernetes.protobuf;stream=watch"
68930        ],
68931        "responses": {
68932          "200": {
68933            "description": "OK",
68934            "schema": {
68935              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68936            }
68937          },
68938          "401": {
68939            "description": "Unauthorized"
68940          }
68941        },
68942        "schemes": [
68943          "https"
68944        ],
68945        "tags": [
68946          "events_v1"
68947        ],
68948        "x-kubernetes-action": "watchlist",
68949        "x-kubernetes-group-version-kind": {
68950          "group": "events.k8s.io",
68951          "kind": "Event",
68952          "version": "v1"
68953        }
68954      },
68955      "parameters": [
68956        {
68957          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68958          "in": "query",
68959          "name": "allowWatchBookmarks",
68960          "type": "boolean",
68961          "uniqueItems": true
68962        },
68963        {
68964          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68965          "in": "query",
68966          "name": "continue",
68967          "type": "string",
68968          "uniqueItems": true
68969        },
68970        {
68971          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68972          "in": "query",
68973          "name": "fieldSelector",
68974          "type": "string",
68975          "uniqueItems": true
68976        },
68977        {
68978          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68979          "in": "query",
68980          "name": "labelSelector",
68981          "type": "string",
68982          "uniqueItems": true
68983        },
68984        {
68985          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68986          "in": "query",
68987          "name": "limit",
68988          "type": "integer",
68989          "uniqueItems": true
68990        },
68991        {
68992          "description": "If 'true', then the output is pretty printed.",
68993          "in": "query",
68994          "name": "pretty",
68995          "type": "string",
68996          "uniqueItems": true
68997        },
68998        {
68999          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69000          "in": "query",
69001          "name": "resourceVersion",
69002          "type": "string",
69003          "uniqueItems": true
69004        },
69005        {
69006          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69007          "in": "query",
69008          "name": "resourceVersionMatch",
69009          "type": "string",
69010          "uniqueItems": true
69011        },
69012        {
69013          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69014          "in": "query",
69015          "name": "timeoutSeconds",
69016          "type": "integer",
69017          "uniqueItems": true
69018        },
69019        {
69020          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69021          "in": "query",
69022          "name": "watch",
69023          "type": "boolean",
69024          "uniqueItems": true
69025        }
69026      ]
69027    },
69028    "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events": {
69029      "get": {
69030        "consumes": [
69031          "*/*"
69032        ],
69033        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
69034        "operationId": "watchEventsV1NamespacedEventList",
69035        "produces": [
69036          "application/json",
69037          "application/yaml",
69038          "application/vnd.kubernetes.protobuf",
69039          "application/json;stream=watch",
69040          "application/vnd.kubernetes.protobuf;stream=watch"
69041        ],
69042        "responses": {
69043          "200": {
69044            "description": "OK",
69045            "schema": {
69046              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69047            }
69048          },
69049          "401": {
69050            "description": "Unauthorized"
69051          }
69052        },
69053        "schemes": [
69054          "https"
69055        ],
69056        "tags": [
69057          "events_v1"
69058        ],
69059        "x-kubernetes-action": "watchlist",
69060        "x-kubernetes-group-version-kind": {
69061          "group": "events.k8s.io",
69062          "kind": "Event",
69063          "version": "v1"
69064        }
69065      },
69066      "parameters": [
69067        {
69068          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69069          "in": "query",
69070          "name": "allowWatchBookmarks",
69071          "type": "boolean",
69072          "uniqueItems": true
69073        },
69074        {
69075          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69076          "in": "query",
69077          "name": "continue",
69078          "type": "string",
69079          "uniqueItems": true
69080        },
69081        {
69082          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69083          "in": "query",
69084          "name": "fieldSelector",
69085          "type": "string",
69086          "uniqueItems": true
69087        },
69088        {
69089          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69090          "in": "query",
69091          "name": "labelSelector",
69092          "type": "string",
69093          "uniqueItems": true
69094        },
69095        {
69096          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69097          "in": "query",
69098          "name": "limit",
69099          "type": "integer",
69100          "uniqueItems": true
69101        },
69102        {
69103          "description": "object name and auth scope, such as for teams and projects",
69104          "in": "path",
69105          "name": "namespace",
69106          "required": true,
69107          "type": "string",
69108          "uniqueItems": true
69109        },
69110        {
69111          "description": "If 'true', then the output is pretty printed.",
69112          "in": "query",
69113          "name": "pretty",
69114          "type": "string",
69115          "uniqueItems": true
69116        },
69117        {
69118          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69119          "in": "query",
69120          "name": "resourceVersion",
69121          "type": "string",
69122          "uniqueItems": true
69123        },
69124        {
69125          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69126          "in": "query",
69127          "name": "resourceVersionMatch",
69128          "type": "string",
69129          "uniqueItems": true
69130        },
69131        {
69132          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69133          "in": "query",
69134          "name": "timeoutSeconds",
69135          "type": "integer",
69136          "uniqueItems": true
69137        },
69138        {
69139          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69140          "in": "query",
69141          "name": "watch",
69142          "type": "boolean",
69143          "uniqueItems": true
69144        }
69145      ]
69146    },
69147    "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events/{name}": {
69148      "get": {
69149        "consumes": [
69150          "*/*"
69151        ],
69152        "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.",
69153        "operationId": "watchEventsV1NamespacedEvent",
69154        "produces": [
69155          "application/json",
69156          "application/yaml",
69157          "application/vnd.kubernetes.protobuf",
69158          "application/json;stream=watch",
69159          "application/vnd.kubernetes.protobuf;stream=watch"
69160        ],
69161        "responses": {
69162          "200": {
69163            "description": "OK",
69164            "schema": {
69165              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69166            }
69167          },
69168          "401": {
69169            "description": "Unauthorized"
69170          }
69171        },
69172        "schemes": [
69173          "https"
69174        ],
69175        "tags": [
69176          "events_v1"
69177        ],
69178        "x-kubernetes-action": "watch",
69179        "x-kubernetes-group-version-kind": {
69180          "group": "events.k8s.io",
69181          "kind": "Event",
69182          "version": "v1"
69183        }
69184      },
69185      "parameters": [
69186        {
69187          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69188          "in": "query",
69189          "name": "allowWatchBookmarks",
69190          "type": "boolean",
69191          "uniqueItems": true
69192        },
69193        {
69194          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69195          "in": "query",
69196          "name": "continue",
69197          "type": "string",
69198          "uniqueItems": true
69199        },
69200        {
69201          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69202          "in": "query",
69203          "name": "fieldSelector",
69204          "type": "string",
69205          "uniqueItems": true
69206        },
69207        {
69208          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69209          "in": "query",
69210          "name": "labelSelector",
69211          "type": "string",
69212          "uniqueItems": true
69213        },
69214        {
69215          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69216          "in": "query",
69217          "name": "limit",
69218          "type": "integer",
69219          "uniqueItems": true
69220        },
69221        {
69222          "description": "name of the Event",
69223          "in": "path",
69224          "name": "name",
69225          "required": true,
69226          "type": "string",
69227          "uniqueItems": true
69228        },
69229        {
69230          "description": "object name and auth scope, such as for teams and projects",
69231          "in": "path",
69232          "name": "namespace",
69233          "required": true,
69234          "type": "string",
69235          "uniqueItems": true
69236        },
69237        {
69238          "description": "If 'true', then the output is pretty printed.",
69239          "in": "query",
69240          "name": "pretty",
69241          "type": "string",
69242          "uniqueItems": true
69243        },
69244        {
69245          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69246          "in": "query",
69247          "name": "resourceVersion",
69248          "type": "string",
69249          "uniqueItems": true
69250        },
69251        {
69252          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69253          "in": "query",
69254          "name": "resourceVersionMatch",
69255          "type": "string",
69256          "uniqueItems": true
69257        },
69258        {
69259          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69260          "in": "query",
69261          "name": "timeoutSeconds",
69262          "type": "integer",
69263          "uniqueItems": true
69264        },
69265        {
69266          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69267          "in": "query",
69268          "name": "watch",
69269          "type": "boolean",
69270          "uniqueItems": true
69271        }
69272      ]
69273    },
69274    "/apis/events.k8s.io/v1beta1/": {
69275      "get": {
69276        "consumes": [
69277          "application/json",
69278          "application/yaml",
69279          "application/vnd.kubernetes.protobuf"
69280        ],
69281        "description": "get available resources",
69282        "operationId": "getEventsV1beta1APIResources",
69283        "produces": [
69284          "application/json",
69285          "application/yaml",
69286          "application/vnd.kubernetes.protobuf"
69287        ],
69288        "responses": {
69289          "200": {
69290            "description": "OK",
69291            "schema": {
69292              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
69293            }
69294          },
69295          "401": {
69296            "description": "Unauthorized"
69297          }
69298        },
69299        "schemes": [
69300          "https"
69301        ],
69302        "tags": [
69303          "events_v1beta1"
69304        ]
69305      }
69306    },
69307    "/apis/events.k8s.io/v1beta1/events": {
69308      "get": {
69309        "consumes": [
69310          "*/*"
69311        ],
69312        "description": "list or watch objects of kind Event",
69313        "operationId": "listEventsV1beta1EventForAllNamespaces",
69314        "produces": [
69315          "application/json",
69316          "application/yaml",
69317          "application/vnd.kubernetes.protobuf",
69318          "application/json;stream=watch",
69319          "application/vnd.kubernetes.protobuf;stream=watch"
69320        ],
69321        "responses": {
69322          "200": {
69323            "description": "OK",
69324            "schema": {
69325              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
69326            }
69327          },
69328          "401": {
69329            "description": "Unauthorized"
69330          }
69331        },
69332        "schemes": [
69333          "https"
69334        ],
69335        "tags": [
69336          "events_v1beta1"
69337        ],
69338        "x-kubernetes-action": "list",
69339        "x-kubernetes-group-version-kind": {
69340          "group": "events.k8s.io",
69341          "kind": "Event",
69342          "version": "v1beta1"
69343        }
69344      },
69345      "parameters": [
69346        {
69347          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69348          "in": "query",
69349          "name": "allowWatchBookmarks",
69350          "type": "boolean",
69351          "uniqueItems": true
69352        },
69353        {
69354          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69355          "in": "query",
69356          "name": "continue",
69357          "type": "string",
69358          "uniqueItems": true
69359        },
69360        {
69361          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69362          "in": "query",
69363          "name": "fieldSelector",
69364          "type": "string",
69365          "uniqueItems": true
69366        },
69367        {
69368          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69369          "in": "query",
69370          "name": "labelSelector",
69371          "type": "string",
69372          "uniqueItems": true
69373        },
69374        {
69375          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69376          "in": "query",
69377          "name": "limit",
69378          "type": "integer",
69379          "uniqueItems": true
69380        },
69381        {
69382          "description": "If 'true', then the output is pretty printed.",
69383          "in": "query",
69384          "name": "pretty",
69385          "type": "string",
69386          "uniqueItems": true
69387        },
69388        {
69389          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69390          "in": "query",
69391          "name": "resourceVersion",
69392          "type": "string",
69393          "uniqueItems": true
69394        },
69395        {
69396          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69397          "in": "query",
69398          "name": "resourceVersionMatch",
69399          "type": "string",
69400          "uniqueItems": true
69401        },
69402        {
69403          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69404          "in": "query",
69405          "name": "timeoutSeconds",
69406          "type": "integer",
69407          "uniqueItems": true
69408        },
69409        {
69410          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69411          "in": "query",
69412          "name": "watch",
69413          "type": "boolean",
69414          "uniqueItems": true
69415        }
69416      ]
69417    },
69418    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events": {
69419      "delete": {
69420        "consumes": [
69421          "*/*"
69422        ],
69423        "description": "delete collection of Event",
69424        "operationId": "deleteEventsV1beta1CollectionNamespacedEvent",
69425        "parameters": [
69426          {
69427            "in": "body",
69428            "name": "body",
69429            "schema": {
69430              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
69431            }
69432          },
69433          {
69434            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69435            "in": "query",
69436            "name": "continue",
69437            "type": "string",
69438            "uniqueItems": true
69439          },
69440          {
69441            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69442            "in": "query",
69443            "name": "dryRun",
69444            "type": "string",
69445            "uniqueItems": true
69446          },
69447          {
69448            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69449            "in": "query",
69450            "name": "fieldSelector",
69451            "type": "string",
69452            "uniqueItems": true
69453          },
69454          {
69455            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
69456            "in": "query",
69457            "name": "gracePeriodSeconds",
69458            "type": "integer",
69459            "uniqueItems": true
69460          },
69461          {
69462            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69463            "in": "query",
69464            "name": "labelSelector",
69465            "type": "string",
69466            "uniqueItems": true
69467          },
69468          {
69469            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69470            "in": "query",
69471            "name": "limit",
69472            "type": "integer",
69473            "uniqueItems": true
69474          },
69475          {
69476            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
69477            "in": "query",
69478            "name": "orphanDependents",
69479            "type": "boolean",
69480            "uniqueItems": true
69481          },
69482          {
69483            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
69484            "in": "query",
69485            "name": "propagationPolicy",
69486            "type": "string",
69487            "uniqueItems": true
69488          },
69489          {
69490            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69491            "in": "query",
69492            "name": "resourceVersion",
69493            "type": "string",
69494            "uniqueItems": true
69495          },
69496          {
69497            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69498            "in": "query",
69499            "name": "resourceVersionMatch",
69500            "type": "string",
69501            "uniqueItems": true
69502          },
69503          {
69504            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69505            "in": "query",
69506            "name": "timeoutSeconds",
69507            "type": "integer",
69508            "uniqueItems": true
69509          }
69510        ],
69511        "produces": [
69512          "application/json",
69513          "application/yaml",
69514          "application/vnd.kubernetes.protobuf"
69515        ],
69516        "responses": {
69517          "200": {
69518            "description": "OK",
69519            "schema": {
69520              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69521            }
69522          },
69523          "401": {
69524            "description": "Unauthorized"
69525          }
69526        },
69527        "schemes": [
69528          "https"
69529        ],
69530        "tags": [
69531          "events_v1beta1"
69532        ],
69533        "x-kubernetes-action": "deletecollection",
69534        "x-kubernetes-group-version-kind": {
69535          "group": "events.k8s.io",
69536          "kind": "Event",
69537          "version": "v1beta1"
69538        }
69539      },
69540      "get": {
69541        "consumes": [
69542          "*/*"
69543        ],
69544        "description": "list or watch objects of kind Event",
69545        "operationId": "listEventsV1beta1NamespacedEvent",
69546        "parameters": [
69547          {
69548            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69549            "in": "query",
69550            "name": "allowWatchBookmarks",
69551            "type": "boolean",
69552            "uniqueItems": true
69553          },
69554          {
69555            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69556            "in": "query",
69557            "name": "continue",
69558            "type": "string",
69559            "uniqueItems": true
69560          },
69561          {
69562            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69563            "in": "query",
69564            "name": "fieldSelector",
69565            "type": "string",
69566            "uniqueItems": true
69567          },
69568          {
69569            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69570            "in": "query",
69571            "name": "labelSelector",
69572            "type": "string",
69573            "uniqueItems": true
69574          },
69575          {
69576            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69577            "in": "query",
69578            "name": "limit",
69579            "type": "integer",
69580            "uniqueItems": true
69581          },
69582          {
69583            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69584            "in": "query",
69585            "name": "resourceVersion",
69586            "type": "string",
69587            "uniqueItems": true
69588          },
69589          {
69590            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69591            "in": "query",
69592            "name": "resourceVersionMatch",
69593            "type": "string",
69594            "uniqueItems": true
69595          },
69596          {
69597            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69598            "in": "query",
69599            "name": "timeoutSeconds",
69600            "type": "integer",
69601            "uniqueItems": true
69602          },
69603          {
69604            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69605            "in": "query",
69606            "name": "watch",
69607            "type": "boolean",
69608            "uniqueItems": true
69609          }
69610        ],
69611        "produces": [
69612          "application/json",
69613          "application/yaml",
69614          "application/vnd.kubernetes.protobuf",
69615          "application/json;stream=watch",
69616          "application/vnd.kubernetes.protobuf;stream=watch"
69617        ],
69618        "responses": {
69619          "200": {
69620            "description": "OK",
69621            "schema": {
69622              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
69623            }
69624          },
69625          "401": {
69626            "description": "Unauthorized"
69627          }
69628        },
69629        "schemes": [
69630          "https"
69631        ],
69632        "tags": [
69633          "events_v1beta1"
69634        ],
69635        "x-kubernetes-action": "list",
69636        "x-kubernetes-group-version-kind": {
69637          "group": "events.k8s.io",
69638          "kind": "Event",
69639          "version": "v1beta1"
69640        }
69641      },
69642      "parameters": [
69643        {
69644          "description": "object name and auth scope, such as for teams and projects",
69645          "in": "path",
69646          "name": "namespace",
69647          "required": true,
69648          "type": "string",
69649          "uniqueItems": true
69650        },
69651        {
69652          "description": "If 'true', then the output is pretty printed.",
69653          "in": "query",
69654          "name": "pretty",
69655          "type": "string",
69656          "uniqueItems": true
69657        }
69658      ],
69659      "post": {
69660        "consumes": [
69661          "*/*"
69662        ],
69663        "description": "create an Event",
69664        "operationId": "createEventsV1beta1NamespacedEvent",
69665        "parameters": [
69666          {
69667            "in": "body",
69668            "name": "body",
69669            "required": true,
69670            "schema": {
69671              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69672            }
69673          },
69674          {
69675            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69676            "in": "query",
69677            "name": "dryRun",
69678            "type": "string",
69679            "uniqueItems": true
69680          },
69681          {
69682            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69683            "in": "query",
69684            "name": "fieldManager",
69685            "type": "string",
69686            "uniqueItems": true
69687          }
69688        ],
69689        "produces": [
69690          "application/json",
69691          "application/yaml",
69692          "application/vnd.kubernetes.protobuf"
69693        ],
69694        "responses": {
69695          "200": {
69696            "description": "OK",
69697            "schema": {
69698              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69699            }
69700          },
69701          "201": {
69702            "description": "Created",
69703            "schema": {
69704              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69705            }
69706          },
69707          "202": {
69708            "description": "Accepted",
69709            "schema": {
69710              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69711            }
69712          },
69713          "401": {
69714            "description": "Unauthorized"
69715          }
69716        },
69717        "schemes": [
69718          "https"
69719        ],
69720        "tags": [
69721          "events_v1beta1"
69722        ],
69723        "x-kubernetes-action": "post",
69724        "x-kubernetes-group-version-kind": {
69725          "group": "events.k8s.io",
69726          "kind": "Event",
69727          "version": "v1beta1"
69728        }
69729      }
69730    },
69731    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}": {
69732      "delete": {
69733        "consumes": [
69734          "*/*"
69735        ],
69736        "description": "delete an Event",
69737        "operationId": "deleteEventsV1beta1NamespacedEvent",
69738        "parameters": [
69739          {
69740            "in": "body",
69741            "name": "body",
69742            "schema": {
69743              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
69744            }
69745          },
69746          {
69747            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69748            "in": "query",
69749            "name": "dryRun",
69750            "type": "string",
69751            "uniqueItems": true
69752          },
69753          {
69754            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
69755            "in": "query",
69756            "name": "gracePeriodSeconds",
69757            "type": "integer",
69758            "uniqueItems": true
69759          },
69760          {
69761            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
69762            "in": "query",
69763            "name": "orphanDependents",
69764            "type": "boolean",
69765            "uniqueItems": true
69766          },
69767          {
69768            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
69769            "in": "query",
69770            "name": "propagationPolicy",
69771            "type": "string",
69772            "uniqueItems": true
69773          }
69774        ],
69775        "produces": [
69776          "application/json",
69777          "application/yaml",
69778          "application/vnd.kubernetes.protobuf"
69779        ],
69780        "responses": {
69781          "200": {
69782            "description": "OK",
69783            "schema": {
69784              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69785            }
69786          },
69787          "202": {
69788            "description": "Accepted",
69789            "schema": {
69790              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69791            }
69792          },
69793          "401": {
69794            "description": "Unauthorized"
69795          }
69796        },
69797        "schemes": [
69798          "https"
69799        ],
69800        "tags": [
69801          "events_v1beta1"
69802        ],
69803        "x-kubernetes-action": "delete",
69804        "x-kubernetes-group-version-kind": {
69805          "group": "events.k8s.io",
69806          "kind": "Event",
69807          "version": "v1beta1"
69808        }
69809      },
69810      "get": {
69811        "consumes": [
69812          "*/*"
69813        ],
69814        "description": "read the specified Event",
69815        "operationId": "readEventsV1beta1NamespacedEvent",
69816        "produces": [
69817          "application/json",
69818          "application/yaml",
69819          "application/vnd.kubernetes.protobuf"
69820        ],
69821        "responses": {
69822          "200": {
69823            "description": "OK",
69824            "schema": {
69825              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69826            }
69827          },
69828          "401": {
69829            "description": "Unauthorized"
69830          }
69831        },
69832        "schemes": [
69833          "https"
69834        ],
69835        "tags": [
69836          "events_v1beta1"
69837        ],
69838        "x-kubernetes-action": "get",
69839        "x-kubernetes-group-version-kind": {
69840          "group": "events.k8s.io",
69841          "kind": "Event",
69842          "version": "v1beta1"
69843        }
69844      },
69845      "parameters": [
69846        {
69847          "description": "name of the Event",
69848          "in": "path",
69849          "name": "name",
69850          "required": true,
69851          "type": "string",
69852          "uniqueItems": true
69853        },
69854        {
69855          "description": "object name and auth scope, such as for teams and projects",
69856          "in": "path",
69857          "name": "namespace",
69858          "required": true,
69859          "type": "string",
69860          "uniqueItems": true
69861        },
69862        {
69863          "description": "If 'true', then the output is pretty printed.",
69864          "in": "query",
69865          "name": "pretty",
69866          "type": "string",
69867          "uniqueItems": true
69868        }
69869      ],
69870      "patch": {
69871        "consumes": [
69872          "application/json-patch+json",
69873          "application/merge-patch+json",
69874          "application/strategic-merge-patch+json",
69875          "application/apply-patch+yaml"
69876        ],
69877        "description": "partially update the specified Event",
69878        "operationId": "patchEventsV1beta1NamespacedEvent",
69879        "parameters": [
69880          {
69881            "in": "body",
69882            "name": "body",
69883            "required": true,
69884            "schema": {
69885              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
69886            }
69887          },
69888          {
69889            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69890            "in": "query",
69891            "name": "dryRun",
69892            "type": "string",
69893            "uniqueItems": true
69894          },
69895          {
69896            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
69897            "in": "query",
69898            "name": "fieldManager",
69899            "type": "string",
69900            "uniqueItems": true
69901          },
69902          {
69903            "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.",
69904            "in": "query",
69905            "name": "force",
69906            "type": "boolean",
69907            "uniqueItems": true
69908          }
69909        ],
69910        "produces": [
69911          "application/json",
69912          "application/yaml",
69913          "application/vnd.kubernetes.protobuf"
69914        ],
69915        "responses": {
69916          "200": {
69917            "description": "OK",
69918            "schema": {
69919              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69920            }
69921          },
69922          "401": {
69923            "description": "Unauthorized"
69924          }
69925        },
69926        "schemes": [
69927          "https"
69928        ],
69929        "tags": [
69930          "events_v1beta1"
69931        ],
69932        "x-kubernetes-action": "patch",
69933        "x-kubernetes-group-version-kind": {
69934          "group": "events.k8s.io",
69935          "kind": "Event",
69936          "version": "v1beta1"
69937        }
69938      },
69939      "put": {
69940        "consumes": [
69941          "*/*"
69942        ],
69943        "description": "replace the specified Event",
69944        "operationId": "replaceEventsV1beta1NamespacedEvent",
69945        "parameters": [
69946          {
69947            "in": "body",
69948            "name": "body",
69949            "required": true,
69950            "schema": {
69951              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69952            }
69953          },
69954          {
69955            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69956            "in": "query",
69957            "name": "dryRun",
69958            "type": "string",
69959            "uniqueItems": true
69960          },
69961          {
69962            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69963            "in": "query",
69964            "name": "fieldManager",
69965            "type": "string",
69966            "uniqueItems": true
69967          }
69968        ],
69969        "produces": [
69970          "application/json",
69971          "application/yaml",
69972          "application/vnd.kubernetes.protobuf"
69973        ],
69974        "responses": {
69975          "200": {
69976            "description": "OK",
69977            "schema": {
69978              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69979            }
69980          },
69981          "201": {
69982            "description": "Created",
69983            "schema": {
69984              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69985            }
69986          },
69987          "401": {
69988            "description": "Unauthorized"
69989          }
69990        },
69991        "schemes": [
69992          "https"
69993        ],
69994        "tags": [
69995          "events_v1beta1"
69996        ],
69997        "x-kubernetes-action": "put",
69998        "x-kubernetes-group-version-kind": {
69999          "group": "events.k8s.io",
70000          "kind": "Event",
70001          "version": "v1beta1"
70002        }
70003      }
70004    },
70005    "/apis/events.k8s.io/v1beta1/watch/events": {
70006      "get": {
70007        "consumes": [
70008          "*/*"
70009        ],
70010        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
70011        "operationId": "watchEventsV1beta1EventListForAllNamespaces",
70012        "produces": [
70013          "application/json",
70014          "application/yaml",
70015          "application/vnd.kubernetes.protobuf",
70016          "application/json;stream=watch",
70017          "application/vnd.kubernetes.protobuf;stream=watch"
70018        ],
70019        "responses": {
70020          "200": {
70021            "description": "OK",
70022            "schema": {
70023              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70024            }
70025          },
70026          "401": {
70027            "description": "Unauthorized"
70028          }
70029        },
70030        "schemes": [
70031          "https"
70032        ],
70033        "tags": [
70034          "events_v1beta1"
70035        ],
70036        "x-kubernetes-action": "watchlist",
70037        "x-kubernetes-group-version-kind": {
70038          "group": "events.k8s.io",
70039          "kind": "Event",
70040          "version": "v1beta1"
70041        }
70042      },
70043      "parameters": [
70044        {
70045          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70046          "in": "query",
70047          "name": "allowWatchBookmarks",
70048          "type": "boolean",
70049          "uniqueItems": true
70050        },
70051        {
70052          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70053          "in": "query",
70054          "name": "continue",
70055          "type": "string",
70056          "uniqueItems": true
70057        },
70058        {
70059          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70060          "in": "query",
70061          "name": "fieldSelector",
70062          "type": "string",
70063          "uniqueItems": true
70064        },
70065        {
70066          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70067          "in": "query",
70068          "name": "labelSelector",
70069          "type": "string",
70070          "uniqueItems": true
70071        },
70072        {
70073          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70074          "in": "query",
70075          "name": "limit",
70076          "type": "integer",
70077          "uniqueItems": true
70078        },
70079        {
70080          "description": "If 'true', then the output is pretty printed.",
70081          "in": "query",
70082          "name": "pretty",
70083          "type": "string",
70084          "uniqueItems": true
70085        },
70086        {
70087          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70088          "in": "query",
70089          "name": "resourceVersion",
70090          "type": "string",
70091          "uniqueItems": true
70092        },
70093        {
70094          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70095          "in": "query",
70096          "name": "resourceVersionMatch",
70097          "type": "string",
70098          "uniqueItems": true
70099        },
70100        {
70101          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70102          "in": "query",
70103          "name": "timeoutSeconds",
70104          "type": "integer",
70105          "uniqueItems": true
70106        },
70107        {
70108          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70109          "in": "query",
70110          "name": "watch",
70111          "type": "boolean",
70112          "uniqueItems": true
70113        }
70114      ]
70115    },
70116    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events": {
70117      "get": {
70118        "consumes": [
70119          "*/*"
70120        ],
70121        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
70122        "operationId": "watchEventsV1beta1NamespacedEventList",
70123        "produces": [
70124          "application/json",
70125          "application/yaml",
70126          "application/vnd.kubernetes.protobuf",
70127          "application/json;stream=watch",
70128          "application/vnd.kubernetes.protobuf;stream=watch"
70129        ],
70130        "responses": {
70131          "200": {
70132            "description": "OK",
70133            "schema": {
70134              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70135            }
70136          },
70137          "401": {
70138            "description": "Unauthorized"
70139          }
70140        },
70141        "schemes": [
70142          "https"
70143        ],
70144        "tags": [
70145          "events_v1beta1"
70146        ],
70147        "x-kubernetes-action": "watchlist",
70148        "x-kubernetes-group-version-kind": {
70149          "group": "events.k8s.io",
70150          "kind": "Event",
70151          "version": "v1beta1"
70152        }
70153      },
70154      "parameters": [
70155        {
70156          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70157          "in": "query",
70158          "name": "allowWatchBookmarks",
70159          "type": "boolean",
70160          "uniqueItems": true
70161        },
70162        {
70163          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70164          "in": "query",
70165          "name": "continue",
70166          "type": "string",
70167          "uniqueItems": true
70168        },
70169        {
70170          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70171          "in": "query",
70172          "name": "fieldSelector",
70173          "type": "string",
70174          "uniqueItems": true
70175        },
70176        {
70177          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70178          "in": "query",
70179          "name": "labelSelector",
70180          "type": "string",
70181          "uniqueItems": true
70182        },
70183        {
70184          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70185          "in": "query",
70186          "name": "limit",
70187          "type": "integer",
70188          "uniqueItems": true
70189        },
70190        {
70191          "description": "object name and auth scope, such as for teams and projects",
70192          "in": "path",
70193          "name": "namespace",
70194          "required": true,
70195          "type": "string",
70196          "uniqueItems": true
70197        },
70198        {
70199          "description": "If 'true', then the output is pretty printed.",
70200          "in": "query",
70201          "name": "pretty",
70202          "type": "string",
70203          "uniqueItems": true
70204        },
70205        {
70206          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70207          "in": "query",
70208          "name": "resourceVersion",
70209          "type": "string",
70210          "uniqueItems": true
70211        },
70212        {
70213          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70214          "in": "query",
70215          "name": "resourceVersionMatch",
70216          "type": "string",
70217          "uniqueItems": true
70218        },
70219        {
70220          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70221          "in": "query",
70222          "name": "timeoutSeconds",
70223          "type": "integer",
70224          "uniqueItems": true
70225        },
70226        {
70227          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70228          "in": "query",
70229          "name": "watch",
70230          "type": "boolean",
70231          "uniqueItems": true
70232        }
70233      ]
70234    },
70235    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events/{name}": {
70236      "get": {
70237        "consumes": [
70238          "*/*"
70239        ],
70240        "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.",
70241        "operationId": "watchEventsV1beta1NamespacedEvent",
70242        "produces": [
70243          "application/json",
70244          "application/yaml",
70245          "application/vnd.kubernetes.protobuf",
70246          "application/json;stream=watch",
70247          "application/vnd.kubernetes.protobuf;stream=watch"
70248        ],
70249        "responses": {
70250          "200": {
70251            "description": "OK",
70252            "schema": {
70253              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70254            }
70255          },
70256          "401": {
70257            "description": "Unauthorized"
70258          }
70259        },
70260        "schemes": [
70261          "https"
70262        ],
70263        "tags": [
70264          "events_v1beta1"
70265        ],
70266        "x-kubernetes-action": "watch",
70267        "x-kubernetes-group-version-kind": {
70268          "group": "events.k8s.io",
70269          "kind": "Event",
70270          "version": "v1beta1"
70271        }
70272      },
70273      "parameters": [
70274        {
70275          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70276          "in": "query",
70277          "name": "allowWatchBookmarks",
70278          "type": "boolean",
70279          "uniqueItems": true
70280        },
70281        {
70282          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70283          "in": "query",
70284          "name": "continue",
70285          "type": "string",
70286          "uniqueItems": true
70287        },
70288        {
70289          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70290          "in": "query",
70291          "name": "fieldSelector",
70292          "type": "string",
70293          "uniqueItems": true
70294        },
70295        {
70296          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70297          "in": "query",
70298          "name": "labelSelector",
70299          "type": "string",
70300          "uniqueItems": true
70301        },
70302        {
70303          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70304          "in": "query",
70305          "name": "limit",
70306          "type": "integer",
70307          "uniqueItems": true
70308        },
70309        {
70310          "description": "name of the Event",
70311          "in": "path",
70312          "name": "name",
70313          "required": true,
70314          "type": "string",
70315          "uniqueItems": true
70316        },
70317        {
70318          "description": "object name and auth scope, such as for teams and projects",
70319          "in": "path",
70320          "name": "namespace",
70321          "required": true,
70322          "type": "string",
70323          "uniqueItems": true
70324        },
70325        {
70326          "description": "If 'true', then the output is pretty printed.",
70327          "in": "query",
70328          "name": "pretty",
70329          "type": "string",
70330          "uniqueItems": true
70331        },
70332        {
70333          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70334          "in": "query",
70335          "name": "resourceVersion",
70336          "type": "string",
70337          "uniqueItems": true
70338        },
70339        {
70340          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70341          "in": "query",
70342          "name": "resourceVersionMatch",
70343          "type": "string",
70344          "uniqueItems": true
70345        },
70346        {
70347          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70348          "in": "query",
70349          "name": "timeoutSeconds",
70350          "type": "integer",
70351          "uniqueItems": true
70352        },
70353        {
70354          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70355          "in": "query",
70356          "name": "watch",
70357          "type": "boolean",
70358          "uniqueItems": true
70359        }
70360      ]
70361    },
70362    "/apis/extensions/": {
70363      "get": {
70364        "consumes": [
70365          "application/json",
70366          "application/yaml",
70367          "application/vnd.kubernetes.protobuf"
70368        ],
70369        "description": "get information of a group",
70370        "operationId": "getExtensionsAPIGroup",
70371        "produces": [
70372          "application/json",
70373          "application/yaml",
70374          "application/vnd.kubernetes.protobuf"
70375        ],
70376        "responses": {
70377          "200": {
70378            "description": "OK",
70379            "schema": {
70380              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
70381            }
70382          },
70383          "401": {
70384            "description": "Unauthorized"
70385          }
70386        },
70387        "schemes": [
70388          "https"
70389        ],
70390        "tags": [
70391          "extensions"
70392        ]
70393      }
70394    },
70395    "/apis/extensions/v1beta1/": {
70396      "get": {
70397        "consumes": [
70398          "application/json",
70399          "application/yaml",
70400          "application/vnd.kubernetes.protobuf"
70401        ],
70402        "description": "get available resources",
70403        "operationId": "getExtensionsV1beta1APIResources",
70404        "produces": [
70405          "application/json",
70406          "application/yaml",
70407          "application/vnd.kubernetes.protobuf"
70408        ],
70409        "responses": {
70410          "200": {
70411            "description": "OK",
70412            "schema": {
70413              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
70414            }
70415          },
70416          "401": {
70417            "description": "Unauthorized"
70418          }
70419        },
70420        "schemes": [
70421          "https"
70422        ],
70423        "tags": [
70424          "extensions_v1beta1"
70425        ]
70426      }
70427    },
70428    "/apis/extensions/v1beta1/ingresses": {
70429      "get": {
70430        "consumes": [
70431          "*/*"
70432        ],
70433        "description": "list or watch objects of kind Ingress",
70434        "operationId": "listExtensionsV1beta1IngressForAllNamespaces",
70435        "produces": [
70436          "application/json",
70437          "application/yaml",
70438          "application/vnd.kubernetes.protobuf",
70439          "application/json;stream=watch",
70440          "application/vnd.kubernetes.protobuf;stream=watch"
70441        ],
70442        "responses": {
70443          "200": {
70444            "description": "OK",
70445            "schema": {
70446              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressList"
70447            }
70448          },
70449          "401": {
70450            "description": "Unauthorized"
70451          }
70452        },
70453        "schemes": [
70454          "https"
70455        ],
70456        "tags": [
70457          "extensions_v1beta1"
70458        ],
70459        "x-kubernetes-action": "list",
70460        "x-kubernetes-group-version-kind": {
70461          "group": "extensions",
70462          "kind": "Ingress",
70463          "version": "v1beta1"
70464        }
70465      },
70466      "parameters": [
70467        {
70468          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70469          "in": "query",
70470          "name": "allowWatchBookmarks",
70471          "type": "boolean",
70472          "uniqueItems": true
70473        },
70474        {
70475          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70476          "in": "query",
70477          "name": "continue",
70478          "type": "string",
70479          "uniqueItems": true
70480        },
70481        {
70482          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70483          "in": "query",
70484          "name": "fieldSelector",
70485          "type": "string",
70486          "uniqueItems": true
70487        },
70488        {
70489          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70490          "in": "query",
70491          "name": "labelSelector",
70492          "type": "string",
70493          "uniqueItems": true
70494        },
70495        {
70496          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70497          "in": "query",
70498          "name": "limit",
70499          "type": "integer",
70500          "uniqueItems": true
70501        },
70502        {
70503          "description": "If 'true', then the output is pretty printed.",
70504          "in": "query",
70505          "name": "pretty",
70506          "type": "string",
70507          "uniqueItems": true
70508        },
70509        {
70510          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70511          "in": "query",
70512          "name": "resourceVersion",
70513          "type": "string",
70514          "uniqueItems": true
70515        },
70516        {
70517          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70518          "in": "query",
70519          "name": "resourceVersionMatch",
70520          "type": "string",
70521          "uniqueItems": true
70522        },
70523        {
70524          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70525          "in": "query",
70526          "name": "timeoutSeconds",
70527          "type": "integer",
70528          "uniqueItems": true
70529        },
70530        {
70531          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70532          "in": "query",
70533          "name": "watch",
70534          "type": "boolean",
70535          "uniqueItems": true
70536        }
70537      ]
70538    },
70539    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses": {
70540      "delete": {
70541        "consumes": [
70542          "*/*"
70543        ],
70544        "description": "delete collection of Ingress",
70545        "operationId": "deleteExtensionsV1beta1CollectionNamespacedIngress",
70546        "parameters": [
70547          {
70548            "in": "body",
70549            "name": "body",
70550            "schema": {
70551              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70552            }
70553          },
70554          {
70555            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70556            "in": "query",
70557            "name": "continue",
70558            "type": "string",
70559            "uniqueItems": true
70560          },
70561          {
70562            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70563            "in": "query",
70564            "name": "dryRun",
70565            "type": "string",
70566            "uniqueItems": true
70567          },
70568          {
70569            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70570            "in": "query",
70571            "name": "fieldSelector",
70572            "type": "string",
70573            "uniqueItems": true
70574          },
70575          {
70576            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
70577            "in": "query",
70578            "name": "gracePeriodSeconds",
70579            "type": "integer",
70580            "uniqueItems": true
70581          },
70582          {
70583            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70584            "in": "query",
70585            "name": "labelSelector",
70586            "type": "string",
70587            "uniqueItems": true
70588          },
70589          {
70590            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70591            "in": "query",
70592            "name": "limit",
70593            "type": "integer",
70594            "uniqueItems": true
70595          },
70596          {
70597            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
70598            "in": "query",
70599            "name": "orphanDependents",
70600            "type": "boolean",
70601            "uniqueItems": true
70602          },
70603          {
70604            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
70605            "in": "query",
70606            "name": "propagationPolicy",
70607            "type": "string",
70608            "uniqueItems": true
70609          },
70610          {
70611            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70612            "in": "query",
70613            "name": "resourceVersion",
70614            "type": "string",
70615            "uniqueItems": true
70616          },
70617          {
70618            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70619            "in": "query",
70620            "name": "resourceVersionMatch",
70621            "type": "string",
70622            "uniqueItems": true
70623          },
70624          {
70625            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70626            "in": "query",
70627            "name": "timeoutSeconds",
70628            "type": "integer",
70629            "uniqueItems": true
70630          }
70631        ],
70632        "produces": [
70633          "application/json",
70634          "application/yaml",
70635          "application/vnd.kubernetes.protobuf"
70636        ],
70637        "responses": {
70638          "200": {
70639            "description": "OK",
70640            "schema": {
70641              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70642            }
70643          },
70644          "401": {
70645            "description": "Unauthorized"
70646          }
70647        },
70648        "schemes": [
70649          "https"
70650        ],
70651        "tags": [
70652          "extensions_v1beta1"
70653        ],
70654        "x-kubernetes-action": "deletecollection",
70655        "x-kubernetes-group-version-kind": {
70656          "group": "extensions",
70657          "kind": "Ingress",
70658          "version": "v1beta1"
70659        }
70660      },
70661      "get": {
70662        "consumes": [
70663          "*/*"
70664        ],
70665        "description": "list or watch objects of kind Ingress",
70666        "operationId": "listExtensionsV1beta1NamespacedIngress",
70667        "parameters": [
70668          {
70669            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70670            "in": "query",
70671            "name": "allowWatchBookmarks",
70672            "type": "boolean",
70673            "uniqueItems": true
70674          },
70675          {
70676            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70677            "in": "query",
70678            "name": "continue",
70679            "type": "string",
70680            "uniqueItems": true
70681          },
70682          {
70683            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70684            "in": "query",
70685            "name": "fieldSelector",
70686            "type": "string",
70687            "uniqueItems": true
70688          },
70689          {
70690            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70691            "in": "query",
70692            "name": "labelSelector",
70693            "type": "string",
70694            "uniqueItems": true
70695          },
70696          {
70697            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70698            "in": "query",
70699            "name": "limit",
70700            "type": "integer",
70701            "uniqueItems": true
70702          },
70703          {
70704            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70705            "in": "query",
70706            "name": "resourceVersion",
70707            "type": "string",
70708            "uniqueItems": true
70709          },
70710          {
70711            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70712            "in": "query",
70713            "name": "resourceVersionMatch",
70714            "type": "string",
70715            "uniqueItems": true
70716          },
70717          {
70718            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70719            "in": "query",
70720            "name": "timeoutSeconds",
70721            "type": "integer",
70722            "uniqueItems": true
70723          },
70724          {
70725            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70726            "in": "query",
70727            "name": "watch",
70728            "type": "boolean",
70729            "uniqueItems": true
70730          }
70731        ],
70732        "produces": [
70733          "application/json",
70734          "application/yaml",
70735          "application/vnd.kubernetes.protobuf",
70736          "application/json;stream=watch",
70737          "application/vnd.kubernetes.protobuf;stream=watch"
70738        ],
70739        "responses": {
70740          "200": {
70741            "description": "OK",
70742            "schema": {
70743              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressList"
70744            }
70745          },
70746          "401": {
70747            "description": "Unauthorized"
70748          }
70749        },
70750        "schemes": [
70751          "https"
70752        ],
70753        "tags": [
70754          "extensions_v1beta1"
70755        ],
70756        "x-kubernetes-action": "list",
70757        "x-kubernetes-group-version-kind": {
70758          "group": "extensions",
70759          "kind": "Ingress",
70760          "version": "v1beta1"
70761        }
70762      },
70763      "parameters": [
70764        {
70765          "description": "object name and auth scope, such as for teams and projects",
70766          "in": "path",
70767          "name": "namespace",
70768          "required": true,
70769          "type": "string",
70770          "uniqueItems": true
70771        },
70772        {
70773          "description": "If 'true', then the output is pretty printed.",
70774          "in": "query",
70775          "name": "pretty",
70776          "type": "string",
70777          "uniqueItems": true
70778        }
70779      ],
70780      "post": {
70781        "consumes": [
70782          "*/*"
70783        ],
70784        "description": "create an Ingress",
70785        "operationId": "createExtensionsV1beta1NamespacedIngress",
70786        "parameters": [
70787          {
70788            "in": "body",
70789            "name": "body",
70790            "required": true,
70791            "schema": {
70792              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70793            }
70794          },
70795          {
70796            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70797            "in": "query",
70798            "name": "dryRun",
70799            "type": "string",
70800            "uniqueItems": true
70801          },
70802          {
70803            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
70804            "in": "query",
70805            "name": "fieldManager",
70806            "type": "string",
70807            "uniqueItems": true
70808          }
70809        ],
70810        "produces": [
70811          "application/json",
70812          "application/yaml",
70813          "application/vnd.kubernetes.protobuf"
70814        ],
70815        "responses": {
70816          "200": {
70817            "description": "OK",
70818            "schema": {
70819              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70820            }
70821          },
70822          "201": {
70823            "description": "Created",
70824            "schema": {
70825              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70826            }
70827          },
70828          "202": {
70829            "description": "Accepted",
70830            "schema": {
70831              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70832            }
70833          },
70834          "401": {
70835            "description": "Unauthorized"
70836          }
70837        },
70838        "schemes": [
70839          "https"
70840        ],
70841        "tags": [
70842          "extensions_v1beta1"
70843        ],
70844        "x-kubernetes-action": "post",
70845        "x-kubernetes-group-version-kind": {
70846          "group": "extensions",
70847          "kind": "Ingress",
70848          "version": "v1beta1"
70849        }
70850      }
70851    },
70852    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}": {
70853      "delete": {
70854        "consumes": [
70855          "*/*"
70856        ],
70857        "description": "delete an Ingress",
70858        "operationId": "deleteExtensionsV1beta1NamespacedIngress",
70859        "parameters": [
70860          {
70861            "in": "body",
70862            "name": "body",
70863            "schema": {
70864              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70865            }
70866          },
70867          {
70868            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70869            "in": "query",
70870            "name": "dryRun",
70871            "type": "string",
70872            "uniqueItems": true
70873          },
70874          {
70875            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
70876            "in": "query",
70877            "name": "gracePeriodSeconds",
70878            "type": "integer",
70879            "uniqueItems": true
70880          },
70881          {
70882            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
70883            "in": "query",
70884            "name": "orphanDependents",
70885            "type": "boolean",
70886            "uniqueItems": true
70887          },
70888          {
70889            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
70890            "in": "query",
70891            "name": "propagationPolicy",
70892            "type": "string",
70893            "uniqueItems": true
70894          }
70895        ],
70896        "produces": [
70897          "application/json",
70898          "application/yaml",
70899          "application/vnd.kubernetes.protobuf"
70900        ],
70901        "responses": {
70902          "200": {
70903            "description": "OK",
70904            "schema": {
70905              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70906            }
70907          },
70908          "202": {
70909            "description": "Accepted",
70910            "schema": {
70911              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70912            }
70913          },
70914          "401": {
70915            "description": "Unauthorized"
70916          }
70917        },
70918        "schemes": [
70919          "https"
70920        ],
70921        "tags": [
70922          "extensions_v1beta1"
70923        ],
70924        "x-kubernetes-action": "delete",
70925        "x-kubernetes-group-version-kind": {
70926          "group": "extensions",
70927          "kind": "Ingress",
70928          "version": "v1beta1"
70929        }
70930      },
70931      "get": {
70932        "consumes": [
70933          "*/*"
70934        ],
70935        "description": "read the specified Ingress",
70936        "operationId": "readExtensionsV1beta1NamespacedIngress",
70937        "produces": [
70938          "application/json",
70939          "application/yaml",
70940          "application/vnd.kubernetes.protobuf"
70941        ],
70942        "responses": {
70943          "200": {
70944            "description": "OK",
70945            "schema": {
70946              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70947            }
70948          },
70949          "401": {
70950            "description": "Unauthorized"
70951          }
70952        },
70953        "schemes": [
70954          "https"
70955        ],
70956        "tags": [
70957          "extensions_v1beta1"
70958        ],
70959        "x-kubernetes-action": "get",
70960        "x-kubernetes-group-version-kind": {
70961          "group": "extensions",
70962          "kind": "Ingress",
70963          "version": "v1beta1"
70964        }
70965      },
70966      "parameters": [
70967        {
70968          "description": "name of the Ingress",
70969          "in": "path",
70970          "name": "name",
70971          "required": true,
70972          "type": "string",
70973          "uniqueItems": true
70974        },
70975        {
70976          "description": "object name and auth scope, such as for teams and projects",
70977          "in": "path",
70978          "name": "namespace",
70979          "required": true,
70980          "type": "string",
70981          "uniqueItems": true
70982        },
70983        {
70984          "description": "If 'true', then the output is pretty printed.",
70985          "in": "query",
70986          "name": "pretty",
70987          "type": "string",
70988          "uniqueItems": true
70989        }
70990      ],
70991      "patch": {
70992        "consumes": [
70993          "application/json-patch+json",
70994          "application/merge-patch+json",
70995          "application/strategic-merge-patch+json",
70996          "application/apply-patch+yaml"
70997        ],
70998        "description": "partially update the specified Ingress",
70999        "operationId": "patchExtensionsV1beta1NamespacedIngress",
71000        "parameters": [
71001          {
71002            "in": "body",
71003            "name": "body",
71004            "required": true,
71005            "schema": {
71006              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
71007            }
71008          },
71009          {
71010            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71011            "in": "query",
71012            "name": "dryRun",
71013            "type": "string",
71014            "uniqueItems": true
71015          },
71016          {
71017            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
71018            "in": "query",
71019            "name": "fieldManager",
71020            "type": "string",
71021            "uniqueItems": true
71022          },
71023          {
71024            "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.",
71025            "in": "query",
71026            "name": "force",
71027            "type": "boolean",
71028            "uniqueItems": true
71029          }
71030        ],
71031        "produces": [
71032          "application/json",
71033          "application/yaml",
71034          "application/vnd.kubernetes.protobuf"
71035        ],
71036        "responses": {
71037          "200": {
71038            "description": "OK",
71039            "schema": {
71040              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71041            }
71042          },
71043          "401": {
71044            "description": "Unauthorized"
71045          }
71046        },
71047        "schemes": [
71048          "https"
71049        ],
71050        "tags": [
71051          "extensions_v1beta1"
71052        ],
71053        "x-kubernetes-action": "patch",
71054        "x-kubernetes-group-version-kind": {
71055          "group": "extensions",
71056          "kind": "Ingress",
71057          "version": "v1beta1"
71058        }
71059      },
71060      "put": {
71061        "consumes": [
71062          "*/*"
71063        ],
71064        "description": "replace the specified Ingress",
71065        "operationId": "replaceExtensionsV1beta1NamespacedIngress",
71066        "parameters": [
71067          {
71068            "in": "body",
71069            "name": "body",
71070            "required": true,
71071            "schema": {
71072              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71073            }
71074          },
71075          {
71076            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71077            "in": "query",
71078            "name": "dryRun",
71079            "type": "string",
71080            "uniqueItems": true
71081          },
71082          {
71083            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71084            "in": "query",
71085            "name": "fieldManager",
71086            "type": "string",
71087            "uniqueItems": true
71088          }
71089        ],
71090        "produces": [
71091          "application/json",
71092          "application/yaml",
71093          "application/vnd.kubernetes.protobuf"
71094        ],
71095        "responses": {
71096          "200": {
71097            "description": "OK",
71098            "schema": {
71099              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71100            }
71101          },
71102          "201": {
71103            "description": "Created",
71104            "schema": {
71105              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71106            }
71107          },
71108          "401": {
71109            "description": "Unauthorized"
71110          }
71111        },
71112        "schemes": [
71113          "https"
71114        ],
71115        "tags": [
71116          "extensions_v1beta1"
71117        ],
71118        "x-kubernetes-action": "put",
71119        "x-kubernetes-group-version-kind": {
71120          "group": "extensions",
71121          "kind": "Ingress",
71122          "version": "v1beta1"
71123        }
71124      }
71125    },
71126    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status": {
71127      "get": {
71128        "consumes": [
71129          "*/*"
71130        ],
71131        "description": "read status of the specified Ingress",
71132        "operationId": "readExtensionsV1beta1NamespacedIngressStatus",
71133        "produces": [
71134          "application/json",
71135          "application/yaml",
71136          "application/vnd.kubernetes.protobuf"
71137        ],
71138        "responses": {
71139          "200": {
71140            "description": "OK",
71141            "schema": {
71142              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71143            }
71144          },
71145          "401": {
71146            "description": "Unauthorized"
71147          }
71148        },
71149        "schemes": [
71150          "https"
71151        ],
71152        "tags": [
71153          "extensions_v1beta1"
71154        ],
71155        "x-kubernetes-action": "get",
71156        "x-kubernetes-group-version-kind": {
71157          "group": "extensions",
71158          "kind": "Ingress",
71159          "version": "v1beta1"
71160        }
71161      },
71162      "parameters": [
71163        {
71164          "description": "name of the Ingress",
71165          "in": "path",
71166          "name": "name",
71167          "required": true,
71168          "type": "string",
71169          "uniqueItems": true
71170        },
71171        {
71172          "description": "object name and auth scope, such as for teams and projects",
71173          "in": "path",
71174          "name": "namespace",
71175          "required": true,
71176          "type": "string",
71177          "uniqueItems": true
71178        },
71179        {
71180          "description": "If 'true', then the output is pretty printed.",
71181          "in": "query",
71182          "name": "pretty",
71183          "type": "string",
71184          "uniqueItems": true
71185        }
71186      ],
71187      "patch": {
71188        "consumes": [
71189          "application/json-patch+json",
71190          "application/merge-patch+json",
71191          "application/strategic-merge-patch+json",
71192          "application/apply-patch+yaml"
71193        ],
71194        "description": "partially update status of the specified Ingress",
71195        "operationId": "patchExtensionsV1beta1NamespacedIngressStatus",
71196        "parameters": [
71197          {
71198            "in": "body",
71199            "name": "body",
71200            "required": true,
71201            "schema": {
71202              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
71203            }
71204          },
71205          {
71206            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71207            "in": "query",
71208            "name": "dryRun",
71209            "type": "string",
71210            "uniqueItems": true
71211          },
71212          {
71213            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
71214            "in": "query",
71215            "name": "fieldManager",
71216            "type": "string",
71217            "uniqueItems": true
71218          },
71219          {
71220            "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.",
71221            "in": "query",
71222            "name": "force",
71223            "type": "boolean",
71224            "uniqueItems": true
71225          }
71226        ],
71227        "produces": [
71228          "application/json",
71229          "application/yaml",
71230          "application/vnd.kubernetes.protobuf"
71231        ],
71232        "responses": {
71233          "200": {
71234            "description": "OK",
71235            "schema": {
71236              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71237            }
71238          },
71239          "401": {
71240            "description": "Unauthorized"
71241          }
71242        },
71243        "schemes": [
71244          "https"
71245        ],
71246        "tags": [
71247          "extensions_v1beta1"
71248        ],
71249        "x-kubernetes-action": "patch",
71250        "x-kubernetes-group-version-kind": {
71251          "group": "extensions",
71252          "kind": "Ingress",
71253          "version": "v1beta1"
71254        }
71255      },
71256      "put": {
71257        "consumes": [
71258          "*/*"
71259        ],
71260        "description": "replace status of the specified Ingress",
71261        "operationId": "replaceExtensionsV1beta1NamespacedIngressStatus",
71262        "parameters": [
71263          {
71264            "in": "body",
71265            "name": "body",
71266            "required": true,
71267            "schema": {
71268              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71269            }
71270          },
71271          {
71272            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71273            "in": "query",
71274            "name": "dryRun",
71275            "type": "string",
71276            "uniqueItems": true
71277          },
71278          {
71279            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71280            "in": "query",
71281            "name": "fieldManager",
71282            "type": "string",
71283            "uniqueItems": true
71284          }
71285        ],
71286        "produces": [
71287          "application/json",
71288          "application/yaml",
71289          "application/vnd.kubernetes.protobuf"
71290        ],
71291        "responses": {
71292          "200": {
71293            "description": "OK",
71294            "schema": {
71295              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71296            }
71297          },
71298          "201": {
71299            "description": "Created",
71300            "schema": {
71301              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71302            }
71303          },
71304          "401": {
71305            "description": "Unauthorized"
71306          }
71307        },
71308        "schemes": [
71309          "https"
71310        ],
71311        "tags": [
71312          "extensions_v1beta1"
71313        ],
71314        "x-kubernetes-action": "put",
71315        "x-kubernetes-group-version-kind": {
71316          "group": "extensions",
71317          "kind": "Ingress",
71318          "version": "v1beta1"
71319        }
71320      }
71321    },
71322    "/apis/extensions/v1beta1/watch/ingresses": {
71323      "get": {
71324        "consumes": [
71325          "*/*"
71326        ],
71327        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
71328        "operationId": "watchExtensionsV1beta1IngressListForAllNamespaces",
71329        "produces": [
71330          "application/json",
71331          "application/yaml",
71332          "application/vnd.kubernetes.protobuf",
71333          "application/json;stream=watch",
71334          "application/vnd.kubernetes.protobuf;stream=watch"
71335        ],
71336        "responses": {
71337          "200": {
71338            "description": "OK",
71339            "schema": {
71340              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71341            }
71342          },
71343          "401": {
71344            "description": "Unauthorized"
71345          }
71346        },
71347        "schemes": [
71348          "https"
71349        ],
71350        "tags": [
71351          "extensions_v1beta1"
71352        ],
71353        "x-kubernetes-action": "watchlist",
71354        "x-kubernetes-group-version-kind": {
71355          "group": "extensions",
71356          "kind": "Ingress",
71357          "version": "v1beta1"
71358        }
71359      },
71360      "parameters": [
71361        {
71362          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71363          "in": "query",
71364          "name": "allowWatchBookmarks",
71365          "type": "boolean",
71366          "uniqueItems": true
71367        },
71368        {
71369          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71370          "in": "query",
71371          "name": "continue",
71372          "type": "string",
71373          "uniqueItems": true
71374        },
71375        {
71376          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71377          "in": "query",
71378          "name": "fieldSelector",
71379          "type": "string",
71380          "uniqueItems": true
71381        },
71382        {
71383          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71384          "in": "query",
71385          "name": "labelSelector",
71386          "type": "string",
71387          "uniqueItems": true
71388        },
71389        {
71390          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71391          "in": "query",
71392          "name": "limit",
71393          "type": "integer",
71394          "uniqueItems": true
71395        },
71396        {
71397          "description": "If 'true', then the output is pretty printed.",
71398          "in": "query",
71399          "name": "pretty",
71400          "type": "string",
71401          "uniqueItems": true
71402        },
71403        {
71404          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71405          "in": "query",
71406          "name": "resourceVersion",
71407          "type": "string",
71408          "uniqueItems": true
71409        },
71410        {
71411          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71412          "in": "query",
71413          "name": "resourceVersionMatch",
71414          "type": "string",
71415          "uniqueItems": true
71416        },
71417        {
71418          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71419          "in": "query",
71420          "name": "timeoutSeconds",
71421          "type": "integer",
71422          "uniqueItems": true
71423        },
71424        {
71425          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71426          "in": "query",
71427          "name": "watch",
71428          "type": "boolean",
71429          "uniqueItems": true
71430        }
71431      ]
71432    },
71433    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses": {
71434      "get": {
71435        "consumes": [
71436          "*/*"
71437        ],
71438        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
71439        "operationId": "watchExtensionsV1beta1NamespacedIngressList",
71440        "produces": [
71441          "application/json",
71442          "application/yaml",
71443          "application/vnd.kubernetes.protobuf",
71444          "application/json;stream=watch",
71445          "application/vnd.kubernetes.protobuf;stream=watch"
71446        ],
71447        "responses": {
71448          "200": {
71449            "description": "OK",
71450            "schema": {
71451              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71452            }
71453          },
71454          "401": {
71455            "description": "Unauthorized"
71456          }
71457        },
71458        "schemes": [
71459          "https"
71460        ],
71461        "tags": [
71462          "extensions_v1beta1"
71463        ],
71464        "x-kubernetes-action": "watchlist",
71465        "x-kubernetes-group-version-kind": {
71466          "group": "extensions",
71467          "kind": "Ingress",
71468          "version": "v1beta1"
71469        }
71470      },
71471      "parameters": [
71472        {
71473          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71474          "in": "query",
71475          "name": "allowWatchBookmarks",
71476          "type": "boolean",
71477          "uniqueItems": true
71478        },
71479        {
71480          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71481          "in": "query",
71482          "name": "continue",
71483          "type": "string",
71484          "uniqueItems": true
71485        },
71486        {
71487          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71488          "in": "query",
71489          "name": "fieldSelector",
71490          "type": "string",
71491          "uniqueItems": true
71492        },
71493        {
71494          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71495          "in": "query",
71496          "name": "labelSelector",
71497          "type": "string",
71498          "uniqueItems": true
71499        },
71500        {
71501          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71502          "in": "query",
71503          "name": "limit",
71504          "type": "integer",
71505          "uniqueItems": true
71506        },
71507        {
71508          "description": "object name and auth scope, such as for teams and projects",
71509          "in": "path",
71510          "name": "namespace",
71511          "required": true,
71512          "type": "string",
71513          "uniqueItems": true
71514        },
71515        {
71516          "description": "If 'true', then the output is pretty printed.",
71517          "in": "query",
71518          "name": "pretty",
71519          "type": "string",
71520          "uniqueItems": true
71521        },
71522        {
71523          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71524          "in": "query",
71525          "name": "resourceVersion",
71526          "type": "string",
71527          "uniqueItems": true
71528        },
71529        {
71530          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71531          "in": "query",
71532          "name": "resourceVersionMatch",
71533          "type": "string",
71534          "uniqueItems": true
71535        },
71536        {
71537          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71538          "in": "query",
71539          "name": "timeoutSeconds",
71540          "type": "integer",
71541          "uniqueItems": true
71542        },
71543        {
71544          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71545          "in": "query",
71546          "name": "watch",
71547          "type": "boolean",
71548          "uniqueItems": true
71549        }
71550      ]
71551    },
71552    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": {
71553      "get": {
71554        "consumes": [
71555          "*/*"
71556        ],
71557        "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.",
71558        "operationId": "watchExtensionsV1beta1NamespacedIngress",
71559        "produces": [
71560          "application/json",
71561          "application/yaml",
71562          "application/vnd.kubernetes.protobuf",
71563          "application/json;stream=watch",
71564          "application/vnd.kubernetes.protobuf;stream=watch"
71565        ],
71566        "responses": {
71567          "200": {
71568            "description": "OK",
71569            "schema": {
71570              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71571            }
71572          },
71573          "401": {
71574            "description": "Unauthorized"
71575          }
71576        },
71577        "schemes": [
71578          "https"
71579        ],
71580        "tags": [
71581          "extensions_v1beta1"
71582        ],
71583        "x-kubernetes-action": "watch",
71584        "x-kubernetes-group-version-kind": {
71585          "group": "extensions",
71586          "kind": "Ingress",
71587          "version": "v1beta1"
71588        }
71589      },
71590      "parameters": [
71591        {
71592          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71593          "in": "query",
71594          "name": "allowWatchBookmarks",
71595          "type": "boolean",
71596          "uniqueItems": true
71597        },
71598        {
71599          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71600          "in": "query",
71601          "name": "continue",
71602          "type": "string",
71603          "uniqueItems": true
71604        },
71605        {
71606          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71607          "in": "query",
71608          "name": "fieldSelector",
71609          "type": "string",
71610          "uniqueItems": true
71611        },
71612        {
71613          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71614          "in": "query",
71615          "name": "labelSelector",
71616          "type": "string",
71617          "uniqueItems": true
71618        },
71619        {
71620          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71621          "in": "query",
71622          "name": "limit",
71623          "type": "integer",
71624          "uniqueItems": true
71625        },
71626        {
71627          "description": "name of the Ingress",
71628          "in": "path",
71629          "name": "name",
71630          "required": true,
71631          "type": "string",
71632          "uniqueItems": true
71633        },
71634        {
71635          "description": "object name and auth scope, such as for teams and projects",
71636          "in": "path",
71637          "name": "namespace",
71638          "required": true,
71639          "type": "string",
71640          "uniqueItems": true
71641        },
71642        {
71643          "description": "If 'true', then the output is pretty printed.",
71644          "in": "query",
71645          "name": "pretty",
71646          "type": "string",
71647          "uniqueItems": true
71648        },
71649        {
71650          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71651          "in": "query",
71652          "name": "resourceVersion",
71653          "type": "string",
71654          "uniqueItems": true
71655        },
71656        {
71657          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71658          "in": "query",
71659          "name": "resourceVersionMatch",
71660          "type": "string",
71661          "uniqueItems": true
71662        },
71663        {
71664          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71665          "in": "query",
71666          "name": "timeoutSeconds",
71667          "type": "integer",
71668          "uniqueItems": true
71669        },
71670        {
71671          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71672          "in": "query",
71673          "name": "watch",
71674          "type": "boolean",
71675          "uniqueItems": true
71676        }
71677      ]
71678    },
71679    "/apis/flowcontrol.apiserver.k8s.io/": {
71680      "get": {
71681        "consumes": [
71682          "application/json",
71683          "application/yaml",
71684          "application/vnd.kubernetes.protobuf"
71685        ],
71686        "description": "get information of a group",
71687        "operationId": "getFlowcontrolApiserverAPIGroup",
71688        "produces": [
71689          "application/json",
71690          "application/yaml",
71691          "application/vnd.kubernetes.protobuf"
71692        ],
71693        "responses": {
71694          "200": {
71695            "description": "OK",
71696            "schema": {
71697              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
71698            }
71699          },
71700          "401": {
71701            "description": "Unauthorized"
71702          }
71703        },
71704        "schemes": [
71705          "https"
71706        ],
71707        "tags": [
71708          "flowcontrolApiserver"
71709        ]
71710      }
71711    },
71712    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/": {
71713      "get": {
71714        "consumes": [
71715          "application/json",
71716          "application/yaml",
71717          "application/vnd.kubernetes.protobuf"
71718        ],
71719        "description": "get available resources",
71720        "operationId": "getFlowcontrolApiserverV1alpha1APIResources",
71721        "produces": [
71722          "application/json",
71723          "application/yaml",
71724          "application/vnd.kubernetes.protobuf"
71725        ],
71726        "responses": {
71727          "200": {
71728            "description": "OK",
71729            "schema": {
71730              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
71731            }
71732          },
71733          "401": {
71734            "description": "Unauthorized"
71735          }
71736        },
71737        "schemes": [
71738          "https"
71739        ],
71740        "tags": [
71741          "flowcontrolApiserver_v1alpha1"
71742        ]
71743      }
71744    },
71745    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas": {
71746      "delete": {
71747        "consumes": [
71748          "*/*"
71749        ],
71750        "description": "delete collection of FlowSchema",
71751        "operationId": "deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema",
71752        "parameters": [
71753          {
71754            "in": "body",
71755            "name": "body",
71756            "schema": {
71757              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
71758            }
71759          },
71760          {
71761            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71762            "in": "query",
71763            "name": "continue",
71764            "type": "string",
71765            "uniqueItems": true
71766          },
71767          {
71768            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71769            "in": "query",
71770            "name": "dryRun",
71771            "type": "string",
71772            "uniqueItems": true
71773          },
71774          {
71775            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71776            "in": "query",
71777            "name": "fieldSelector",
71778            "type": "string",
71779            "uniqueItems": true
71780          },
71781          {
71782            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
71783            "in": "query",
71784            "name": "gracePeriodSeconds",
71785            "type": "integer",
71786            "uniqueItems": true
71787          },
71788          {
71789            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71790            "in": "query",
71791            "name": "labelSelector",
71792            "type": "string",
71793            "uniqueItems": true
71794          },
71795          {
71796            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71797            "in": "query",
71798            "name": "limit",
71799            "type": "integer",
71800            "uniqueItems": true
71801          },
71802          {
71803            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
71804            "in": "query",
71805            "name": "orphanDependents",
71806            "type": "boolean",
71807            "uniqueItems": true
71808          },
71809          {
71810            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
71811            "in": "query",
71812            "name": "propagationPolicy",
71813            "type": "string",
71814            "uniqueItems": true
71815          },
71816          {
71817            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71818            "in": "query",
71819            "name": "resourceVersion",
71820            "type": "string",
71821            "uniqueItems": true
71822          },
71823          {
71824            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71825            "in": "query",
71826            "name": "resourceVersionMatch",
71827            "type": "string",
71828            "uniqueItems": true
71829          },
71830          {
71831            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71832            "in": "query",
71833            "name": "timeoutSeconds",
71834            "type": "integer",
71835            "uniqueItems": true
71836          }
71837        ],
71838        "produces": [
71839          "application/json",
71840          "application/yaml",
71841          "application/vnd.kubernetes.protobuf"
71842        ],
71843        "responses": {
71844          "200": {
71845            "description": "OK",
71846            "schema": {
71847              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
71848            }
71849          },
71850          "401": {
71851            "description": "Unauthorized"
71852          }
71853        },
71854        "schemes": [
71855          "https"
71856        ],
71857        "tags": [
71858          "flowcontrolApiserver_v1alpha1"
71859        ],
71860        "x-kubernetes-action": "deletecollection",
71861        "x-kubernetes-group-version-kind": {
71862          "group": "flowcontrol.apiserver.k8s.io",
71863          "kind": "FlowSchema",
71864          "version": "v1alpha1"
71865        }
71866      },
71867      "get": {
71868        "consumes": [
71869          "*/*"
71870        ],
71871        "description": "list or watch objects of kind FlowSchema",
71872        "operationId": "listFlowcontrolApiserverV1alpha1FlowSchema",
71873        "parameters": [
71874          {
71875            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71876            "in": "query",
71877            "name": "allowWatchBookmarks",
71878            "type": "boolean",
71879            "uniqueItems": true
71880          },
71881          {
71882            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71883            "in": "query",
71884            "name": "continue",
71885            "type": "string",
71886            "uniqueItems": true
71887          },
71888          {
71889            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71890            "in": "query",
71891            "name": "fieldSelector",
71892            "type": "string",
71893            "uniqueItems": true
71894          },
71895          {
71896            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71897            "in": "query",
71898            "name": "labelSelector",
71899            "type": "string",
71900            "uniqueItems": true
71901          },
71902          {
71903            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71904            "in": "query",
71905            "name": "limit",
71906            "type": "integer",
71907            "uniqueItems": true
71908          },
71909          {
71910            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71911            "in": "query",
71912            "name": "resourceVersion",
71913            "type": "string",
71914            "uniqueItems": true
71915          },
71916          {
71917            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71918            "in": "query",
71919            "name": "resourceVersionMatch",
71920            "type": "string",
71921            "uniqueItems": true
71922          },
71923          {
71924            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71925            "in": "query",
71926            "name": "timeoutSeconds",
71927            "type": "integer",
71928            "uniqueItems": true
71929          },
71930          {
71931            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71932            "in": "query",
71933            "name": "watch",
71934            "type": "boolean",
71935            "uniqueItems": true
71936          }
71937        ],
71938        "produces": [
71939          "application/json",
71940          "application/yaml",
71941          "application/vnd.kubernetes.protobuf",
71942          "application/json;stream=watch",
71943          "application/vnd.kubernetes.protobuf;stream=watch"
71944        ],
71945        "responses": {
71946          "200": {
71947            "description": "OK",
71948            "schema": {
71949              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaList"
71950            }
71951          },
71952          "401": {
71953            "description": "Unauthorized"
71954          }
71955        },
71956        "schemes": [
71957          "https"
71958        ],
71959        "tags": [
71960          "flowcontrolApiserver_v1alpha1"
71961        ],
71962        "x-kubernetes-action": "list",
71963        "x-kubernetes-group-version-kind": {
71964          "group": "flowcontrol.apiserver.k8s.io",
71965          "kind": "FlowSchema",
71966          "version": "v1alpha1"
71967        }
71968      },
71969      "parameters": [
71970        {
71971          "description": "If 'true', then the output is pretty printed.",
71972          "in": "query",
71973          "name": "pretty",
71974          "type": "string",
71975          "uniqueItems": true
71976        }
71977      ],
71978      "post": {
71979        "consumes": [
71980          "*/*"
71981        ],
71982        "description": "create a FlowSchema",
71983        "operationId": "createFlowcontrolApiserverV1alpha1FlowSchema",
71984        "parameters": [
71985          {
71986            "in": "body",
71987            "name": "body",
71988            "required": true,
71989            "schema": {
71990              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
71991            }
71992          },
71993          {
71994            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71995            "in": "query",
71996            "name": "dryRun",
71997            "type": "string",
71998            "uniqueItems": true
71999          },
72000          {
72001            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72002            "in": "query",
72003            "name": "fieldManager",
72004            "type": "string",
72005            "uniqueItems": true
72006          }
72007        ],
72008        "produces": [
72009          "application/json",
72010          "application/yaml",
72011          "application/vnd.kubernetes.protobuf"
72012        ],
72013        "responses": {
72014          "200": {
72015            "description": "OK",
72016            "schema": {
72017              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72018            }
72019          },
72020          "201": {
72021            "description": "Created",
72022            "schema": {
72023              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72024            }
72025          },
72026          "202": {
72027            "description": "Accepted",
72028            "schema": {
72029              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72030            }
72031          },
72032          "401": {
72033            "description": "Unauthorized"
72034          }
72035        },
72036        "schemes": [
72037          "https"
72038        ],
72039        "tags": [
72040          "flowcontrolApiserver_v1alpha1"
72041        ],
72042        "x-kubernetes-action": "post",
72043        "x-kubernetes-group-version-kind": {
72044          "group": "flowcontrol.apiserver.k8s.io",
72045          "kind": "FlowSchema",
72046          "version": "v1alpha1"
72047        }
72048      }
72049    },
72050    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}": {
72051      "delete": {
72052        "consumes": [
72053          "*/*"
72054        ],
72055        "description": "delete a FlowSchema",
72056        "operationId": "deleteFlowcontrolApiserverV1alpha1FlowSchema",
72057        "parameters": [
72058          {
72059            "in": "body",
72060            "name": "body",
72061            "schema": {
72062              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72063            }
72064          },
72065          {
72066            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72067            "in": "query",
72068            "name": "dryRun",
72069            "type": "string",
72070            "uniqueItems": true
72071          },
72072          {
72073            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72074            "in": "query",
72075            "name": "gracePeriodSeconds",
72076            "type": "integer",
72077            "uniqueItems": true
72078          },
72079          {
72080            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72081            "in": "query",
72082            "name": "orphanDependents",
72083            "type": "boolean",
72084            "uniqueItems": true
72085          },
72086          {
72087            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72088            "in": "query",
72089            "name": "propagationPolicy",
72090            "type": "string",
72091            "uniqueItems": true
72092          }
72093        ],
72094        "produces": [
72095          "application/json",
72096          "application/yaml",
72097          "application/vnd.kubernetes.protobuf"
72098        ],
72099        "responses": {
72100          "200": {
72101            "description": "OK",
72102            "schema": {
72103              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72104            }
72105          },
72106          "202": {
72107            "description": "Accepted",
72108            "schema": {
72109              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72110            }
72111          },
72112          "401": {
72113            "description": "Unauthorized"
72114          }
72115        },
72116        "schemes": [
72117          "https"
72118        ],
72119        "tags": [
72120          "flowcontrolApiserver_v1alpha1"
72121        ],
72122        "x-kubernetes-action": "delete",
72123        "x-kubernetes-group-version-kind": {
72124          "group": "flowcontrol.apiserver.k8s.io",
72125          "kind": "FlowSchema",
72126          "version": "v1alpha1"
72127        }
72128      },
72129      "get": {
72130        "consumes": [
72131          "*/*"
72132        ],
72133        "description": "read the specified FlowSchema",
72134        "operationId": "readFlowcontrolApiserverV1alpha1FlowSchema",
72135        "produces": [
72136          "application/json",
72137          "application/yaml",
72138          "application/vnd.kubernetes.protobuf"
72139        ],
72140        "responses": {
72141          "200": {
72142            "description": "OK",
72143            "schema": {
72144              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72145            }
72146          },
72147          "401": {
72148            "description": "Unauthorized"
72149          }
72150        },
72151        "schemes": [
72152          "https"
72153        ],
72154        "tags": [
72155          "flowcontrolApiserver_v1alpha1"
72156        ],
72157        "x-kubernetes-action": "get",
72158        "x-kubernetes-group-version-kind": {
72159          "group": "flowcontrol.apiserver.k8s.io",
72160          "kind": "FlowSchema",
72161          "version": "v1alpha1"
72162        }
72163      },
72164      "parameters": [
72165        {
72166          "description": "name of the FlowSchema",
72167          "in": "path",
72168          "name": "name",
72169          "required": true,
72170          "type": "string",
72171          "uniqueItems": true
72172        },
72173        {
72174          "description": "If 'true', then the output is pretty printed.",
72175          "in": "query",
72176          "name": "pretty",
72177          "type": "string",
72178          "uniqueItems": true
72179        }
72180      ],
72181      "patch": {
72182        "consumes": [
72183          "application/json-patch+json",
72184          "application/merge-patch+json",
72185          "application/strategic-merge-patch+json",
72186          "application/apply-patch+yaml"
72187        ],
72188        "description": "partially update the specified FlowSchema",
72189        "operationId": "patchFlowcontrolApiserverV1alpha1FlowSchema",
72190        "parameters": [
72191          {
72192            "in": "body",
72193            "name": "body",
72194            "required": true,
72195            "schema": {
72196              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72197            }
72198          },
72199          {
72200            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72201            "in": "query",
72202            "name": "dryRun",
72203            "type": "string",
72204            "uniqueItems": true
72205          },
72206          {
72207            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
72208            "in": "query",
72209            "name": "fieldManager",
72210            "type": "string",
72211            "uniqueItems": true
72212          },
72213          {
72214            "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.",
72215            "in": "query",
72216            "name": "force",
72217            "type": "boolean",
72218            "uniqueItems": true
72219          }
72220        ],
72221        "produces": [
72222          "application/json",
72223          "application/yaml",
72224          "application/vnd.kubernetes.protobuf"
72225        ],
72226        "responses": {
72227          "200": {
72228            "description": "OK",
72229            "schema": {
72230              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72231            }
72232          },
72233          "401": {
72234            "description": "Unauthorized"
72235          }
72236        },
72237        "schemes": [
72238          "https"
72239        ],
72240        "tags": [
72241          "flowcontrolApiserver_v1alpha1"
72242        ],
72243        "x-kubernetes-action": "patch",
72244        "x-kubernetes-group-version-kind": {
72245          "group": "flowcontrol.apiserver.k8s.io",
72246          "kind": "FlowSchema",
72247          "version": "v1alpha1"
72248        }
72249      },
72250      "put": {
72251        "consumes": [
72252          "*/*"
72253        ],
72254        "description": "replace the specified FlowSchema",
72255        "operationId": "replaceFlowcontrolApiserverV1alpha1FlowSchema",
72256        "parameters": [
72257          {
72258            "in": "body",
72259            "name": "body",
72260            "required": true,
72261            "schema": {
72262              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72263            }
72264          },
72265          {
72266            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72267            "in": "query",
72268            "name": "dryRun",
72269            "type": "string",
72270            "uniqueItems": true
72271          },
72272          {
72273            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72274            "in": "query",
72275            "name": "fieldManager",
72276            "type": "string",
72277            "uniqueItems": true
72278          }
72279        ],
72280        "produces": [
72281          "application/json",
72282          "application/yaml",
72283          "application/vnd.kubernetes.protobuf"
72284        ],
72285        "responses": {
72286          "200": {
72287            "description": "OK",
72288            "schema": {
72289              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72290            }
72291          },
72292          "201": {
72293            "description": "Created",
72294            "schema": {
72295              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72296            }
72297          },
72298          "401": {
72299            "description": "Unauthorized"
72300          }
72301        },
72302        "schemes": [
72303          "https"
72304        ],
72305        "tags": [
72306          "flowcontrolApiserver_v1alpha1"
72307        ],
72308        "x-kubernetes-action": "put",
72309        "x-kubernetes-group-version-kind": {
72310          "group": "flowcontrol.apiserver.k8s.io",
72311          "kind": "FlowSchema",
72312          "version": "v1alpha1"
72313        }
72314      }
72315    },
72316    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status": {
72317      "get": {
72318        "consumes": [
72319          "*/*"
72320        ],
72321        "description": "read status of the specified FlowSchema",
72322        "operationId": "readFlowcontrolApiserverV1alpha1FlowSchemaStatus",
72323        "produces": [
72324          "application/json",
72325          "application/yaml",
72326          "application/vnd.kubernetes.protobuf"
72327        ],
72328        "responses": {
72329          "200": {
72330            "description": "OK",
72331            "schema": {
72332              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72333            }
72334          },
72335          "401": {
72336            "description": "Unauthorized"
72337          }
72338        },
72339        "schemes": [
72340          "https"
72341        ],
72342        "tags": [
72343          "flowcontrolApiserver_v1alpha1"
72344        ],
72345        "x-kubernetes-action": "get",
72346        "x-kubernetes-group-version-kind": {
72347          "group": "flowcontrol.apiserver.k8s.io",
72348          "kind": "FlowSchema",
72349          "version": "v1alpha1"
72350        }
72351      },
72352      "parameters": [
72353        {
72354          "description": "name of the FlowSchema",
72355          "in": "path",
72356          "name": "name",
72357          "required": true,
72358          "type": "string",
72359          "uniqueItems": true
72360        },
72361        {
72362          "description": "If 'true', then the output is pretty printed.",
72363          "in": "query",
72364          "name": "pretty",
72365          "type": "string",
72366          "uniqueItems": true
72367        }
72368      ],
72369      "patch": {
72370        "consumes": [
72371          "application/json-patch+json",
72372          "application/merge-patch+json",
72373          "application/strategic-merge-patch+json",
72374          "application/apply-patch+yaml"
72375        ],
72376        "description": "partially update status of the specified FlowSchema",
72377        "operationId": "patchFlowcontrolApiserverV1alpha1FlowSchemaStatus",
72378        "parameters": [
72379          {
72380            "in": "body",
72381            "name": "body",
72382            "required": true,
72383            "schema": {
72384              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72385            }
72386          },
72387          {
72388            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72389            "in": "query",
72390            "name": "dryRun",
72391            "type": "string",
72392            "uniqueItems": true
72393          },
72394          {
72395            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
72396            "in": "query",
72397            "name": "fieldManager",
72398            "type": "string",
72399            "uniqueItems": true
72400          },
72401          {
72402            "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.",
72403            "in": "query",
72404            "name": "force",
72405            "type": "boolean",
72406            "uniqueItems": true
72407          }
72408        ],
72409        "produces": [
72410          "application/json",
72411          "application/yaml",
72412          "application/vnd.kubernetes.protobuf"
72413        ],
72414        "responses": {
72415          "200": {
72416            "description": "OK",
72417            "schema": {
72418              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72419            }
72420          },
72421          "401": {
72422            "description": "Unauthorized"
72423          }
72424        },
72425        "schemes": [
72426          "https"
72427        ],
72428        "tags": [
72429          "flowcontrolApiserver_v1alpha1"
72430        ],
72431        "x-kubernetes-action": "patch",
72432        "x-kubernetes-group-version-kind": {
72433          "group": "flowcontrol.apiserver.k8s.io",
72434          "kind": "FlowSchema",
72435          "version": "v1alpha1"
72436        }
72437      },
72438      "put": {
72439        "consumes": [
72440          "*/*"
72441        ],
72442        "description": "replace status of the specified FlowSchema",
72443        "operationId": "replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus",
72444        "parameters": [
72445          {
72446            "in": "body",
72447            "name": "body",
72448            "required": true,
72449            "schema": {
72450              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72451            }
72452          },
72453          {
72454            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72455            "in": "query",
72456            "name": "dryRun",
72457            "type": "string",
72458            "uniqueItems": true
72459          },
72460          {
72461            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72462            "in": "query",
72463            "name": "fieldManager",
72464            "type": "string",
72465            "uniqueItems": true
72466          }
72467        ],
72468        "produces": [
72469          "application/json",
72470          "application/yaml",
72471          "application/vnd.kubernetes.protobuf"
72472        ],
72473        "responses": {
72474          "200": {
72475            "description": "OK",
72476            "schema": {
72477              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72478            }
72479          },
72480          "201": {
72481            "description": "Created",
72482            "schema": {
72483              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72484            }
72485          },
72486          "401": {
72487            "description": "Unauthorized"
72488          }
72489        },
72490        "schemes": [
72491          "https"
72492        ],
72493        "tags": [
72494          "flowcontrolApiserver_v1alpha1"
72495        ],
72496        "x-kubernetes-action": "put",
72497        "x-kubernetes-group-version-kind": {
72498          "group": "flowcontrol.apiserver.k8s.io",
72499          "kind": "FlowSchema",
72500          "version": "v1alpha1"
72501        }
72502      }
72503    },
72504    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations": {
72505      "delete": {
72506        "consumes": [
72507          "*/*"
72508        ],
72509        "description": "delete collection of PriorityLevelConfiguration",
72510        "operationId": "deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration",
72511        "parameters": [
72512          {
72513            "in": "body",
72514            "name": "body",
72515            "schema": {
72516              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72517            }
72518          },
72519          {
72520            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72521            "in": "query",
72522            "name": "continue",
72523            "type": "string",
72524            "uniqueItems": true
72525          },
72526          {
72527            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72528            "in": "query",
72529            "name": "dryRun",
72530            "type": "string",
72531            "uniqueItems": true
72532          },
72533          {
72534            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72535            "in": "query",
72536            "name": "fieldSelector",
72537            "type": "string",
72538            "uniqueItems": true
72539          },
72540          {
72541            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72542            "in": "query",
72543            "name": "gracePeriodSeconds",
72544            "type": "integer",
72545            "uniqueItems": true
72546          },
72547          {
72548            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72549            "in": "query",
72550            "name": "labelSelector",
72551            "type": "string",
72552            "uniqueItems": true
72553          },
72554          {
72555            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72556            "in": "query",
72557            "name": "limit",
72558            "type": "integer",
72559            "uniqueItems": true
72560          },
72561          {
72562            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72563            "in": "query",
72564            "name": "orphanDependents",
72565            "type": "boolean",
72566            "uniqueItems": true
72567          },
72568          {
72569            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72570            "in": "query",
72571            "name": "propagationPolicy",
72572            "type": "string",
72573            "uniqueItems": true
72574          },
72575          {
72576            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72577            "in": "query",
72578            "name": "resourceVersion",
72579            "type": "string",
72580            "uniqueItems": true
72581          },
72582          {
72583            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72584            "in": "query",
72585            "name": "resourceVersionMatch",
72586            "type": "string",
72587            "uniqueItems": true
72588          },
72589          {
72590            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72591            "in": "query",
72592            "name": "timeoutSeconds",
72593            "type": "integer",
72594            "uniqueItems": true
72595          }
72596        ],
72597        "produces": [
72598          "application/json",
72599          "application/yaml",
72600          "application/vnd.kubernetes.protobuf"
72601        ],
72602        "responses": {
72603          "200": {
72604            "description": "OK",
72605            "schema": {
72606              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72607            }
72608          },
72609          "401": {
72610            "description": "Unauthorized"
72611          }
72612        },
72613        "schemes": [
72614          "https"
72615        ],
72616        "tags": [
72617          "flowcontrolApiserver_v1alpha1"
72618        ],
72619        "x-kubernetes-action": "deletecollection",
72620        "x-kubernetes-group-version-kind": {
72621          "group": "flowcontrol.apiserver.k8s.io",
72622          "kind": "PriorityLevelConfiguration",
72623          "version": "v1alpha1"
72624        }
72625      },
72626      "get": {
72627        "consumes": [
72628          "*/*"
72629        ],
72630        "description": "list or watch objects of kind PriorityLevelConfiguration",
72631        "operationId": "listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72632        "parameters": [
72633          {
72634            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
72635            "in": "query",
72636            "name": "allowWatchBookmarks",
72637            "type": "boolean",
72638            "uniqueItems": true
72639          },
72640          {
72641            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72642            "in": "query",
72643            "name": "continue",
72644            "type": "string",
72645            "uniqueItems": true
72646          },
72647          {
72648            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72649            "in": "query",
72650            "name": "fieldSelector",
72651            "type": "string",
72652            "uniqueItems": true
72653          },
72654          {
72655            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72656            "in": "query",
72657            "name": "labelSelector",
72658            "type": "string",
72659            "uniqueItems": true
72660          },
72661          {
72662            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72663            "in": "query",
72664            "name": "limit",
72665            "type": "integer",
72666            "uniqueItems": true
72667          },
72668          {
72669            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72670            "in": "query",
72671            "name": "resourceVersion",
72672            "type": "string",
72673            "uniqueItems": true
72674          },
72675          {
72676            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72677            "in": "query",
72678            "name": "resourceVersionMatch",
72679            "type": "string",
72680            "uniqueItems": true
72681          },
72682          {
72683            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72684            "in": "query",
72685            "name": "timeoutSeconds",
72686            "type": "integer",
72687            "uniqueItems": true
72688          },
72689          {
72690            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72691            "in": "query",
72692            "name": "watch",
72693            "type": "boolean",
72694            "uniqueItems": true
72695          }
72696        ],
72697        "produces": [
72698          "application/json",
72699          "application/yaml",
72700          "application/vnd.kubernetes.protobuf",
72701          "application/json;stream=watch",
72702          "application/vnd.kubernetes.protobuf;stream=watch"
72703        ],
72704        "responses": {
72705          "200": {
72706            "description": "OK",
72707            "schema": {
72708              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationList"
72709            }
72710          },
72711          "401": {
72712            "description": "Unauthorized"
72713          }
72714        },
72715        "schemes": [
72716          "https"
72717        ],
72718        "tags": [
72719          "flowcontrolApiserver_v1alpha1"
72720        ],
72721        "x-kubernetes-action": "list",
72722        "x-kubernetes-group-version-kind": {
72723          "group": "flowcontrol.apiserver.k8s.io",
72724          "kind": "PriorityLevelConfiguration",
72725          "version": "v1alpha1"
72726        }
72727      },
72728      "parameters": [
72729        {
72730          "description": "If 'true', then the output is pretty printed.",
72731          "in": "query",
72732          "name": "pretty",
72733          "type": "string",
72734          "uniqueItems": true
72735        }
72736      ],
72737      "post": {
72738        "consumes": [
72739          "*/*"
72740        ],
72741        "description": "create a PriorityLevelConfiguration",
72742        "operationId": "createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72743        "parameters": [
72744          {
72745            "in": "body",
72746            "name": "body",
72747            "required": true,
72748            "schema": {
72749              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72750            }
72751          },
72752          {
72753            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72754            "in": "query",
72755            "name": "dryRun",
72756            "type": "string",
72757            "uniqueItems": true
72758          },
72759          {
72760            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72761            "in": "query",
72762            "name": "fieldManager",
72763            "type": "string",
72764            "uniqueItems": true
72765          }
72766        ],
72767        "produces": [
72768          "application/json",
72769          "application/yaml",
72770          "application/vnd.kubernetes.protobuf"
72771        ],
72772        "responses": {
72773          "200": {
72774            "description": "OK",
72775            "schema": {
72776              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72777            }
72778          },
72779          "201": {
72780            "description": "Created",
72781            "schema": {
72782              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72783            }
72784          },
72785          "202": {
72786            "description": "Accepted",
72787            "schema": {
72788              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72789            }
72790          },
72791          "401": {
72792            "description": "Unauthorized"
72793          }
72794        },
72795        "schemes": [
72796          "https"
72797        ],
72798        "tags": [
72799          "flowcontrolApiserver_v1alpha1"
72800        ],
72801        "x-kubernetes-action": "post",
72802        "x-kubernetes-group-version-kind": {
72803          "group": "flowcontrol.apiserver.k8s.io",
72804          "kind": "PriorityLevelConfiguration",
72805          "version": "v1alpha1"
72806        }
72807      }
72808    },
72809    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}": {
72810      "delete": {
72811        "consumes": [
72812          "*/*"
72813        ],
72814        "description": "delete a PriorityLevelConfiguration",
72815        "operationId": "deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72816        "parameters": [
72817          {
72818            "in": "body",
72819            "name": "body",
72820            "schema": {
72821              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72822            }
72823          },
72824          {
72825            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72826            "in": "query",
72827            "name": "dryRun",
72828            "type": "string",
72829            "uniqueItems": true
72830          },
72831          {
72832            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72833            "in": "query",
72834            "name": "gracePeriodSeconds",
72835            "type": "integer",
72836            "uniqueItems": true
72837          },
72838          {
72839            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72840            "in": "query",
72841            "name": "orphanDependents",
72842            "type": "boolean",
72843            "uniqueItems": true
72844          },
72845          {
72846            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72847            "in": "query",
72848            "name": "propagationPolicy",
72849            "type": "string",
72850            "uniqueItems": true
72851          }
72852        ],
72853        "produces": [
72854          "application/json",
72855          "application/yaml",
72856          "application/vnd.kubernetes.protobuf"
72857        ],
72858        "responses": {
72859          "200": {
72860            "description": "OK",
72861            "schema": {
72862              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72863            }
72864          },
72865          "202": {
72866            "description": "Accepted",
72867            "schema": {
72868              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72869            }
72870          },
72871          "401": {
72872            "description": "Unauthorized"
72873          }
72874        },
72875        "schemes": [
72876          "https"
72877        ],
72878        "tags": [
72879          "flowcontrolApiserver_v1alpha1"
72880        ],
72881        "x-kubernetes-action": "delete",
72882        "x-kubernetes-group-version-kind": {
72883          "group": "flowcontrol.apiserver.k8s.io",
72884          "kind": "PriorityLevelConfiguration",
72885          "version": "v1alpha1"
72886        }
72887      },
72888      "get": {
72889        "consumes": [
72890          "*/*"
72891        ],
72892        "description": "read the specified PriorityLevelConfiguration",
72893        "operationId": "readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72894        "produces": [
72895          "application/json",
72896          "application/yaml",
72897          "application/vnd.kubernetes.protobuf"
72898        ],
72899        "responses": {
72900          "200": {
72901            "description": "OK",
72902            "schema": {
72903              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72904            }
72905          },
72906          "401": {
72907            "description": "Unauthorized"
72908          }
72909        },
72910        "schemes": [
72911          "https"
72912        ],
72913        "tags": [
72914          "flowcontrolApiserver_v1alpha1"
72915        ],
72916        "x-kubernetes-action": "get",
72917        "x-kubernetes-group-version-kind": {
72918          "group": "flowcontrol.apiserver.k8s.io",
72919          "kind": "PriorityLevelConfiguration",
72920          "version": "v1alpha1"
72921        }
72922      },
72923      "parameters": [
72924        {
72925          "description": "name of the PriorityLevelConfiguration",
72926          "in": "path",
72927          "name": "name",
72928          "required": true,
72929          "type": "string",
72930          "uniqueItems": true
72931        },
72932        {
72933          "description": "If 'true', then the output is pretty printed.",
72934          "in": "query",
72935          "name": "pretty",
72936          "type": "string",
72937          "uniqueItems": true
72938        }
72939      ],
72940      "patch": {
72941        "consumes": [
72942          "application/json-patch+json",
72943          "application/merge-patch+json",
72944          "application/strategic-merge-patch+json",
72945          "application/apply-patch+yaml"
72946        ],
72947        "description": "partially update the specified PriorityLevelConfiguration",
72948        "operationId": "patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72949        "parameters": [
72950          {
72951            "in": "body",
72952            "name": "body",
72953            "required": true,
72954            "schema": {
72955              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72956            }
72957          },
72958          {
72959            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72960            "in": "query",
72961            "name": "dryRun",
72962            "type": "string",
72963            "uniqueItems": true
72964          },
72965          {
72966            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
72967            "in": "query",
72968            "name": "fieldManager",
72969            "type": "string",
72970            "uniqueItems": true
72971          },
72972          {
72973            "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.",
72974            "in": "query",
72975            "name": "force",
72976            "type": "boolean",
72977            "uniqueItems": true
72978          }
72979        ],
72980        "produces": [
72981          "application/json",
72982          "application/yaml",
72983          "application/vnd.kubernetes.protobuf"
72984        ],
72985        "responses": {
72986          "200": {
72987            "description": "OK",
72988            "schema": {
72989              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72990            }
72991          },
72992          "401": {
72993            "description": "Unauthorized"
72994          }
72995        },
72996        "schemes": [
72997          "https"
72998        ],
72999        "tags": [
73000          "flowcontrolApiserver_v1alpha1"
73001        ],
73002        "x-kubernetes-action": "patch",
73003        "x-kubernetes-group-version-kind": {
73004          "group": "flowcontrol.apiserver.k8s.io",
73005          "kind": "PriorityLevelConfiguration",
73006          "version": "v1alpha1"
73007        }
73008      },
73009      "put": {
73010        "consumes": [
73011          "*/*"
73012        ],
73013        "description": "replace the specified PriorityLevelConfiguration",
73014        "operationId": "replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
73015        "parameters": [
73016          {
73017            "in": "body",
73018            "name": "body",
73019            "required": true,
73020            "schema": {
73021              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73022            }
73023          },
73024          {
73025            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73026            "in": "query",
73027            "name": "dryRun",
73028            "type": "string",
73029            "uniqueItems": true
73030          },
73031          {
73032            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73033            "in": "query",
73034            "name": "fieldManager",
73035            "type": "string",
73036            "uniqueItems": true
73037          }
73038        ],
73039        "produces": [
73040          "application/json",
73041          "application/yaml",
73042          "application/vnd.kubernetes.protobuf"
73043        ],
73044        "responses": {
73045          "200": {
73046            "description": "OK",
73047            "schema": {
73048              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73049            }
73050          },
73051          "201": {
73052            "description": "Created",
73053            "schema": {
73054              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73055            }
73056          },
73057          "401": {
73058            "description": "Unauthorized"
73059          }
73060        },
73061        "schemes": [
73062          "https"
73063        ],
73064        "tags": [
73065          "flowcontrolApiserver_v1alpha1"
73066        ],
73067        "x-kubernetes-action": "put",
73068        "x-kubernetes-group-version-kind": {
73069          "group": "flowcontrol.apiserver.k8s.io",
73070          "kind": "PriorityLevelConfiguration",
73071          "version": "v1alpha1"
73072        }
73073      }
73074    },
73075    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status": {
73076      "get": {
73077        "consumes": [
73078          "*/*"
73079        ],
73080        "description": "read status of the specified PriorityLevelConfiguration",
73081        "operationId": "readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus",
73082        "produces": [
73083          "application/json",
73084          "application/yaml",
73085          "application/vnd.kubernetes.protobuf"
73086        ],
73087        "responses": {
73088          "200": {
73089            "description": "OK",
73090            "schema": {
73091              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73092            }
73093          },
73094          "401": {
73095            "description": "Unauthorized"
73096          }
73097        },
73098        "schemes": [
73099          "https"
73100        ],
73101        "tags": [
73102          "flowcontrolApiserver_v1alpha1"
73103        ],
73104        "x-kubernetes-action": "get",
73105        "x-kubernetes-group-version-kind": {
73106          "group": "flowcontrol.apiserver.k8s.io",
73107          "kind": "PriorityLevelConfiguration",
73108          "version": "v1alpha1"
73109        }
73110      },
73111      "parameters": [
73112        {
73113          "description": "name of the PriorityLevelConfiguration",
73114          "in": "path",
73115          "name": "name",
73116          "required": true,
73117          "type": "string",
73118          "uniqueItems": true
73119        },
73120        {
73121          "description": "If 'true', then the output is pretty printed.",
73122          "in": "query",
73123          "name": "pretty",
73124          "type": "string",
73125          "uniqueItems": true
73126        }
73127      ],
73128      "patch": {
73129        "consumes": [
73130          "application/json-patch+json",
73131          "application/merge-patch+json",
73132          "application/strategic-merge-patch+json",
73133          "application/apply-patch+yaml"
73134        ],
73135        "description": "partially update status of the specified PriorityLevelConfiguration",
73136        "operationId": "patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus",
73137        "parameters": [
73138          {
73139            "in": "body",
73140            "name": "body",
73141            "required": true,
73142            "schema": {
73143              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
73144            }
73145          },
73146          {
73147            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73148            "in": "query",
73149            "name": "dryRun",
73150            "type": "string",
73151            "uniqueItems": true
73152          },
73153          {
73154            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
73155            "in": "query",
73156            "name": "fieldManager",
73157            "type": "string",
73158            "uniqueItems": true
73159          },
73160          {
73161            "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.",
73162            "in": "query",
73163            "name": "force",
73164            "type": "boolean",
73165            "uniqueItems": true
73166          }
73167        ],
73168        "produces": [
73169          "application/json",
73170          "application/yaml",
73171          "application/vnd.kubernetes.protobuf"
73172        ],
73173        "responses": {
73174          "200": {
73175            "description": "OK",
73176            "schema": {
73177              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73178            }
73179          },
73180          "401": {
73181            "description": "Unauthorized"
73182          }
73183        },
73184        "schemes": [
73185          "https"
73186        ],
73187        "tags": [
73188          "flowcontrolApiserver_v1alpha1"
73189        ],
73190        "x-kubernetes-action": "patch",
73191        "x-kubernetes-group-version-kind": {
73192          "group": "flowcontrol.apiserver.k8s.io",
73193          "kind": "PriorityLevelConfiguration",
73194          "version": "v1alpha1"
73195        }
73196      },
73197      "put": {
73198        "consumes": [
73199          "*/*"
73200        ],
73201        "description": "replace status of the specified PriorityLevelConfiguration",
73202        "operationId": "replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus",
73203        "parameters": [
73204          {
73205            "in": "body",
73206            "name": "body",
73207            "required": true,
73208            "schema": {
73209              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73210            }
73211          },
73212          {
73213            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73214            "in": "query",
73215            "name": "dryRun",
73216            "type": "string",
73217            "uniqueItems": true
73218          },
73219          {
73220            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73221            "in": "query",
73222            "name": "fieldManager",
73223            "type": "string",
73224            "uniqueItems": true
73225          }
73226        ],
73227        "produces": [
73228          "application/json",
73229          "application/yaml",
73230          "application/vnd.kubernetes.protobuf"
73231        ],
73232        "responses": {
73233          "200": {
73234            "description": "OK",
73235            "schema": {
73236              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73237            }
73238          },
73239          "201": {
73240            "description": "Created",
73241            "schema": {
73242              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73243            }
73244          },
73245          "401": {
73246            "description": "Unauthorized"
73247          }
73248        },
73249        "schemes": [
73250          "https"
73251        ],
73252        "tags": [
73253          "flowcontrolApiserver_v1alpha1"
73254        ],
73255        "x-kubernetes-action": "put",
73256        "x-kubernetes-group-version-kind": {
73257          "group": "flowcontrol.apiserver.k8s.io",
73258          "kind": "PriorityLevelConfiguration",
73259          "version": "v1alpha1"
73260        }
73261      }
73262    },
73263    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas": {
73264      "get": {
73265        "consumes": [
73266          "*/*"
73267        ],
73268        "description": "watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead.",
73269        "operationId": "watchFlowcontrolApiserverV1alpha1FlowSchemaList",
73270        "produces": [
73271          "application/json",
73272          "application/yaml",
73273          "application/vnd.kubernetes.protobuf",
73274          "application/json;stream=watch",
73275          "application/vnd.kubernetes.protobuf;stream=watch"
73276        ],
73277        "responses": {
73278          "200": {
73279            "description": "OK",
73280            "schema": {
73281              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73282            }
73283          },
73284          "401": {
73285            "description": "Unauthorized"
73286          }
73287        },
73288        "schemes": [
73289          "https"
73290        ],
73291        "tags": [
73292          "flowcontrolApiserver_v1alpha1"
73293        ],
73294        "x-kubernetes-action": "watchlist",
73295        "x-kubernetes-group-version-kind": {
73296          "group": "flowcontrol.apiserver.k8s.io",
73297          "kind": "FlowSchema",
73298          "version": "v1alpha1"
73299        }
73300      },
73301      "parameters": [
73302        {
73303          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73304          "in": "query",
73305          "name": "allowWatchBookmarks",
73306          "type": "boolean",
73307          "uniqueItems": true
73308        },
73309        {
73310          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73311          "in": "query",
73312          "name": "continue",
73313          "type": "string",
73314          "uniqueItems": true
73315        },
73316        {
73317          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73318          "in": "query",
73319          "name": "fieldSelector",
73320          "type": "string",
73321          "uniqueItems": true
73322        },
73323        {
73324          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73325          "in": "query",
73326          "name": "labelSelector",
73327          "type": "string",
73328          "uniqueItems": true
73329        },
73330        {
73331          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73332          "in": "query",
73333          "name": "limit",
73334          "type": "integer",
73335          "uniqueItems": true
73336        },
73337        {
73338          "description": "If 'true', then the output is pretty printed.",
73339          "in": "query",
73340          "name": "pretty",
73341          "type": "string",
73342          "uniqueItems": true
73343        },
73344        {
73345          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73346          "in": "query",
73347          "name": "resourceVersion",
73348          "type": "string",
73349          "uniqueItems": true
73350        },
73351        {
73352          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73353          "in": "query",
73354          "name": "resourceVersionMatch",
73355          "type": "string",
73356          "uniqueItems": true
73357        },
73358        {
73359          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73360          "in": "query",
73361          "name": "timeoutSeconds",
73362          "type": "integer",
73363          "uniqueItems": true
73364        },
73365        {
73366          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73367          "in": "query",
73368          "name": "watch",
73369          "type": "boolean",
73370          "uniqueItems": true
73371        }
73372      ]
73373    },
73374    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas/{name}": {
73375      "get": {
73376        "consumes": [
73377          "*/*"
73378        ],
73379        "description": "watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
73380        "operationId": "watchFlowcontrolApiserverV1alpha1FlowSchema",
73381        "produces": [
73382          "application/json",
73383          "application/yaml",
73384          "application/vnd.kubernetes.protobuf",
73385          "application/json;stream=watch",
73386          "application/vnd.kubernetes.protobuf;stream=watch"
73387        ],
73388        "responses": {
73389          "200": {
73390            "description": "OK",
73391            "schema": {
73392              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73393            }
73394          },
73395          "401": {
73396            "description": "Unauthorized"
73397          }
73398        },
73399        "schemes": [
73400          "https"
73401        ],
73402        "tags": [
73403          "flowcontrolApiserver_v1alpha1"
73404        ],
73405        "x-kubernetes-action": "watch",
73406        "x-kubernetes-group-version-kind": {
73407          "group": "flowcontrol.apiserver.k8s.io",
73408          "kind": "FlowSchema",
73409          "version": "v1alpha1"
73410        }
73411      },
73412      "parameters": [
73413        {
73414          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73415          "in": "query",
73416          "name": "allowWatchBookmarks",
73417          "type": "boolean",
73418          "uniqueItems": true
73419        },
73420        {
73421          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73422          "in": "query",
73423          "name": "continue",
73424          "type": "string",
73425          "uniqueItems": true
73426        },
73427        {
73428          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73429          "in": "query",
73430          "name": "fieldSelector",
73431          "type": "string",
73432          "uniqueItems": true
73433        },
73434        {
73435          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73436          "in": "query",
73437          "name": "labelSelector",
73438          "type": "string",
73439          "uniqueItems": true
73440        },
73441        {
73442          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73443          "in": "query",
73444          "name": "limit",
73445          "type": "integer",
73446          "uniqueItems": true
73447        },
73448        {
73449          "description": "name of the FlowSchema",
73450          "in": "path",
73451          "name": "name",
73452          "required": true,
73453          "type": "string",
73454          "uniqueItems": true
73455        },
73456        {
73457          "description": "If 'true', then the output is pretty printed.",
73458          "in": "query",
73459          "name": "pretty",
73460          "type": "string",
73461          "uniqueItems": true
73462        },
73463        {
73464          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73465          "in": "query",
73466          "name": "resourceVersion",
73467          "type": "string",
73468          "uniqueItems": true
73469        },
73470        {
73471          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73472          "in": "query",
73473          "name": "resourceVersionMatch",
73474          "type": "string",
73475          "uniqueItems": true
73476        },
73477        {
73478          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73479          "in": "query",
73480          "name": "timeoutSeconds",
73481          "type": "integer",
73482          "uniqueItems": true
73483        },
73484        {
73485          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73486          "in": "query",
73487          "name": "watch",
73488          "type": "boolean",
73489          "uniqueItems": true
73490        }
73491      ]
73492    },
73493    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations": {
73494      "get": {
73495        "consumes": [
73496          "*/*"
73497        ],
73498        "description": "watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
73499        "operationId": "watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList",
73500        "produces": [
73501          "application/json",
73502          "application/yaml",
73503          "application/vnd.kubernetes.protobuf",
73504          "application/json;stream=watch",
73505          "application/vnd.kubernetes.protobuf;stream=watch"
73506        ],
73507        "responses": {
73508          "200": {
73509            "description": "OK",
73510            "schema": {
73511              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73512            }
73513          },
73514          "401": {
73515            "description": "Unauthorized"
73516          }
73517        },
73518        "schemes": [
73519          "https"
73520        ],
73521        "tags": [
73522          "flowcontrolApiserver_v1alpha1"
73523        ],
73524        "x-kubernetes-action": "watchlist",
73525        "x-kubernetes-group-version-kind": {
73526          "group": "flowcontrol.apiserver.k8s.io",
73527          "kind": "PriorityLevelConfiguration",
73528          "version": "v1alpha1"
73529        }
73530      },
73531      "parameters": [
73532        {
73533          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73534          "in": "query",
73535          "name": "allowWatchBookmarks",
73536          "type": "boolean",
73537          "uniqueItems": true
73538        },
73539        {
73540          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73541          "in": "query",
73542          "name": "continue",
73543          "type": "string",
73544          "uniqueItems": true
73545        },
73546        {
73547          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73548          "in": "query",
73549          "name": "fieldSelector",
73550          "type": "string",
73551          "uniqueItems": true
73552        },
73553        {
73554          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73555          "in": "query",
73556          "name": "labelSelector",
73557          "type": "string",
73558          "uniqueItems": true
73559        },
73560        {
73561          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73562          "in": "query",
73563          "name": "limit",
73564          "type": "integer",
73565          "uniqueItems": true
73566        },
73567        {
73568          "description": "If 'true', then the output is pretty printed.",
73569          "in": "query",
73570          "name": "pretty",
73571          "type": "string",
73572          "uniqueItems": true
73573        },
73574        {
73575          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73576          "in": "query",
73577          "name": "resourceVersion",
73578          "type": "string",
73579          "uniqueItems": true
73580        },
73581        {
73582          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73583          "in": "query",
73584          "name": "resourceVersionMatch",
73585          "type": "string",
73586          "uniqueItems": true
73587        },
73588        {
73589          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73590          "in": "query",
73591          "name": "timeoutSeconds",
73592          "type": "integer",
73593          "uniqueItems": true
73594        },
73595        {
73596          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73597          "in": "query",
73598          "name": "watch",
73599          "type": "boolean",
73600          "uniqueItems": true
73601        }
73602      ]
73603    },
73604    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations/{name}": {
73605      "get": {
73606        "consumes": [
73607          "*/*"
73608        ],
73609        "description": "watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
73610        "operationId": "watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
73611        "produces": [
73612          "application/json",
73613          "application/yaml",
73614          "application/vnd.kubernetes.protobuf",
73615          "application/json;stream=watch",
73616          "application/vnd.kubernetes.protobuf;stream=watch"
73617        ],
73618        "responses": {
73619          "200": {
73620            "description": "OK",
73621            "schema": {
73622              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73623            }
73624          },
73625          "401": {
73626            "description": "Unauthorized"
73627          }
73628        },
73629        "schemes": [
73630          "https"
73631        ],
73632        "tags": [
73633          "flowcontrolApiserver_v1alpha1"
73634        ],
73635        "x-kubernetes-action": "watch",
73636        "x-kubernetes-group-version-kind": {
73637          "group": "flowcontrol.apiserver.k8s.io",
73638          "kind": "PriorityLevelConfiguration",
73639          "version": "v1alpha1"
73640        }
73641      },
73642      "parameters": [
73643        {
73644          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73645          "in": "query",
73646          "name": "allowWatchBookmarks",
73647          "type": "boolean",
73648          "uniqueItems": true
73649        },
73650        {
73651          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73652          "in": "query",
73653          "name": "continue",
73654          "type": "string",
73655          "uniqueItems": true
73656        },
73657        {
73658          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73659          "in": "query",
73660          "name": "fieldSelector",
73661          "type": "string",
73662          "uniqueItems": true
73663        },
73664        {
73665          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73666          "in": "query",
73667          "name": "labelSelector",
73668          "type": "string",
73669          "uniqueItems": true
73670        },
73671        {
73672          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73673          "in": "query",
73674          "name": "limit",
73675          "type": "integer",
73676          "uniqueItems": true
73677        },
73678        {
73679          "description": "name of the PriorityLevelConfiguration",
73680          "in": "path",
73681          "name": "name",
73682          "required": true,
73683          "type": "string",
73684          "uniqueItems": true
73685        },
73686        {
73687          "description": "If 'true', then the output is pretty printed.",
73688          "in": "query",
73689          "name": "pretty",
73690          "type": "string",
73691          "uniqueItems": true
73692        },
73693        {
73694          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73695          "in": "query",
73696          "name": "resourceVersion",
73697          "type": "string",
73698          "uniqueItems": true
73699        },
73700        {
73701          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73702          "in": "query",
73703          "name": "resourceVersionMatch",
73704          "type": "string",
73705          "uniqueItems": true
73706        },
73707        {
73708          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73709          "in": "query",
73710          "name": "timeoutSeconds",
73711          "type": "integer",
73712          "uniqueItems": true
73713        },
73714        {
73715          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73716          "in": "query",
73717          "name": "watch",
73718          "type": "boolean",
73719          "uniqueItems": true
73720        }
73721      ]
73722    },
73723    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/": {
73724      "get": {
73725        "consumes": [
73726          "application/json",
73727          "application/yaml",
73728          "application/vnd.kubernetes.protobuf"
73729        ],
73730        "description": "get available resources",
73731        "operationId": "getFlowcontrolApiserverV1beta1APIResources",
73732        "produces": [
73733          "application/json",
73734          "application/yaml",
73735          "application/vnd.kubernetes.protobuf"
73736        ],
73737        "responses": {
73738          "200": {
73739            "description": "OK",
73740            "schema": {
73741              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
73742            }
73743          },
73744          "401": {
73745            "description": "Unauthorized"
73746          }
73747        },
73748        "schemes": [
73749          "https"
73750        ],
73751        "tags": [
73752          "flowcontrolApiserver_v1beta1"
73753        ]
73754      }
73755    },
73756    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas": {
73757      "delete": {
73758        "consumes": [
73759          "*/*"
73760        ],
73761        "description": "delete collection of FlowSchema",
73762        "operationId": "deleteFlowcontrolApiserverV1beta1CollectionFlowSchema",
73763        "parameters": [
73764          {
73765            "in": "body",
73766            "name": "body",
73767            "schema": {
73768              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
73769            }
73770          },
73771          {
73772            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73773            "in": "query",
73774            "name": "continue",
73775            "type": "string",
73776            "uniqueItems": true
73777          },
73778          {
73779            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73780            "in": "query",
73781            "name": "dryRun",
73782            "type": "string",
73783            "uniqueItems": true
73784          },
73785          {
73786            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73787            "in": "query",
73788            "name": "fieldSelector",
73789            "type": "string",
73790            "uniqueItems": true
73791          },
73792          {
73793            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
73794            "in": "query",
73795            "name": "gracePeriodSeconds",
73796            "type": "integer",
73797            "uniqueItems": true
73798          },
73799          {
73800            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73801            "in": "query",
73802            "name": "labelSelector",
73803            "type": "string",
73804            "uniqueItems": true
73805          },
73806          {
73807            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73808            "in": "query",
73809            "name": "limit",
73810            "type": "integer",
73811            "uniqueItems": true
73812          },
73813          {
73814            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
73815            "in": "query",
73816            "name": "orphanDependents",
73817            "type": "boolean",
73818            "uniqueItems": true
73819          },
73820          {
73821            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
73822            "in": "query",
73823            "name": "propagationPolicy",
73824            "type": "string",
73825            "uniqueItems": true
73826          },
73827          {
73828            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73829            "in": "query",
73830            "name": "resourceVersion",
73831            "type": "string",
73832            "uniqueItems": true
73833          },
73834          {
73835            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73836            "in": "query",
73837            "name": "resourceVersionMatch",
73838            "type": "string",
73839            "uniqueItems": true
73840          },
73841          {
73842            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73843            "in": "query",
73844            "name": "timeoutSeconds",
73845            "type": "integer",
73846            "uniqueItems": true
73847          }
73848        ],
73849        "produces": [
73850          "application/json",
73851          "application/yaml",
73852          "application/vnd.kubernetes.protobuf"
73853        ],
73854        "responses": {
73855          "200": {
73856            "description": "OK",
73857            "schema": {
73858              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
73859            }
73860          },
73861          "401": {
73862            "description": "Unauthorized"
73863          }
73864        },
73865        "schemes": [
73866          "https"
73867        ],
73868        "tags": [
73869          "flowcontrolApiserver_v1beta1"
73870        ],
73871        "x-kubernetes-action": "deletecollection",
73872        "x-kubernetes-group-version-kind": {
73873          "group": "flowcontrol.apiserver.k8s.io",
73874          "kind": "FlowSchema",
73875          "version": "v1beta1"
73876        }
73877      },
73878      "get": {
73879        "consumes": [
73880          "*/*"
73881        ],
73882        "description": "list or watch objects of kind FlowSchema",
73883        "operationId": "listFlowcontrolApiserverV1beta1FlowSchema",
73884        "parameters": [
73885          {
73886            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73887            "in": "query",
73888            "name": "allowWatchBookmarks",
73889            "type": "boolean",
73890            "uniqueItems": true
73891          },
73892          {
73893            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73894            "in": "query",
73895            "name": "continue",
73896            "type": "string",
73897            "uniqueItems": true
73898          },
73899          {
73900            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73901            "in": "query",
73902            "name": "fieldSelector",
73903            "type": "string",
73904            "uniqueItems": true
73905          },
73906          {
73907            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73908            "in": "query",
73909            "name": "labelSelector",
73910            "type": "string",
73911            "uniqueItems": true
73912          },
73913          {
73914            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73915            "in": "query",
73916            "name": "limit",
73917            "type": "integer",
73918            "uniqueItems": true
73919          },
73920          {
73921            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73922            "in": "query",
73923            "name": "resourceVersion",
73924            "type": "string",
73925            "uniqueItems": true
73926          },
73927          {
73928            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73929            "in": "query",
73930            "name": "resourceVersionMatch",
73931            "type": "string",
73932            "uniqueItems": true
73933          },
73934          {
73935            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73936            "in": "query",
73937            "name": "timeoutSeconds",
73938            "type": "integer",
73939            "uniqueItems": true
73940          },
73941          {
73942            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73943            "in": "query",
73944            "name": "watch",
73945            "type": "boolean",
73946            "uniqueItems": true
73947          }
73948        ],
73949        "produces": [
73950          "application/json",
73951          "application/yaml",
73952          "application/vnd.kubernetes.protobuf",
73953          "application/json;stream=watch",
73954          "application/vnd.kubernetes.protobuf;stream=watch"
73955        ],
73956        "responses": {
73957          "200": {
73958            "description": "OK",
73959            "schema": {
73960              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaList"
73961            }
73962          },
73963          "401": {
73964            "description": "Unauthorized"
73965          }
73966        },
73967        "schemes": [
73968          "https"
73969        ],
73970        "tags": [
73971          "flowcontrolApiserver_v1beta1"
73972        ],
73973        "x-kubernetes-action": "list",
73974        "x-kubernetes-group-version-kind": {
73975          "group": "flowcontrol.apiserver.k8s.io",
73976          "kind": "FlowSchema",
73977          "version": "v1beta1"
73978        }
73979      },
73980      "parameters": [
73981        {
73982          "description": "If 'true', then the output is pretty printed.",
73983          "in": "query",
73984          "name": "pretty",
73985          "type": "string",
73986          "uniqueItems": true
73987        }
73988      ],
73989      "post": {
73990        "consumes": [
73991          "*/*"
73992        ],
73993        "description": "create a FlowSchema",
73994        "operationId": "createFlowcontrolApiserverV1beta1FlowSchema",
73995        "parameters": [
73996          {
73997            "in": "body",
73998            "name": "body",
73999            "required": true,
74000            "schema": {
74001              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74002            }
74003          },
74004          {
74005            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74006            "in": "query",
74007            "name": "dryRun",
74008            "type": "string",
74009            "uniqueItems": true
74010          },
74011          {
74012            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74013            "in": "query",
74014            "name": "fieldManager",
74015            "type": "string",
74016            "uniqueItems": true
74017          }
74018        ],
74019        "produces": [
74020          "application/json",
74021          "application/yaml",
74022          "application/vnd.kubernetes.protobuf"
74023        ],
74024        "responses": {
74025          "200": {
74026            "description": "OK",
74027            "schema": {
74028              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74029            }
74030          },
74031          "201": {
74032            "description": "Created",
74033            "schema": {
74034              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74035            }
74036          },
74037          "202": {
74038            "description": "Accepted",
74039            "schema": {
74040              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74041            }
74042          },
74043          "401": {
74044            "description": "Unauthorized"
74045          }
74046        },
74047        "schemes": [
74048          "https"
74049        ],
74050        "tags": [
74051          "flowcontrolApiserver_v1beta1"
74052        ],
74053        "x-kubernetes-action": "post",
74054        "x-kubernetes-group-version-kind": {
74055          "group": "flowcontrol.apiserver.k8s.io",
74056          "kind": "FlowSchema",
74057          "version": "v1beta1"
74058        }
74059      }
74060    },
74061    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}": {
74062      "delete": {
74063        "consumes": [
74064          "*/*"
74065        ],
74066        "description": "delete a FlowSchema",
74067        "operationId": "deleteFlowcontrolApiserverV1beta1FlowSchema",
74068        "parameters": [
74069          {
74070            "in": "body",
74071            "name": "body",
74072            "schema": {
74073              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74074            }
74075          },
74076          {
74077            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74078            "in": "query",
74079            "name": "dryRun",
74080            "type": "string",
74081            "uniqueItems": true
74082          },
74083          {
74084            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74085            "in": "query",
74086            "name": "gracePeriodSeconds",
74087            "type": "integer",
74088            "uniqueItems": true
74089          },
74090          {
74091            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74092            "in": "query",
74093            "name": "orphanDependents",
74094            "type": "boolean",
74095            "uniqueItems": true
74096          },
74097          {
74098            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74099            "in": "query",
74100            "name": "propagationPolicy",
74101            "type": "string",
74102            "uniqueItems": true
74103          }
74104        ],
74105        "produces": [
74106          "application/json",
74107          "application/yaml",
74108          "application/vnd.kubernetes.protobuf"
74109        ],
74110        "responses": {
74111          "200": {
74112            "description": "OK",
74113            "schema": {
74114              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74115            }
74116          },
74117          "202": {
74118            "description": "Accepted",
74119            "schema": {
74120              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74121            }
74122          },
74123          "401": {
74124            "description": "Unauthorized"
74125          }
74126        },
74127        "schemes": [
74128          "https"
74129        ],
74130        "tags": [
74131          "flowcontrolApiserver_v1beta1"
74132        ],
74133        "x-kubernetes-action": "delete",
74134        "x-kubernetes-group-version-kind": {
74135          "group": "flowcontrol.apiserver.k8s.io",
74136          "kind": "FlowSchema",
74137          "version": "v1beta1"
74138        }
74139      },
74140      "get": {
74141        "consumes": [
74142          "*/*"
74143        ],
74144        "description": "read the specified FlowSchema",
74145        "operationId": "readFlowcontrolApiserverV1beta1FlowSchema",
74146        "produces": [
74147          "application/json",
74148          "application/yaml",
74149          "application/vnd.kubernetes.protobuf"
74150        ],
74151        "responses": {
74152          "200": {
74153            "description": "OK",
74154            "schema": {
74155              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74156            }
74157          },
74158          "401": {
74159            "description": "Unauthorized"
74160          }
74161        },
74162        "schemes": [
74163          "https"
74164        ],
74165        "tags": [
74166          "flowcontrolApiserver_v1beta1"
74167        ],
74168        "x-kubernetes-action": "get",
74169        "x-kubernetes-group-version-kind": {
74170          "group": "flowcontrol.apiserver.k8s.io",
74171          "kind": "FlowSchema",
74172          "version": "v1beta1"
74173        }
74174      },
74175      "parameters": [
74176        {
74177          "description": "name of the FlowSchema",
74178          "in": "path",
74179          "name": "name",
74180          "required": true,
74181          "type": "string",
74182          "uniqueItems": true
74183        },
74184        {
74185          "description": "If 'true', then the output is pretty printed.",
74186          "in": "query",
74187          "name": "pretty",
74188          "type": "string",
74189          "uniqueItems": true
74190        }
74191      ],
74192      "patch": {
74193        "consumes": [
74194          "application/json-patch+json",
74195          "application/merge-patch+json",
74196          "application/strategic-merge-patch+json",
74197          "application/apply-patch+yaml"
74198        ],
74199        "description": "partially update the specified FlowSchema",
74200        "operationId": "patchFlowcontrolApiserverV1beta1FlowSchema",
74201        "parameters": [
74202          {
74203            "in": "body",
74204            "name": "body",
74205            "required": true,
74206            "schema": {
74207              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74208            }
74209          },
74210          {
74211            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74212            "in": "query",
74213            "name": "dryRun",
74214            "type": "string",
74215            "uniqueItems": true
74216          },
74217          {
74218            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
74219            "in": "query",
74220            "name": "fieldManager",
74221            "type": "string",
74222            "uniqueItems": true
74223          },
74224          {
74225            "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.",
74226            "in": "query",
74227            "name": "force",
74228            "type": "boolean",
74229            "uniqueItems": true
74230          }
74231        ],
74232        "produces": [
74233          "application/json",
74234          "application/yaml",
74235          "application/vnd.kubernetes.protobuf"
74236        ],
74237        "responses": {
74238          "200": {
74239            "description": "OK",
74240            "schema": {
74241              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74242            }
74243          },
74244          "401": {
74245            "description": "Unauthorized"
74246          }
74247        },
74248        "schemes": [
74249          "https"
74250        ],
74251        "tags": [
74252          "flowcontrolApiserver_v1beta1"
74253        ],
74254        "x-kubernetes-action": "patch",
74255        "x-kubernetes-group-version-kind": {
74256          "group": "flowcontrol.apiserver.k8s.io",
74257          "kind": "FlowSchema",
74258          "version": "v1beta1"
74259        }
74260      },
74261      "put": {
74262        "consumes": [
74263          "*/*"
74264        ],
74265        "description": "replace the specified FlowSchema",
74266        "operationId": "replaceFlowcontrolApiserverV1beta1FlowSchema",
74267        "parameters": [
74268          {
74269            "in": "body",
74270            "name": "body",
74271            "required": true,
74272            "schema": {
74273              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74274            }
74275          },
74276          {
74277            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74278            "in": "query",
74279            "name": "dryRun",
74280            "type": "string",
74281            "uniqueItems": true
74282          },
74283          {
74284            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74285            "in": "query",
74286            "name": "fieldManager",
74287            "type": "string",
74288            "uniqueItems": true
74289          }
74290        ],
74291        "produces": [
74292          "application/json",
74293          "application/yaml",
74294          "application/vnd.kubernetes.protobuf"
74295        ],
74296        "responses": {
74297          "200": {
74298            "description": "OK",
74299            "schema": {
74300              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74301            }
74302          },
74303          "201": {
74304            "description": "Created",
74305            "schema": {
74306              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74307            }
74308          },
74309          "401": {
74310            "description": "Unauthorized"
74311          }
74312        },
74313        "schemes": [
74314          "https"
74315        ],
74316        "tags": [
74317          "flowcontrolApiserver_v1beta1"
74318        ],
74319        "x-kubernetes-action": "put",
74320        "x-kubernetes-group-version-kind": {
74321          "group": "flowcontrol.apiserver.k8s.io",
74322          "kind": "FlowSchema",
74323          "version": "v1beta1"
74324        }
74325      }
74326    },
74327    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}/status": {
74328      "get": {
74329        "consumes": [
74330          "*/*"
74331        ],
74332        "description": "read status of the specified FlowSchema",
74333        "operationId": "readFlowcontrolApiserverV1beta1FlowSchemaStatus",
74334        "produces": [
74335          "application/json",
74336          "application/yaml",
74337          "application/vnd.kubernetes.protobuf"
74338        ],
74339        "responses": {
74340          "200": {
74341            "description": "OK",
74342            "schema": {
74343              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74344            }
74345          },
74346          "401": {
74347            "description": "Unauthorized"
74348          }
74349        },
74350        "schemes": [
74351          "https"
74352        ],
74353        "tags": [
74354          "flowcontrolApiserver_v1beta1"
74355        ],
74356        "x-kubernetes-action": "get",
74357        "x-kubernetes-group-version-kind": {
74358          "group": "flowcontrol.apiserver.k8s.io",
74359          "kind": "FlowSchema",
74360          "version": "v1beta1"
74361        }
74362      },
74363      "parameters": [
74364        {
74365          "description": "name of the FlowSchema",
74366          "in": "path",
74367          "name": "name",
74368          "required": true,
74369          "type": "string",
74370          "uniqueItems": true
74371        },
74372        {
74373          "description": "If 'true', then the output is pretty printed.",
74374          "in": "query",
74375          "name": "pretty",
74376          "type": "string",
74377          "uniqueItems": true
74378        }
74379      ],
74380      "patch": {
74381        "consumes": [
74382          "application/json-patch+json",
74383          "application/merge-patch+json",
74384          "application/strategic-merge-patch+json",
74385          "application/apply-patch+yaml"
74386        ],
74387        "description": "partially update status of the specified FlowSchema",
74388        "operationId": "patchFlowcontrolApiserverV1beta1FlowSchemaStatus",
74389        "parameters": [
74390          {
74391            "in": "body",
74392            "name": "body",
74393            "required": true,
74394            "schema": {
74395              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74396            }
74397          },
74398          {
74399            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74400            "in": "query",
74401            "name": "dryRun",
74402            "type": "string",
74403            "uniqueItems": true
74404          },
74405          {
74406            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
74407            "in": "query",
74408            "name": "fieldManager",
74409            "type": "string",
74410            "uniqueItems": true
74411          },
74412          {
74413            "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.",
74414            "in": "query",
74415            "name": "force",
74416            "type": "boolean",
74417            "uniqueItems": true
74418          }
74419        ],
74420        "produces": [
74421          "application/json",
74422          "application/yaml",
74423          "application/vnd.kubernetes.protobuf"
74424        ],
74425        "responses": {
74426          "200": {
74427            "description": "OK",
74428            "schema": {
74429              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74430            }
74431          },
74432          "401": {
74433            "description": "Unauthorized"
74434          }
74435        },
74436        "schemes": [
74437          "https"
74438        ],
74439        "tags": [
74440          "flowcontrolApiserver_v1beta1"
74441        ],
74442        "x-kubernetes-action": "patch",
74443        "x-kubernetes-group-version-kind": {
74444          "group": "flowcontrol.apiserver.k8s.io",
74445          "kind": "FlowSchema",
74446          "version": "v1beta1"
74447        }
74448      },
74449      "put": {
74450        "consumes": [
74451          "*/*"
74452        ],
74453        "description": "replace status of the specified FlowSchema",
74454        "operationId": "replaceFlowcontrolApiserverV1beta1FlowSchemaStatus",
74455        "parameters": [
74456          {
74457            "in": "body",
74458            "name": "body",
74459            "required": true,
74460            "schema": {
74461              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74462            }
74463          },
74464          {
74465            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74466            "in": "query",
74467            "name": "dryRun",
74468            "type": "string",
74469            "uniqueItems": true
74470          },
74471          {
74472            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74473            "in": "query",
74474            "name": "fieldManager",
74475            "type": "string",
74476            "uniqueItems": true
74477          }
74478        ],
74479        "produces": [
74480          "application/json",
74481          "application/yaml",
74482          "application/vnd.kubernetes.protobuf"
74483        ],
74484        "responses": {
74485          "200": {
74486            "description": "OK",
74487            "schema": {
74488              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74489            }
74490          },
74491          "201": {
74492            "description": "Created",
74493            "schema": {
74494              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74495            }
74496          },
74497          "401": {
74498            "description": "Unauthorized"
74499          }
74500        },
74501        "schemes": [
74502          "https"
74503        ],
74504        "tags": [
74505          "flowcontrolApiserver_v1beta1"
74506        ],
74507        "x-kubernetes-action": "put",
74508        "x-kubernetes-group-version-kind": {
74509          "group": "flowcontrol.apiserver.k8s.io",
74510          "kind": "FlowSchema",
74511          "version": "v1beta1"
74512        }
74513      }
74514    },
74515    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations": {
74516      "delete": {
74517        "consumes": [
74518          "*/*"
74519        ],
74520        "description": "delete collection of PriorityLevelConfiguration",
74521        "operationId": "deleteFlowcontrolApiserverV1beta1CollectionPriorityLevelConfiguration",
74522        "parameters": [
74523          {
74524            "in": "body",
74525            "name": "body",
74526            "schema": {
74527              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74528            }
74529          },
74530          {
74531            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74532            "in": "query",
74533            "name": "continue",
74534            "type": "string",
74535            "uniqueItems": true
74536          },
74537          {
74538            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74539            "in": "query",
74540            "name": "dryRun",
74541            "type": "string",
74542            "uniqueItems": true
74543          },
74544          {
74545            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74546            "in": "query",
74547            "name": "fieldSelector",
74548            "type": "string",
74549            "uniqueItems": true
74550          },
74551          {
74552            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74553            "in": "query",
74554            "name": "gracePeriodSeconds",
74555            "type": "integer",
74556            "uniqueItems": true
74557          },
74558          {
74559            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74560            "in": "query",
74561            "name": "labelSelector",
74562            "type": "string",
74563            "uniqueItems": true
74564          },
74565          {
74566            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74567            "in": "query",
74568            "name": "limit",
74569            "type": "integer",
74570            "uniqueItems": true
74571          },
74572          {
74573            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74574            "in": "query",
74575            "name": "orphanDependents",
74576            "type": "boolean",
74577            "uniqueItems": true
74578          },
74579          {
74580            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74581            "in": "query",
74582            "name": "propagationPolicy",
74583            "type": "string",
74584            "uniqueItems": true
74585          },
74586          {
74587            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74588            "in": "query",
74589            "name": "resourceVersion",
74590            "type": "string",
74591            "uniqueItems": true
74592          },
74593          {
74594            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74595            "in": "query",
74596            "name": "resourceVersionMatch",
74597            "type": "string",
74598            "uniqueItems": true
74599          },
74600          {
74601            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74602            "in": "query",
74603            "name": "timeoutSeconds",
74604            "type": "integer",
74605            "uniqueItems": true
74606          }
74607        ],
74608        "produces": [
74609          "application/json",
74610          "application/yaml",
74611          "application/vnd.kubernetes.protobuf"
74612        ],
74613        "responses": {
74614          "200": {
74615            "description": "OK",
74616            "schema": {
74617              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74618            }
74619          },
74620          "401": {
74621            "description": "Unauthorized"
74622          }
74623        },
74624        "schemes": [
74625          "https"
74626        ],
74627        "tags": [
74628          "flowcontrolApiserver_v1beta1"
74629        ],
74630        "x-kubernetes-action": "deletecollection",
74631        "x-kubernetes-group-version-kind": {
74632          "group": "flowcontrol.apiserver.k8s.io",
74633          "kind": "PriorityLevelConfiguration",
74634          "version": "v1beta1"
74635        }
74636      },
74637      "get": {
74638        "consumes": [
74639          "*/*"
74640        ],
74641        "description": "list or watch objects of kind PriorityLevelConfiguration",
74642        "operationId": "listFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74643        "parameters": [
74644          {
74645            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
74646            "in": "query",
74647            "name": "allowWatchBookmarks",
74648            "type": "boolean",
74649            "uniqueItems": true
74650          },
74651          {
74652            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74653            "in": "query",
74654            "name": "continue",
74655            "type": "string",
74656            "uniqueItems": true
74657          },
74658          {
74659            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74660            "in": "query",
74661            "name": "fieldSelector",
74662            "type": "string",
74663            "uniqueItems": true
74664          },
74665          {
74666            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74667            "in": "query",
74668            "name": "labelSelector",
74669            "type": "string",
74670            "uniqueItems": true
74671          },
74672          {
74673            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74674            "in": "query",
74675            "name": "limit",
74676            "type": "integer",
74677            "uniqueItems": true
74678          },
74679          {
74680            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74681            "in": "query",
74682            "name": "resourceVersion",
74683            "type": "string",
74684            "uniqueItems": true
74685          },
74686          {
74687            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74688            "in": "query",
74689            "name": "resourceVersionMatch",
74690            "type": "string",
74691            "uniqueItems": true
74692          },
74693          {
74694            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74695            "in": "query",
74696            "name": "timeoutSeconds",
74697            "type": "integer",
74698            "uniqueItems": true
74699          },
74700          {
74701            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74702            "in": "query",
74703            "name": "watch",
74704            "type": "boolean",
74705            "uniqueItems": true
74706          }
74707        ],
74708        "produces": [
74709          "application/json",
74710          "application/yaml",
74711          "application/vnd.kubernetes.protobuf",
74712          "application/json;stream=watch",
74713          "application/vnd.kubernetes.protobuf;stream=watch"
74714        ],
74715        "responses": {
74716          "200": {
74717            "description": "OK",
74718            "schema": {
74719              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList"
74720            }
74721          },
74722          "401": {
74723            "description": "Unauthorized"
74724          }
74725        },
74726        "schemes": [
74727          "https"
74728        ],
74729        "tags": [
74730          "flowcontrolApiserver_v1beta1"
74731        ],
74732        "x-kubernetes-action": "list",
74733        "x-kubernetes-group-version-kind": {
74734          "group": "flowcontrol.apiserver.k8s.io",
74735          "kind": "PriorityLevelConfiguration",
74736          "version": "v1beta1"
74737        }
74738      },
74739      "parameters": [
74740        {
74741          "description": "If 'true', then the output is pretty printed.",
74742          "in": "query",
74743          "name": "pretty",
74744          "type": "string",
74745          "uniqueItems": true
74746        }
74747      ],
74748      "post": {
74749        "consumes": [
74750          "*/*"
74751        ],
74752        "description": "create a PriorityLevelConfiguration",
74753        "operationId": "createFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74754        "parameters": [
74755          {
74756            "in": "body",
74757            "name": "body",
74758            "required": true,
74759            "schema": {
74760              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74761            }
74762          },
74763          {
74764            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74765            "in": "query",
74766            "name": "dryRun",
74767            "type": "string",
74768            "uniqueItems": true
74769          },
74770          {
74771            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74772            "in": "query",
74773            "name": "fieldManager",
74774            "type": "string",
74775            "uniqueItems": true
74776          }
74777        ],
74778        "produces": [
74779          "application/json",
74780          "application/yaml",
74781          "application/vnd.kubernetes.protobuf"
74782        ],
74783        "responses": {
74784          "200": {
74785            "description": "OK",
74786            "schema": {
74787              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74788            }
74789          },
74790          "201": {
74791            "description": "Created",
74792            "schema": {
74793              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74794            }
74795          },
74796          "202": {
74797            "description": "Accepted",
74798            "schema": {
74799              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74800            }
74801          },
74802          "401": {
74803            "description": "Unauthorized"
74804          }
74805        },
74806        "schemes": [
74807          "https"
74808        ],
74809        "tags": [
74810          "flowcontrolApiserver_v1beta1"
74811        ],
74812        "x-kubernetes-action": "post",
74813        "x-kubernetes-group-version-kind": {
74814          "group": "flowcontrol.apiserver.k8s.io",
74815          "kind": "PriorityLevelConfiguration",
74816          "version": "v1beta1"
74817        }
74818      }
74819    },
74820    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}": {
74821      "delete": {
74822        "consumes": [
74823          "*/*"
74824        ],
74825        "description": "delete a PriorityLevelConfiguration",
74826        "operationId": "deleteFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74827        "parameters": [
74828          {
74829            "in": "body",
74830            "name": "body",
74831            "schema": {
74832              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74833            }
74834          },
74835          {
74836            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74837            "in": "query",
74838            "name": "dryRun",
74839            "type": "string",
74840            "uniqueItems": true
74841          },
74842          {
74843            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74844            "in": "query",
74845            "name": "gracePeriodSeconds",
74846            "type": "integer",
74847            "uniqueItems": true
74848          },
74849          {
74850            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74851            "in": "query",
74852            "name": "orphanDependents",
74853            "type": "boolean",
74854            "uniqueItems": true
74855          },
74856          {
74857            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74858            "in": "query",
74859            "name": "propagationPolicy",
74860            "type": "string",
74861            "uniqueItems": true
74862          }
74863        ],
74864        "produces": [
74865          "application/json",
74866          "application/yaml",
74867          "application/vnd.kubernetes.protobuf"
74868        ],
74869        "responses": {
74870          "200": {
74871            "description": "OK",
74872            "schema": {
74873              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74874            }
74875          },
74876          "202": {
74877            "description": "Accepted",
74878            "schema": {
74879              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74880            }
74881          },
74882          "401": {
74883            "description": "Unauthorized"
74884          }
74885        },
74886        "schemes": [
74887          "https"
74888        ],
74889        "tags": [
74890          "flowcontrolApiserver_v1beta1"
74891        ],
74892        "x-kubernetes-action": "delete",
74893        "x-kubernetes-group-version-kind": {
74894          "group": "flowcontrol.apiserver.k8s.io",
74895          "kind": "PriorityLevelConfiguration",
74896          "version": "v1beta1"
74897        }
74898      },
74899      "get": {
74900        "consumes": [
74901          "*/*"
74902        ],
74903        "description": "read the specified PriorityLevelConfiguration",
74904        "operationId": "readFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74905        "produces": [
74906          "application/json",
74907          "application/yaml",
74908          "application/vnd.kubernetes.protobuf"
74909        ],
74910        "responses": {
74911          "200": {
74912            "description": "OK",
74913            "schema": {
74914              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74915            }
74916          },
74917          "401": {
74918            "description": "Unauthorized"
74919          }
74920        },
74921        "schemes": [
74922          "https"
74923        ],
74924        "tags": [
74925          "flowcontrolApiserver_v1beta1"
74926        ],
74927        "x-kubernetes-action": "get",
74928        "x-kubernetes-group-version-kind": {
74929          "group": "flowcontrol.apiserver.k8s.io",
74930          "kind": "PriorityLevelConfiguration",
74931          "version": "v1beta1"
74932        }
74933      },
74934      "parameters": [
74935        {
74936          "description": "name of the PriorityLevelConfiguration",
74937          "in": "path",
74938          "name": "name",
74939          "required": true,
74940          "type": "string",
74941          "uniqueItems": true
74942        },
74943        {
74944          "description": "If 'true', then the output is pretty printed.",
74945          "in": "query",
74946          "name": "pretty",
74947          "type": "string",
74948          "uniqueItems": true
74949        }
74950      ],
74951      "patch": {
74952        "consumes": [
74953          "application/json-patch+json",
74954          "application/merge-patch+json",
74955          "application/strategic-merge-patch+json",
74956          "application/apply-patch+yaml"
74957        ],
74958        "description": "partially update the specified PriorityLevelConfiguration",
74959        "operationId": "patchFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74960        "parameters": [
74961          {
74962            "in": "body",
74963            "name": "body",
74964            "required": true,
74965            "schema": {
74966              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74967            }
74968          },
74969          {
74970            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74971            "in": "query",
74972            "name": "dryRun",
74973            "type": "string",
74974            "uniqueItems": true
74975          },
74976          {
74977            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
74978            "in": "query",
74979            "name": "fieldManager",
74980            "type": "string",
74981            "uniqueItems": true
74982          },
74983          {
74984            "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.",
74985            "in": "query",
74986            "name": "force",
74987            "type": "boolean",
74988            "uniqueItems": true
74989          }
74990        ],
74991        "produces": [
74992          "application/json",
74993          "application/yaml",
74994          "application/vnd.kubernetes.protobuf"
74995        ],
74996        "responses": {
74997          "200": {
74998            "description": "OK",
74999            "schema": {
75000              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75001            }
75002          },
75003          "401": {
75004            "description": "Unauthorized"
75005          }
75006        },
75007        "schemes": [
75008          "https"
75009        ],
75010        "tags": [
75011          "flowcontrolApiserver_v1beta1"
75012        ],
75013        "x-kubernetes-action": "patch",
75014        "x-kubernetes-group-version-kind": {
75015          "group": "flowcontrol.apiserver.k8s.io",
75016          "kind": "PriorityLevelConfiguration",
75017          "version": "v1beta1"
75018        }
75019      },
75020      "put": {
75021        "consumes": [
75022          "*/*"
75023        ],
75024        "description": "replace the specified PriorityLevelConfiguration",
75025        "operationId": "replaceFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
75026        "parameters": [
75027          {
75028            "in": "body",
75029            "name": "body",
75030            "required": true,
75031            "schema": {
75032              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75033            }
75034          },
75035          {
75036            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75037            "in": "query",
75038            "name": "dryRun",
75039            "type": "string",
75040            "uniqueItems": true
75041          },
75042          {
75043            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75044            "in": "query",
75045            "name": "fieldManager",
75046            "type": "string",
75047            "uniqueItems": true
75048          }
75049        ],
75050        "produces": [
75051          "application/json",
75052          "application/yaml",
75053          "application/vnd.kubernetes.protobuf"
75054        ],
75055        "responses": {
75056          "200": {
75057            "description": "OK",
75058            "schema": {
75059              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75060            }
75061          },
75062          "201": {
75063            "description": "Created",
75064            "schema": {
75065              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75066            }
75067          },
75068          "401": {
75069            "description": "Unauthorized"
75070          }
75071        },
75072        "schemes": [
75073          "https"
75074        ],
75075        "tags": [
75076          "flowcontrolApiserver_v1beta1"
75077        ],
75078        "x-kubernetes-action": "put",
75079        "x-kubernetes-group-version-kind": {
75080          "group": "flowcontrol.apiserver.k8s.io",
75081          "kind": "PriorityLevelConfiguration",
75082          "version": "v1beta1"
75083        }
75084      }
75085    },
75086    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}/status": {
75087      "get": {
75088        "consumes": [
75089          "*/*"
75090        ],
75091        "description": "read status of the specified PriorityLevelConfiguration",
75092        "operationId": "readFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
75093        "produces": [
75094          "application/json",
75095          "application/yaml",
75096          "application/vnd.kubernetes.protobuf"
75097        ],
75098        "responses": {
75099          "200": {
75100            "description": "OK",
75101            "schema": {
75102              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75103            }
75104          },
75105          "401": {
75106            "description": "Unauthorized"
75107          }
75108        },
75109        "schemes": [
75110          "https"
75111        ],
75112        "tags": [
75113          "flowcontrolApiserver_v1beta1"
75114        ],
75115        "x-kubernetes-action": "get",
75116        "x-kubernetes-group-version-kind": {
75117          "group": "flowcontrol.apiserver.k8s.io",
75118          "kind": "PriorityLevelConfiguration",
75119          "version": "v1beta1"
75120        }
75121      },
75122      "parameters": [
75123        {
75124          "description": "name of the PriorityLevelConfiguration",
75125          "in": "path",
75126          "name": "name",
75127          "required": true,
75128          "type": "string",
75129          "uniqueItems": true
75130        },
75131        {
75132          "description": "If 'true', then the output is pretty printed.",
75133          "in": "query",
75134          "name": "pretty",
75135          "type": "string",
75136          "uniqueItems": true
75137        }
75138      ],
75139      "patch": {
75140        "consumes": [
75141          "application/json-patch+json",
75142          "application/merge-patch+json",
75143          "application/strategic-merge-patch+json",
75144          "application/apply-patch+yaml"
75145        ],
75146        "description": "partially update status of the specified PriorityLevelConfiguration",
75147        "operationId": "patchFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
75148        "parameters": [
75149          {
75150            "in": "body",
75151            "name": "body",
75152            "required": true,
75153            "schema": {
75154              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
75155            }
75156          },
75157          {
75158            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75159            "in": "query",
75160            "name": "dryRun",
75161            "type": "string",
75162            "uniqueItems": true
75163          },
75164          {
75165            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
75166            "in": "query",
75167            "name": "fieldManager",
75168            "type": "string",
75169            "uniqueItems": true
75170          },
75171          {
75172            "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.",
75173            "in": "query",
75174            "name": "force",
75175            "type": "boolean",
75176            "uniqueItems": true
75177          }
75178        ],
75179        "produces": [
75180          "application/json",
75181          "application/yaml",
75182          "application/vnd.kubernetes.protobuf"
75183        ],
75184        "responses": {
75185          "200": {
75186            "description": "OK",
75187            "schema": {
75188              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75189            }
75190          },
75191          "401": {
75192            "description": "Unauthorized"
75193          }
75194        },
75195        "schemes": [
75196          "https"
75197        ],
75198        "tags": [
75199          "flowcontrolApiserver_v1beta1"
75200        ],
75201        "x-kubernetes-action": "patch",
75202        "x-kubernetes-group-version-kind": {
75203          "group": "flowcontrol.apiserver.k8s.io",
75204          "kind": "PriorityLevelConfiguration",
75205          "version": "v1beta1"
75206        }
75207      },
75208      "put": {
75209        "consumes": [
75210          "*/*"
75211        ],
75212        "description": "replace status of the specified PriorityLevelConfiguration",
75213        "operationId": "replaceFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
75214        "parameters": [
75215          {
75216            "in": "body",
75217            "name": "body",
75218            "required": true,
75219            "schema": {
75220              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75221            }
75222          },
75223          {
75224            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75225            "in": "query",
75226            "name": "dryRun",
75227            "type": "string",
75228            "uniqueItems": true
75229          },
75230          {
75231            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75232            "in": "query",
75233            "name": "fieldManager",
75234            "type": "string",
75235            "uniqueItems": true
75236          }
75237        ],
75238        "produces": [
75239          "application/json",
75240          "application/yaml",
75241          "application/vnd.kubernetes.protobuf"
75242        ],
75243        "responses": {
75244          "200": {
75245            "description": "OK",
75246            "schema": {
75247              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75248            }
75249          },
75250          "201": {
75251            "description": "Created",
75252            "schema": {
75253              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75254            }
75255          },
75256          "401": {
75257            "description": "Unauthorized"
75258          }
75259        },
75260        "schemes": [
75261          "https"
75262        ],
75263        "tags": [
75264          "flowcontrolApiserver_v1beta1"
75265        ],
75266        "x-kubernetes-action": "put",
75267        "x-kubernetes-group-version-kind": {
75268          "group": "flowcontrol.apiserver.k8s.io",
75269          "kind": "PriorityLevelConfiguration",
75270          "version": "v1beta1"
75271        }
75272      }
75273    },
75274    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/flowschemas": {
75275      "get": {
75276        "consumes": [
75277          "*/*"
75278        ],
75279        "description": "watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead.",
75280        "operationId": "watchFlowcontrolApiserverV1beta1FlowSchemaList",
75281        "produces": [
75282          "application/json",
75283          "application/yaml",
75284          "application/vnd.kubernetes.protobuf",
75285          "application/json;stream=watch",
75286          "application/vnd.kubernetes.protobuf;stream=watch"
75287        ],
75288        "responses": {
75289          "200": {
75290            "description": "OK",
75291            "schema": {
75292              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75293            }
75294          },
75295          "401": {
75296            "description": "Unauthorized"
75297          }
75298        },
75299        "schemes": [
75300          "https"
75301        ],
75302        "tags": [
75303          "flowcontrolApiserver_v1beta1"
75304        ],
75305        "x-kubernetes-action": "watchlist",
75306        "x-kubernetes-group-version-kind": {
75307          "group": "flowcontrol.apiserver.k8s.io",
75308          "kind": "FlowSchema",
75309          "version": "v1beta1"
75310        }
75311      },
75312      "parameters": [
75313        {
75314          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75315          "in": "query",
75316          "name": "allowWatchBookmarks",
75317          "type": "boolean",
75318          "uniqueItems": true
75319        },
75320        {
75321          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75322          "in": "query",
75323          "name": "continue",
75324          "type": "string",
75325          "uniqueItems": true
75326        },
75327        {
75328          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75329          "in": "query",
75330          "name": "fieldSelector",
75331          "type": "string",
75332          "uniqueItems": true
75333        },
75334        {
75335          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75336          "in": "query",
75337          "name": "labelSelector",
75338          "type": "string",
75339          "uniqueItems": true
75340        },
75341        {
75342          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75343          "in": "query",
75344          "name": "limit",
75345          "type": "integer",
75346          "uniqueItems": true
75347        },
75348        {
75349          "description": "If 'true', then the output is pretty printed.",
75350          "in": "query",
75351          "name": "pretty",
75352          "type": "string",
75353          "uniqueItems": true
75354        },
75355        {
75356          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75357          "in": "query",
75358          "name": "resourceVersion",
75359          "type": "string",
75360          "uniqueItems": true
75361        },
75362        {
75363          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75364          "in": "query",
75365          "name": "resourceVersionMatch",
75366          "type": "string",
75367          "uniqueItems": true
75368        },
75369        {
75370          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75371          "in": "query",
75372          "name": "timeoutSeconds",
75373          "type": "integer",
75374          "uniqueItems": true
75375        },
75376        {
75377          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75378          "in": "query",
75379          "name": "watch",
75380          "type": "boolean",
75381          "uniqueItems": true
75382        }
75383      ]
75384    },
75385    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/flowschemas/{name}": {
75386      "get": {
75387        "consumes": [
75388          "*/*"
75389        ],
75390        "description": "watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
75391        "operationId": "watchFlowcontrolApiserverV1beta1FlowSchema",
75392        "produces": [
75393          "application/json",
75394          "application/yaml",
75395          "application/vnd.kubernetes.protobuf",
75396          "application/json;stream=watch",
75397          "application/vnd.kubernetes.protobuf;stream=watch"
75398        ],
75399        "responses": {
75400          "200": {
75401            "description": "OK",
75402            "schema": {
75403              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75404            }
75405          },
75406          "401": {
75407            "description": "Unauthorized"
75408          }
75409        },
75410        "schemes": [
75411          "https"
75412        ],
75413        "tags": [
75414          "flowcontrolApiserver_v1beta1"
75415        ],
75416        "x-kubernetes-action": "watch",
75417        "x-kubernetes-group-version-kind": {
75418          "group": "flowcontrol.apiserver.k8s.io",
75419          "kind": "FlowSchema",
75420          "version": "v1beta1"
75421        }
75422      },
75423      "parameters": [
75424        {
75425          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75426          "in": "query",
75427          "name": "allowWatchBookmarks",
75428          "type": "boolean",
75429          "uniqueItems": true
75430        },
75431        {
75432          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75433          "in": "query",
75434          "name": "continue",
75435          "type": "string",
75436          "uniqueItems": true
75437        },
75438        {
75439          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75440          "in": "query",
75441          "name": "fieldSelector",
75442          "type": "string",
75443          "uniqueItems": true
75444        },
75445        {
75446          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75447          "in": "query",
75448          "name": "labelSelector",
75449          "type": "string",
75450          "uniqueItems": true
75451        },
75452        {
75453          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75454          "in": "query",
75455          "name": "limit",
75456          "type": "integer",
75457          "uniqueItems": true
75458        },
75459        {
75460          "description": "name of the FlowSchema",
75461          "in": "path",
75462          "name": "name",
75463          "required": true,
75464          "type": "string",
75465          "uniqueItems": true
75466        },
75467        {
75468          "description": "If 'true', then the output is pretty printed.",
75469          "in": "query",
75470          "name": "pretty",
75471          "type": "string",
75472          "uniqueItems": true
75473        },
75474        {
75475          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75476          "in": "query",
75477          "name": "resourceVersion",
75478          "type": "string",
75479          "uniqueItems": true
75480        },
75481        {
75482          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75483          "in": "query",
75484          "name": "resourceVersionMatch",
75485          "type": "string",
75486          "uniqueItems": true
75487        },
75488        {
75489          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75490          "in": "query",
75491          "name": "timeoutSeconds",
75492          "type": "integer",
75493          "uniqueItems": true
75494        },
75495        {
75496          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75497          "in": "query",
75498          "name": "watch",
75499          "type": "boolean",
75500          "uniqueItems": true
75501        }
75502      ]
75503    },
75504    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/prioritylevelconfigurations": {
75505      "get": {
75506        "consumes": [
75507          "*/*"
75508        ],
75509        "description": "watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
75510        "operationId": "watchFlowcontrolApiserverV1beta1PriorityLevelConfigurationList",
75511        "produces": [
75512          "application/json",
75513          "application/yaml",
75514          "application/vnd.kubernetes.protobuf",
75515          "application/json;stream=watch",
75516          "application/vnd.kubernetes.protobuf;stream=watch"
75517        ],
75518        "responses": {
75519          "200": {
75520            "description": "OK",
75521            "schema": {
75522              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75523            }
75524          },
75525          "401": {
75526            "description": "Unauthorized"
75527          }
75528        },
75529        "schemes": [
75530          "https"
75531        ],
75532        "tags": [
75533          "flowcontrolApiserver_v1beta1"
75534        ],
75535        "x-kubernetes-action": "watchlist",
75536        "x-kubernetes-group-version-kind": {
75537          "group": "flowcontrol.apiserver.k8s.io",
75538          "kind": "PriorityLevelConfiguration",
75539          "version": "v1beta1"
75540        }
75541      },
75542      "parameters": [
75543        {
75544          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75545          "in": "query",
75546          "name": "allowWatchBookmarks",
75547          "type": "boolean",
75548          "uniqueItems": true
75549        },
75550        {
75551          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75552          "in": "query",
75553          "name": "continue",
75554          "type": "string",
75555          "uniqueItems": true
75556        },
75557        {
75558          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75559          "in": "query",
75560          "name": "fieldSelector",
75561          "type": "string",
75562          "uniqueItems": true
75563        },
75564        {
75565          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75566          "in": "query",
75567          "name": "labelSelector",
75568          "type": "string",
75569          "uniqueItems": true
75570        },
75571        {
75572          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75573          "in": "query",
75574          "name": "limit",
75575          "type": "integer",
75576          "uniqueItems": true
75577        },
75578        {
75579          "description": "If 'true', then the output is pretty printed.",
75580          "in": "query",
75581          "name": "pretty",
75582          "type": "string",
75583          "uniqueItems": true
75584        },
75585        {
75586          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75587          "in": "query",
75588          "name": "resourceVersion",
75589          "type": "string",
75590          "uniqueItems": true
75591        },
75592        {
75593          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75594          "in": "query",
75595          "name": "resourceVersionMatch",
75596          "type": "string",
75597          "uniqueItems": true
75598        },
75599        {
75600          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75601          "in": "query",
75602          "name": "timeoutSeconds",
75603          "type": "integer",
75604          "uniqueItems": true
75605        },
75606        {
75607          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75608          "in": "query",
75609          "name": "watch",
75610          "type": "boolean",
75611          "uniqueItems": true
75612        }
75613      ]
75614    },
75615    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/prioritylevelconfigurations/{name}": {
75616      "get": {
75617        "consumes": [
75618          "*/*"
75619        ],
75620        "description": "watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
75621        "operationId": "watchFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
75622        "produces": [
75623          "application/json",
75624          "application/yaml",
75625          "application/vnd.kubernetes.protobuf",
75626          "application/json;stream=watch",
75627          "application/vnd.kubernetes.protobuf;stream=watch"
75628        ],
75629        "responses": {
75630          "200": {
75631            "description": "OK",
75632            "schema": {
75633              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75634            }
75635          },
75636          "401": {
75637            "description": "Unauthorized"
75638          }
75639        },
75640        "schemes": [
75641          "https"
75642        ],
75643        "tags": [
75644          "flowcontrolApiserver_v1beta1"
75645        ],
75646        "x-kubernetes-action": "watch",
75647        "x-kubernetes-group-version-kind": {
75648          "group": "flowcontrol.apiserver.k8s.io",
75649          "kind": "PriorityLevelConfiguration",
75650          "version": "v1beta1"
75651        }
75652      },
75653      "parameters": [
75654        {
75655          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75656          "in": "query",
75657          "name": "allowWatchBookmarks",
75658          "type": "boolean",
75659          "uniqueItems": true
75660        },
75661        {
75662          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75663          "in": "query",
75664          "name": "continue",
75665          "type": "string",
75666          "uniqueItems": true
75667        },
75668        {
75669          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75670          "in": "query",
75671          "name": "fieldSelector",
75672          "type": "string",
75673          "uniqueItems": true
75674        },
75675        {
75676          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75677          "in": "query",
75678          "name": "labelSelector",
75679          "type": "string",
75680          "uniqueItems": true
75681        },
75682        {
75683          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75684          "in": "query",
75685          "name": "limit",
75686          "type": "integer",
75687          "uniqueItems": true
75688        },
75689        {
75690          "description": "name of the PriorityLevelConfiguration",
75691          "in": "path",
75692          "name": "name",
75693          "required": true,
75694          "type": "string",
75695          "uniqueItems": true
75696        },
75697        {
75698          "description": "If 'true', then the output is pretty printed.",
75699          "in": "query",
75700          "name": "pretty",
75701          "type": "string",
75702          "uniqueItems": true
75703        },
75704        {
75705          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75706          "in": "query",
75707          "name": "resourceVersion",
75708          "type": "string",
75709          "uniqueItems": true
75710        },
75711        {
75712          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75713          "in": "query",
75714          "name": "resourceVersionMatch",
75715          "type": "string",
75716          "uniqueItems": true
75717        },
75718        {
75719          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75720          "in": "query",
75721          "name": "timeoutSeconds",
75722          "type": "integer",
75723          "uniqueItems": true
75724        },
75725        {
75726          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75727          "in": "query",
75728          "name": "watch",
75729          "type": "boolean",
75730          "uniqueItems": true
75731        }
75732      ]
75733    },
75734    "/apis/internal.apiserver.k8s.io/": {
75735      "get": {
75736        "consumes": [
75737          "application/json",
75738          "application/yaml",
75739          "application/vnd.kubernetes.protobuf"
75740        ],
75741        "description": "get information of a group",
75742        "operationId": "getInternalApiserverAPIGroup",
75743        "produces": [
75744          "application/json",
75745          "application/yaml",
75746          "application/vnd.kubernetes.protobuf"
75747        ],
75748        "responses": {
75749          "200": {
75750            "description": "OK",
75751            "schema": {
75752              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
75753            }
75754          },
75755          "401": {
75756            "description": "Unauthorized"
75757          }
75758        },
75759        "schemes": [
75760          "https"
75761        ],
75762        "tags": [
75763          "internalApiserver"
75764        ]
75765      }
75766    },
75767    "/apis/internal.apiserver.k8s.io/v1alpha1/": {
75768      "get": {
75769        "consumes": [
75770          "application/json",
75771          "application/yaml",
75772          "application/vnd.kubernetes.protobuf"
75773        ],
75774        "description": "get available resources",
75775        "operationId": "getInternalApiserverV1alpha1APIResources",
75776        "produces": [
75777          "application/json",
75778          "application/yaml",
75779          "application/vnd.kubernetes.protobuf"
75780        ],
75781        "responses": {
75782          "200": {
75783            "description": "OK",
75784            "schema": {
75785              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
75786            }
75787          },
75788          "401": {
75789            "description": "Unauthorized"
75790          }
75791        },
75792        "schemes": [
75793          "https"
75794        ],
75795        "tags": [
75796          "internalApiserver_v1alpha1"
75797        ]
75798      }
75799    },
75800    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions": {
75801      "delete": {
75802        "consumes": [
75803          "*/*"
75804        ],
75805        "description": "delete collection of StorageVersion",
75806        "operationId": "deleteInternalApiserverV1alpha1CollectionStorageVersion",
75807        "parameters": [
75808          {
75809            "in": "body",
75810            "name": "body",
75811            "schema": {
75812              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75813            }
75814          },
75815          {
75816            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75817            "in": "query",
75818            "name": "continue",
75819            "type": "string",
75820            "uniqueItems": true
75821          },
75822          {
75823            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75824            "in": "query",
75825            "name": "dryRun",
75826            "type": "string",
75827            "uniqueItems": true
75828          },
75829          {
75830            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75831            "in": "query",
75832            "name": "fieldSelector",
75833            "type": "string",
75834            "uniqueItems": true
75835          },
75836          {
75837            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
75838            "in": "query",
75839            "name": "gracePeriodSeconds",
75840            "type": "integer",
75841            "uniqueItems": true
75842          },
75843          {
75844            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75845            "in": "query",
75846            "name": "labelSelector",
75847            "type": "string",
75848            "uniqueItems": true
75849          },
75850          {
75851            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75852            "in": "query",
75853            "name": "limit",
75854            "type": "integer",
75855            "uniqueItems": true
75856          },
75857          {
75858            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
75859            "in": "query",
75860            "name": "orphanDependents",
75861            "type": "boolean",
75862            "uniqueItems": true
75863          },
75864          {
75865            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
75866            "in": "query",
75867            "name": "propagationPolicy",
75868            "type": "string",
75869            "uniqueItems": true
75870          },
75871          {
75872            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75873            "in": "query",
75874            "name": "resourceVersion",
75875            "type": "string",
75876            "uniqueItems": true
75877          },
75878          {
75879            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75880            "in": "query",
75881            "name": "resourceVersionMatch",
75882            "type": "string",
75883            "uniqueItems": true
75884          },
75885          {
75886            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75887            "in": "query",
75888            "name": "timeoutSeconds",
75889            "type": "integer",
75890            "uniqueItems": true
75891          }
75892        ],
75893        "produces": [
75894          "application/json",
75895          "application/yaml",
75896          "application/vnd.kubernetes.protobuf"
75897        ],
75898        "responses": {
75899          "200": {
75900            "description": "OK",
75901            "schema": {
75902              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75903            }
75904          },
75905          "401": {
75906            "description": "Unauthorized"
75907          }
75908        },
75909        "schemes": [
75910          "https"
75911        ],
75912        "tags": [
75913          "internalApiserver_v1alpha1"
75914        ],
75915        "x-kubernetes-action": "deletecollection",
75916        "x-kubernetes-group-version-kind": {
75917          "group": "internal.apiserver.k8s.io",
75918          "kind": "StorageVersion",
75919          "version": "v1alpha1"
75920        }
75921      },
75922      "get": {
75923        "consumes": [
75924          "*/*"
75925        ],
75926        "description": "list or watch objects of kind StorageVersion",
75927        "operationId": "listInternalApiserverV1alpha1StorageVersion",
75928        "parameters": [
75929          {
75930            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75931            "in": "query",
75932            "name": "allowWatchBookmarks",
75933            "type": "boolean",
75934            "uniqueItems": true
75935          },
75936          {
75937            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75938            "in": "query",
75939            "name": "continue",
75940            "type": "string",
75941            "uniqueItems": true
75942          },
75943          {
75944            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75945            "in": "query",
75946            "name": "fieldSelector",
75947            "type": "string",
75948            "uniqueItems": true
75949          },
75950          {
75951            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75952            "in": "query",
75953            "name": "labelSelector",
75954            "type": "string",
75955            "uniqueItems": true
75956          },
75957          {
75958            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75959            "in": "query",
75960            "name": "limit",
75961            "type": "integer",
75962            "uniqueItems": true
75963          },
75964          {
75965            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75966            "in": "query",
75967            "name": "resourceVersion",
75968            "type": "string",
75969            "uniqueItems": true
75970          },
75971          {
75972            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75973            "in": "query",
75974            "name": "resourceVersionMatch",
75975            "type": "string",
75976            "uniqueItems": true
75977          },
75978          {
75979            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75980            "in": "query",
75981            "name": "timeoutSeconds",
75982            "type": "integer",
75983            "uniqueItems": true
75984          },
75985          {
75986            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75987            "in": "query",
75988            "name": "watch",
75989            "type": "boolean",
75990            "uniqueItems": true
75991          }
75992        ],
75993        "produces": [
75994          "application/json",
75995          "application/yaml",
75996          "application/vnd.kubernetes.protobuf",
75997          "application/json;stream=watch",
75998          "application/vnd.kubernetes.protobuf;stream=watch"
75999        ],
76000        "responses": {
76001          "200": {
76002            "description": "OK",
76003            "schema": {
76004              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList"
76005            }
76006          },
76007          "401": {
76008            "description": "Unauthorized"
76009          }
76010        },
76011        "schemes": [
76012          "https"
76013        ],
76014        "tags": [
76015          "internalApiserver_v1alpha1"
76016        ],
76017        "x-kubernetes-action": "list",
76018        "x-kubernetes-group-version-kind": {
76019          "group": "internal.apiserver.k8s.io",
76020          "kind": "StorageVersion",
76021          "version": "v1alpha1"
76022        }
76023      },
76024      "parameters": [
76025        {
76026          "description": "If 'true', then the output is pretty printed.",
76027          "in": "query",
76028          "name": "pretty",
76029          "type": "string",
76030          "uniqueItems": true
76031        }
76032      ],
76033      "post": {
76034        "consumes": [
76035          "*/*"
76036        ],
76037        "description": "create a StorageVersion",
76038        "operationId": "createInternalApiserverV1alpha1StorageVersion",
76039        "parameters": [
76040          {
76041            "in": "body",
76042            "name": "body",
76043            "required": true,
76044            "schema": {
76045              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76046            }
76047          },
76048          {
76049            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76050            "in": "query",
76051            "name": "dryRun",
76052            "type": "string",
76053            "uniqueItems": true
76054          },
76055          {
76056            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76057            "in": "query",
76058            "name": "fieldManager",
76059            "type": "string",
76060            "uniqueItems": true
76061          }
76062        ],
76063        "produces": [
76064          "application/json",
76065          "application/yaml",
76066          "application/vnd.kubernetes.protobuf"
76067        ],
76068        "responses": {
76069          "200": {
76070            "description": "OK",
76071            "schema": {
76072              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76073            }
76074          },
76075          "201": {
76076            "description": "Created",
76077            "schema": {
76078              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76079            }
76080          },
76081          "202": {
76082            "description": "Accepted",
76083            "schema": {
76084              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76085            }
76086          },
76087          "401": {
76088            "description": "Unauthorized"
76089          }
76090        },
76091        "schemes": [
76092          "https"
76093        ],
76094        "tags": [
76095          "internalApiserver_v1alpha1"
76096        ],
76097        "x-kubernetes-action": "post",
76098        "x-kubernetes-group-version-kind": {
76099          "group": "internal.apiserver.k8s.io",
76100          "kind": "StorageVersion",
76101          "version": "v1alpha1"
76102        }
76103      }
76104    },
76105    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}": {
76106      "delete": {
76107        "consumes": [
76108          "*/*"
76109        ],
76110        "description": "delete a StorageVersion",
76111        "operationId": "deleteInternalApiserverV1alpha1StorageVersion",
76112        "parameters": [
76113          {
76114            "in": "body",
76115            "name": "body",
76116            "schema": {
76117              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76118            }
76119          },
76120          {
76121            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76122            "in": "query",
76123            "name": "dryRun",
76124            "type": "string",
76125            "uniqueItems": true
76126          },
76127          {
76128            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
76129            "in": "query",
76130            "name": "gracePeriodSeconds",
76131            "type": "integer",
76132            "uniqueItems": true
76133          },
76134          {
76135            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
76136            "in": "query",
76137            "name": "orphanDependents",
76138            "type": "boolean",
76139            "uniqueItems": true
76140          },
76141          {
76142            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
76143            "in": "query",
76144            "name": "propagationPolicy",
76145            "type": "string",
76146            "uniqueItems": true
76147          }
76148        ],
76149        "produces": [
76150          "application/json",
76151          "application/yaml",
76152          "application/vnd.kubernetes.protobuf"
76153        ],
76154        "responses": {
76155          "200": {
76156            "description": "OK",
76157            "schema": {
76158              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76159            }
76160          },
76161          "202": {
76162            "description": "Accepted",
76163            "schema": {
76164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76165            }
76166          },
76167          "401": {
76168            "description": "Unauthorized"
76169          }
76170        },
76171        "schemes": [
76172          "https"
76173        ],
76174        "tags": [
76175          "internalApiserver_v1alpha1"
76176        ],
76177        "x-kubernetes-action": "delete",
76178        "x-kubernetes-group-version-kind": {
76179          "group": "internal.apiserver.k8s.io",
76180          "kind": "StorageVersion",
76181          "version": "v1alpha1"
76182        }
76183      },
76184      "get": {
76185        "consumes": [
76186          "*/*"
76187        ],
76188        "description": "read the specified StorageVersion",
76189        "operationId": "readInternalApiserverV1alpha1StorageVersion",
76190        "produces": [
76191          "application/json",
76192          "application/yaml",
76193          "application/vnd.kubernetes.protobuf"
76194        ],
76195        "responses": {
76196          "200": {
76197            "description": "OK",
76198            "schema": {
76199              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76200            }
76201          },
76202          "401": {
76203            "description": "Unauthorized"
76204          }
76205        },
76206        "schemes": [
76207          "https"
76208        ],
76209        "tags": [
76210          "internalApiserver_v1alpha1"
76211        ],
76212        "x-kubernetes-action": "get",
76213        "x-kubernetes-group-version-kind": {
76214          "group": "internal.apiserver.k8s.io",
76215          "kind": "StorageVersion",
76216          "version": "v1alpha1"
76217        }
76218      },
76219      "parameters": [
76220        {
76221          "description": "name of the StorageVersion",
76222          "in": "path",
76223          "name": "name",
76224          "required": true,
76225          "type": "string",
76226          "uniqueItems": true
76227        },
76228        {
76229          "description": "If 'true', then the output is pretty printed.",
76230          "in": "query",
76231          "name": "pretty",
76232          "type": "string",
76233          "uniqueItems": true
76234        }
76235      ],
76236      "patch": {
76237        "consumes": [
76238          "application/json-patch+json",
76239          "application/merge-patch+json",
76240          "application/strategic-merge-patch+json",
76241          "application/apply-patch+yaml"
76242        ],
76243        "description": "partially update the specified StorageVersion",
76244        "operationId": "patchInternalApiserverV1alpha1StorageVersion",
76245        "parameters": [
76246          {
76247            "in": "body",
76248            "name": "body",
76249            "required": true,
76250            "schema": {
76251              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
76252            }
76253          },
76254          {
76255            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76256            "in": "query",
76257            "name": "dryRun",
76258            "type": "string",
76259            "uniqueItems": true
76260          },
76261          {
76262            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
76263            "in": "query",
76264            "name": "fieldManager",
76265            "type": "string",
76266            "uniqueItems": true
76267          },
76268          {
76269            "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.",
76270            "in": "query",
76271            "name": "force",
76272            "type": "boolean",
76273            "uniqueItems": true
76274          }
76275        ],
76276        "produces": [
76277          "application/json",
76278          "application/yaml",
76279          "application/vnd.kubernetes.protobuf"
76280        ],
76281        "responses": {
76282          "200": {
76283            "description": "OK",
76284            "schema": {
76285              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76286            }
76287          },
76288          "401": {
76289            "description": "Unauthorized"
76290          }
76291        },
76292        "schemes": [
76293          "https"
76294        ],
76295        "tags": [
76296          "internalApiserver_v1alpha1"
76297        ],
76298        "x-kubernetes-action": "patch",
76299        "x-kubernetes-group-version-kind": {
76300          "group": "internal.apiserver.k8s.io",
76301          "kind": "StorageVersion",
76302          "version": "v1alpha1"
76303        }
76304      },
76305      "put": {
76306        "consumes": [
76307          "*/*"
76308        ],
76309        "description": "replace the specified StorageVersion",
76310        "operationId": "replaceInternalApiserverV1alpha1StorageVersion",
76311        "parameters": [
76312          {
76313            "in": "body",
76314            "name": "body",
76315            "required": true,
76316            "schema": {
76317              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76318            }
76319          },
76320          {
76321            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76322            "in": "query",
76323            "name": "dryRun",
76324            "type": "string",
76325            "uniqueItems": true
76326          },
76327          {
76328            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76329            "in": "query",
76330            "name": "fieldManager",
76331            "type": "string",
76332            "uniqueItems": true
76333          }
76334        ],
76335        "produces": [
76336          "application/json",
76337          "application/yaml",
76338          "application/vnd.kubernetes.protobuf"
76339        ],
76340        "responses": {
76341          "200": {
76342            "description": "OK",
76343            "schema": {
76344              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76345            }
76346          },
76347          "201": {
76348            "description": "Created",
76349            "schema": {
76350              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76351            }
76352          },
76353          "401": {
76354            "description": "Unauthorized"
76355          }
76356        },
76357        "schemes": [
76358          "https"
76359        ],
76360        "tags": [
76361          "internalApiserver_v1alpha1"
76362        ],
76363        "x-kubernetes-action": "put",
76364        "x-kubernetes-group-version-kind": {
76365          "group": "internal.apiserver.k8s.io",
76366          "kind": "StorageVersion",
76367          "version": "v1alpha1"
76368        }
76369      }
76370    },
76371    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}/status": {
76372      "get": {
76373        "consumes": [
76374          "*/*"
76375        ],
76376        "description": "read status of the specified StorageVersion",
76377        "operationId": "readInternalApiserverV1alpha1StorageVersionStatus",
76378        "produces": [
76379          "application/json",
76380          "application/yaml",
76381          "application/vnd.kubernetes.protobuf"
76382        ],
76383        "responses": {
76384          "200": {
76385            "description": "OK",
76386            "schema": {
76387              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76388            }
76389          },
76390          "401": {
76391            "description": "Unauthorized"
76392          }
76393        },
76394        "schemes": [
76395          "https"
76396        ],
76397        "tags": [
76398          "internalApiserver_v1alpha1"
76399        ],
76400        "x-kubernetes-action": "get",
76401        "x-kubernetes-group-version-kind": {
76402          "group": "internal.apiserver.k8s.io",
76403          "kind": "StorageVersion",
76404          "version": "v1alpha1"
76405        }
76406      },
76407      "parameters": [
76408        {
76409          "description": "name of the StorageVersion",
76410          "in": "path",
76411          "name": "name",
76412          "required": true,
76413          "type": "string",
76414          "uniqueItems": true
76415        },
76416        {
76417          "description": "If 'true', then the output is pretty printed.",
76418          "in": "query",
76419          "name": "pretty",
76420          "type": "string",
76421          "uniqueItems": true
76422        }
76423      ],
76424      "patch": {
76425        "consumes": [
76426          "application/json-patch+json",
76427          "application/merge-patch+json",
76428          "application/strategic-merge-patch+json",
76429          "application/apply-patch+yaml"
76430        ],
76431        "description": "partially update status of the specified StorageVersion",
76432        "operationId": "patchInternalApiserverV1alpha1StorageVersionStatus",
76433        "parameters": [
76434          {
76435            "in": "body",
76436            "name": "body",
76437            "required": true,
76438            "schema": {
76439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
76440            }
76441          },
76442          {
76443            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76444            "in": "query",
76445            "name": "dryRun",
76446            "type": "string",
76447            "uniqueItems": true
76448          },
76449          {
76450            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
76451            "in": "query",
76452            "name": "fieldManager",
76453            "type": "string",
76454            "uniqueItems": true
76455          },
76456          {
76457            "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.",
76458            "in": "query",
76459            "name": "force",
76460            "type": "boolean",
76461            "uniqueItems": true
76462          }
76463        ],
76464        "produces": [
76465          "application/json",
76466          "application/yaml",
76467          "application/vnd.kubernetes.protobuf"
76468        ],
76469        "responses": {
76470          "200": {
76471            "description": "OK",
76472            "schema": {
76473              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76474            }
76475          },
76476          "401": {
76477            "description": "Unauthorized"
76478          }
76479        },
76480        "schemes": [
76481          "https"
76482        ],
76483        "tags": [
76484          "internalApiserver_v1alpha1"
76485        ],
76486        "x-kubernetes-action": "patch",
76487        "x-kubernetes-group-version-kind": {
76488          "group": "internal.apiserver.k8s.io",
76489          "kind": "StorageVersion",
76490          "version": "v1alpha1"
76491        }
76492      },
76493      "put": {
76494        "consumes": [
76495          "*/*"
76496        ],
76497        "description": "replace status of the specified StorageVersion",
76498        "operationId": "replaceInternalApiserverV1alpha1StorageVersionStatus",
76499        "parameters": [
76500          {
76501            "in": "body",
76502            "name": "body",
76503            "required": true,
76504            "schema": {
76505              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76506            }
76507          },
76508          {
76509            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76510            "in": "query",
76511            "name": "dryRun",
76512            "type": "string",
76513            "uniqueItems": true
76514          },
76515          {
76516            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76517            "in": "query",
76518            "name": "fieldManager",
76519            "type": "string",
76520            "uniqueItems": true
76521          }
76522        ],
76523        "produces": [
76524          "application/json",
76525          "application/yaml",
76526          "application/vnd.kubernetes.protobuf"
76527        ],
76528        "responses": {
76529          "200": {
76530            "description": "OK",
76531            "schema": {
76532              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76533            }
76534          },
76535          "201": {
76536            "description": "Created",
76537            "schema": {
76538              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76539            }
76540          },
76541          "401": {
76542            "description": "Unauthorized"
76543          }
76544        },
76545        "schemes": [
76546          "https"
76547        ],
76548        "tags": [
76549          "internalApiserver_v1alpha1"
76550        ],
76551        "x-kubernetes-action": "put",
76552        "x-kubernetes-group-version-kind": {
76553          "group": "internal.apiserver.k8s.io",
76554          "kind": "StorageVersion",
76555          "version": "v1alpha1"
76556        }
76557      }
76558    },
76559    "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions": {
76560      "get": {
76561        "consumes": [
76562          "*/*"
76563        ],
76564        "description": "watch individual changes to a list of StorageVersion. deprecated: use the 'watch' parameter with a list operation instead.",
76565        "operationId": "watchInternalApiserverV1alpha1StorageVersionList",
76566        "produces": [
76567          "application/json",
76568          "application/yaml",
76569          "application/vnd.kubernetes.protobuf",
76570          "application/json;stream=watch",
76571          "application/vnd.kubernetes.protobuf;stream=watch"
76572        ],
76573        "responses": {
76574          "200": {
76575            "description": "OK",
76576            "schema": {
76577              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
76578            }
76579          },
76580          "401": {
76581            "description": "Unauthorized"
76582          }
76583        },
76584        "schemes": [
76585          "https"
76586        ],
76587        "tags": [
76588          "internalApiserver_v1alpha1"
76589        ],
76590        "x-kubernetes-action": "watchlist",
76591        "x-kubernetes-group-version-kind": {
76592          "group": "internal.apiserver.k8s.io",
76593          "kind": "StorageVersion",
76594          "version": "v1alpha1"
76595        }
76596      },
76597      "parameters": [
76598        {
76599          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
76600          "in": "query",
76601          "name": "allowWatchBookmarks",
76602          "type": "boolean",
76603          "uniqueItems": true
76604        },
76605        {
76606          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76607          "in": "query",
76608          "name": "continue",
76609          "type": "string",
76610          "uniqueItems": true
76611        },
76612        {
76613          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76614          "in": "query",
76615          "name": "fieldSelector",
76616          "type": "string",
76617          "uniqueItems": true
76618        },
76619        {
76620          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76621          "in": "query",
76622          "name": "labelSelector",
76623          "type": "string",
76624          "uniqueItems": true
76625        },
76626        {
76627          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76628          "in": "query",
76629          "name": "limit",
76630          "type": "integer",
76631          "uniqueItems": true
76632        },
76633        {
76634          "description": "If 'true', then the output is pretty printed.",
76635          "in": "query",
76636          "name": "pretty",
76637          "type": "string",
76638          "uniqueItems": true
76639        },
76640        {
76641          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76642          "in": "query",
76643          "name": "resourceVersion",
76644          "type": "string",
76645          "uniqueItems": true
76646        },
76647        {
76648          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76649          "in": "query",
76650          "name": "resourceVersionMatch",
76651          "type": "string",
76652          "uniqueItems": true
76653        },
76654        {
76655          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76656          "in": "query",
76657          "name": "timeoutSeconds",
76658          "type": "integer",
76659          "uniqueItems": true
76660        },
76661        {
76662          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76663          "in": "query",
76664          "name": "watch",
76665          "type": "boolean",
76666          "uniqueItems": true
76667        }
76668      ]
76669    },
76670    "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions/{name}": {
76671      "get": {
76672        "consumes": [
76673          "*/*"
76674        ],
76675        "description": "watch changes to an object of kind StorageVersion. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
76676        "operationId": "watchInternalApiserverV1alpha1StorageVersion",
76677        "produces": [
76678          "application/json",
76679          "application/yaml",
76680          "application/vnd.kubernetes.protobuf",
76681          "application/json;stream=watch",
76682          "application/vnd.kubernetes.protobuf;stream=watch"
76683        ],
76684        "responses": {
76685          "200": {
76686            "description": "OK",
76687            "schema": {
76688              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
76689            }
76690          },
76691          "401": {
76692            "description": "Unauthorized"
76693          }
76694        },
76695        "schemes": [
76696          "https"
76697        ],
76698        "tags": [
76699          "internalApiserver_v1alpha1"
76700        ],
76701        "x-kubernetes-action": "watch",
76702        "x-kubernetes-group-version-kind": {
76703          "group": "internal.apiserver.k8s.io",
76704          "kind": "StorageVersion",
76705          "version": "v1alpha1"
76706        }
76707      },
76708      "parameters": [
76709        {
76710          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
76711          "in": "query",
76712          "name": "allowWatchBookmarks",
76713          "type": "boolean",
76714          "uniqueItems": true
76715        },
76716        {
76717          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76718          "in": "query",
76719          "name": "continue",
76720          "type": "string",
76721          "uniqueItems": true
76722        },
76723        {
76724          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76725          "in": "query",
76726          "name": "fieldSelector",
76727          "type": "string",
76728          "uniqueItems": true
76729        },
76730        {
76731          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76732          "in": "query",
76733          "name": "labelSelector",
76734          "type": "string",
76735          "uniqueItems": true
76736        },
76737        {
76738          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76739          "in": "query",
76740          "name": "limit",
76741          "type": "integer",
76742          "uniqueItems": true
76743        },
76744        {
76745          "description": "name of the StorageVersion",
76746          "in": "path",
76747          "name": "name",
76748          "required": true,
76749          "type": "string",
76750          "uniqueItems": true
76751        },
76752        {
76753          "description": "If 'true', then the output is pretty printed.",
76754          "in": "query",
76755          "name": "pretty",
76756          "type": "string",
76757          "uniqueItems": true
76758        },
76759        {
76760          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76761          "in": "query",
76762          "name": "resourceVersion",
76763          "type": "string",
76764          "uniqueItems": true
76765        },
76766        {
76767          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76768          "in": "query",
76769          "name": "resourceVersionMatch",
76770          "type": "string",
76771          "uniqueItems": true
76772        },
76773        {
76774          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76775          "in": "query",
76776          "name": "timeoutSeconds",
76777          "type": "integer",
76778          "uniqueItems": true
76779        },
76780        {
76781          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76782          "in": "query",
76783          "name": "watch",
76784          "type": "boolean",
76785          "uniqueItems": true
76786        }
76787      ]
76788    },
76789    "/apis/networking.k8s.io/": {
76790      "get": {
76791        "consumes": [
76792          "application/json",
76793          "application/yaml",
76794          "application/vnd.kubernetes.protobuf"
76795        ],
76796        "description": "get information of a group",
76797        "operationId": "getNetworkingAPIGroup",
76798        "produces": [
76799          "application/json",
76800          "application/yaml",
76801          "application/vnd.kubernetes.protobuf"
76802        ],
76803        "responses": {
76804          "200": {
76805            "description": "OK",
76806            "schema": {
76807              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
76808            }
76809          },
76810          "401": {
76811            "description": "Unauthorized"
76812          }
76813        },
76814        "schemes": [
76815          "https"
76816        ],
76817        "tags": [
76818          "networking"
76819        ]
76820      }
76821    },
76822    "/apis/networking.k8s.io/v1/": {
76823      "get": {
76824        "consumes": [
76825          "application/json",
76826          "application/yaml",
76827          "application/vnd.kubernetes.protobuf"
76828        ],
76829        "description": "get available resources",
76830        "operationId": "getNetworkingV1APIResources",
76831        "produces": [
76832          "application/json",
76833          "application/yaml",
76834          "application/vnd.kubernetes.protobuf"
76835        ],
76836        "responses": {
76837          "200": {
76838            "description": "OK",
76839            "schema": {
76840              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
76841            }
76842          },
76843          "401": {
76844            "description": "Unauthorized"
76845          }
76846        },
76847        "schemes": [
76848          "https"
76849        ],
76850        "tags": [
76851          "networking_v1"
76852        ]
76853      }
76854    },
76855    "/apis/networking.k8s.io/v1/ingressclasses": {
76856      "delete": {
76857        "consumes": [
76858          "*/*"
76859        ],
76860        "description": "delete collection of IngressClass",
76861        "operationId": "deleteNetworkingV1CollectionIngressClass",
76862        "parameters": [
76863          {
76864            "in": "body",
76865            "name": "body",
76866            "schema": {
76867              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76868            }
76869          },
76870          {
76871            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76872            "in": "query",
76873            "name": "continue",
76874            "type": "string",
76875            "uniqueItems": true
76876          },
76877          {
76878            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76879            "in": "query",
76880            "name": "dryRun",
76881            "type": "string",
76882            "uniqueItems": true
76883          },
76884          {
76885            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76886            "in": "query",
76887            "name": "fieldSelector",
76888            "type": "string",
76889            "uniqueItems": true
76890          },
76891          {
76892            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
76893            "in": "query",
76894            "name": "gracePeriodSeconds",
76895            "type": "integer",
76896            "uniqueItems": true
76897          },
76898          {
76899            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76900            "in": "query",
76901            "name": "labelSelector",
76902            "type": "string",
76903            "uniqueItems": true
76904          },
76905          {
76906            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76907            "in": "query",
76908            "name": "limit",
76909            "type": "integer",
76910            "uniqueItems": true
76911          },
76912          {
76913            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
76914            "in": "query",
76915            "name": "orphanDependents",
76916            "type": "boolean",
76917            "uniqueItems": true
76918          },
76919          {
76920            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
76921            "in": "query",
76922            "name": "propagationPolicy",
76923            "type": "string",
76924            "uniqueItems": true
76925          },
76926          {
76927            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76928            "in": "query",
76929            "name": "resourceVersion",
76930            "type": "string",
76931            "uniqueItems": true
76932          },
76933          {
76934            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76935            "in": "query",
76936            "name": "resourceVersionMatch",
76937            "type": "string",
76938            "uniqueItems": true
76939          },
76940          {
76941            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76942            "in": "query",
76943            "name": "timeoutSeconds",
76944            "type": "integer",
76945            "uniqueItems": true
76946          }
76947        ],
76948        "produces": [
76949          "application/json",
76950          "application/yaml",
76951          "application/vnd.kubernetes.protobuf"
76952        ],
76953        "responses": {
76954          "200": {
76955            "description": "OK",
76956            "schema": {
76957              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76958            }
76959          },
76960          "401": {
76961            "description": "Unauthorized"
76962          }
76963        },
76964        "schemes": [
76965          "https"
76966        ],
76967        "tags": [
76968          "networking_v1"
76969        ],
76970        "x-kubernetes-action": "deletecollection",
76971        "x-kubernetes-group-version-kind": {
76972          "group": "networking.k8s.io",
76973          "kind": "IngressClass",
76974          "version": "v1"
76975        }
76976      },
76977      "get": {
76978        "consumes": [
76979          "*/*"
76980        ],
76981        "description": "list or watch objects of kind IngressClass",
76982        "operationId": "listNetworkingV1IngressClass",
76983        "parameters": [
76984          {
76985            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
76986            "in": "query",
76987            "name": "allowWatchBookmarks",
76988            "type": "boolean",
76989            "uniqueItems": true
76990          },
76991          {
76992            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76993            "in": "query",
76994            "name": "continue",
76995            "type": "string",
76996            "uniqueItems": true
76997          },
76998          {
76999            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77000            "in": "query",
77001            "name": "fieldSelector",
77002            "type": "string",
77003            "uniqueItems": true
77004          },
77005          {
77006            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77007            "in": "query",
77008            "name": "labelSelector",
77009            "type": "string",
77010            "uniqueItems": true
77011          },
77012          {
77013            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77014            "in": "query",
77015            "name": "limit",
77016            "type": "integer",
77017            "uniqueItems": true
77018          },
77019          {
77020            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77021            "in": "query",
77022            "name": "resourceVersion",
77023            "type": "string",
77024            "uniqueItems": true
77025          },
77026          {
77027            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77028            "in": "query",
77029            "name": "resourceVersionMatch",
77030            "type": "string",
77031            "uniqueItems": true
77032          },
77033          {
77034            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77035            "in": "query",
77036            "name": "timeoutSeconds",
77037            "type": "integer",
77038            "uniqueItems": true
77039          },
77040          {
77041            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77042            "in": "query",
77043            "name": "watch",
77044            "type": "boolean",
77045            "uniqueItems": true
77046          }
77047        ],
77048        "produces": [
77049          "application/json",
77050          "application/yaml",
77051          "application/vnd.kubernetes.protobuf",
77052          "application/json;stream=watch",
77053          "application/vnd.kubernetes.protobuf;stream=watch"
77054        ],
77055        "responses": {
77056          "200": {
77057            "description": "OK",
77058            "schema": {
77059              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassList"
77060            }
77061          },
77062          "401": {
77063            "description": "Unauthorized"
77064          }
77065        },
77066        "schemes": [
77067          "https"
77068        ],
77069        "tags": [
77070          "networking_v1"
77071        ],
77072        "x-kubernetes-action": "list",
77073        "x-kubernetes-group-version-kind": {
77074          "group": "networking.k8s.io",
77075          "kind": "IngressClass",
77076          "version": "v1"
77077        }
77078      },
77079      "parameters": [
77080        {
77081          "description": "If 'true', then the output is pretty printed.",
77082          "in": "query",
77083          "name": "pretty",
77084          "type": "string",
77085          "uniqueItems": true
77086        }
77087      ],
77088      "post": {
77089        "consumes": [
77090          "*/*"
77091        ],
77092        "description": "create an IngressClass",
77093        "operationId": "createNetworkingV1IngressClass",
77094        "parameters": [
77095          {
77096            "in": "body",
77097            "name": "body",
77098            "required": true,
77099            "schema": {
77100              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77101            }
77102          },
77103          {
77104            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77105            "in": "query",
77106            "name": "dryRun",
77107            "type": "string",
77108            "uniqueItems": true
77109          },
77110          {
77111            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77112            "in": "query",
77113            "name": "fieldManager",
77114            "type": "string",
77115            "uniqueItems": true
77116          }
77117        ],
77118        "produces": [
77119          "application/json",
77120          "application/yaml",
77121          "application/vnd.kubernetes.protobuf"
77122        ],
77123        "responses": {
77124          "200": {
77125            "description": "OK",
77126            "schema": {
77127              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77128            }
77129          },
77130          "201": {
77131            "description": "Created",
77132            "schema": {
77133              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77134            }
77135          },
77136          "202": {
77137            "description": "Accepted",
77138            "schema": {
77139              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77140            }
77141          },
77142          "401": {
77143            "description": "Unauthorized"
77144          }
77145        },
77146        "schemes": [
77147          "https"
77148        ],
77149        "tags": [
77150          "networking_v1"
77151        ],
77152        "x-kubernetes-action": "post",
77153        "x-kubernetes-group-version-kind": {
77154          "group": "networking.k8s.io",
77155          "kind": "IngressClass",
77156          "version": "v1"
77157        }
77158      }
77159    },
77160    "/apis/networking.k8s.io/v1/ingressclasses/{name}": {
77161      "delete": {
77162        "consumes": [
77163          "*/*"
77164        ],
77165        "description": "delete an IngressClass",
77166        "operationId": "deleteNetworkingV1IngressClass",
77167        "parameters": [
77168          {
77169            "in": "body",
77170            "name": "body",
77171            "schema": {
77172              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77173            }
77174          },
77175          {
77176            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77177            "in": "query",
77178            "name": "dryRun",
77179            "type": "string",
77180            "uniqueItems": true
77181          },
77182          {
77183            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
77184            "in": "query",
77185            "name": "gracePeriodSeconds",
77186            "type": "integer",
77187            "uniqueItems": true
77188          },
77189          {
77190            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
77191            "in": "query",
77192            "name": "orphanDependents",
77193            "type": "boolean",
77194            "uniqueItems": true
77195          },
77196          {
77197            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
77198            "in": "query",
77199            "name": "propagationPolicy",
77200            "type": "string",
77201            "uniqueItems": true
77202          }
77203        ],
77204        "produces": [
77205          "application/json",
77206          "application/yaml",
77207          "application/vnd.kubernetes.protobuf"
77208        ],
77209        "responses": {
77210          "200": {
77211            "description": "OK",
77212            "schema": {
77213              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77214            }
77215          },
77216          "202": {
77217            "description": "Accepted",
77218            "schema": {
77219              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77220            }
77221          },
77222          "401": {
77223            "description": "Unauthorized"
77224          }
77225        },
77226        "schemes": [
77227          "https"
77228        ],
77229        "tags": [
77230          "networking_v1"
77231        ],
77232        "x-kubernetes-action": "delete",
77233        "x-kubernetes-group-version-kind": {
77234          "group": "networking.k8s.io",
77235          "kind": "IngressClass",
77236          "version": "v1"
77237        }
77238      },
77239      "get": {
77240        "consumes": [
77241          "*/*"
77242        ],
77243        "description": "read the specified IngressClass",
77244        "operationId": "readNetworkingV1IngressClass",
77245        "produces": [
77246          "application/json",
77247          "application/yaml",
77248          "application/vnd.kubernetes.protobuf"
77249        ],
77250        "responses": {
77251          "200": {
77252            "description": "OK",
77253            "schema": {
77254              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77255            }
77256          },
77257          "401": {
77258            "description": "Unauthorized"
77259          }
77260        },
77261        "schemes": [
77262          "https"
77263        ],
77264        "tags": [
77265          "networking_v1"
77266        ],
77267        "x-kubernetes-action": "get",
77268        "x-kubernetes-group-version-kind": {
77269          "group": "networking.k8s.io",
77270          "kind": "IngressClass",
77271          "version": "v1"
77272        }
77273      },
77274      "parameters": [
77275        {
77276          "description": "name of the IngressClass",
77277          "in": "path",
77278          "name": "name",
77279          "required": true,
77280          "type": "string",
77281          "uniqueItems": true
77282        },
77283        {
77284          "description": "If 'true', then the output is pretty printed.",
77285          "in": "query",
77286          "name": "pretty",
77287          "type": "string",
77288          "uniqueItems": true
77289        }
77290      ],
77291      "patch": {
77292        "consumes": [
77293          "application/json-patch+json",
77294          "application/merge-patch+json",
77295          "application/strategic-merge-patch+json",
77296          "application/apply-patch+yaml"
77297        ],
77298        "description": "partially update the specified IngressClass",
77299        "operationId": "patchNetworkingV1IngressClass",
77300        "parameters": [
77301          {
77302            "in": "body",
77303            "name": "body",
77304            "required": true,
77305            "schema": {
77306              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
77307            }
77308          },
77309          {
77310            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77311            "in": "query",
77312            "name": "dryRun",
77313            "type": "string",
77314            "uniqueItems": true
77315          },
77316          {
77317            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
77318            "in": "query",
77319            "name": "fieldManager",
77320            "type": "string",
77321            "uniqueItems": true
77322          },
77323          {
77324            "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.",
77325            "in": "query",
77326            "name": "force",
77327            "type": "boolean",
77328            "uniqueItems": true
77329          }
77330        ],
77331        "produces": [
77332          "application/json",
77333          "application/yaml",
77334          "application/vnd.kubernetes.protobuf"
77335        ],
77336        "responses": {
77337          "200": {
77338            "description": "OK",
77339            "schema": {
77340              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77341            }
77342          },
77343          "401": {
77344            "description": "Unauthorized"
77345          }
77346        },
77347        "schemes": [
77348          "https"
77349        ],
77350        "tags": [
77351          "networking_v1"
77352        ],
77353        "x-kubernetes-action": "patch",
77354        "x-kubernetes-group-version-kind": {
77355          "group": "networking.k8s.io",
77356          "kind": "IngressClass",
77357          "version": "v1"
77358        }
77359      },
77360      "put": {
77361        "consumes": [
77362          "*/*"
77363        ],
77364        "description": "replace the specified IngressClass",
77365        "operationId": "replaceNetworkingV1IngressClass",
77366        "parameters": [
77367          {
77368            "in": "body",
77369            "name": "body",
77370            "required": true,
77371            "schema": {
77372              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77373            }
77374          },
77375          {
77376            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77377            "in": "query",
77378            "name": "dryRun",
77379            "type": "string",
77380            "uniqueItems": true
77381          },
77382          {
77383            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77384            "in": "query",
77385            "name": "fieldManager",
77386            "type": "string",
77387            "uniqueItems": true
77388          }
77389        ],
77390        "produces": [
77391          "application/json",
77392          "application/yaml",
77393          "application/vnd.kubernetes.protobuf"
77394        ],
77395        "responses": {
77396          "200": {
77397            "description": "OK",
77398            "schema": {
77399              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77400            }
77401          },
77402          "201": {
77403            "description": "Created",
77404            "schema": {
77405              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77406            }
77407          },
77408          "401": {
77409            "description": "Unauthorized"
77410          }
77411        },
77412        "schemes": [
77413          "https"
77414        ],
77415        "tags": [
77416          "networking_v1"
77417        ],
77418        "x-kubernetes-action": "put",
77419        "x-kubernetes-group-version-kind": {
77420          "group": "networking.k8s.io",
77421          "kind": "IngressClass",
77422          "version": "v1"
77423        }
77424      }
77425    },
77426    "/apis/networking.k8s.io/v1/ingresses": {
77427      "get": {
77428        "consumes": [
77429          "*/*"
77430        ],
77431        "description": "list or watch objects of kind Ingress",
77432        "operationId": "listNetworkingV1IngressForAllNamespaces",
77433        "produces": [
77434          "application/json",
77435          "application/yaml",
77436          "application/vnd.kubernetes.protobuf",
77437          "application/json;stream=watch",
77438          "application/vnd.kubernetes.protobuf;stream=watch"
77439        ],
77440        "responses": {
77441          "200": {
77442            "description": "OK",
77443            "schema": {
77444              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressList"
77445            }
77446          },
77447          "401": {
77448            "description": "Unauthorized"
77449          }
77450        },
77451        "schemes": [
77452          "https"
77453        ],
77454        "tags": [
77455          "networking_v1"
77456        ],
77457        "x-kubernetes-action": "list",
77458        "x-kubernetes-group-version-kind": {
77459          "group": "networking.k8s.io",
77460          "kind": "Ingress",
77461          "version": "v1"
77462        }
77463      },
77464      "parameters": [
77465        {
77466          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
77467          "in": "query",
77468          "name": "allowWatchBookmarks",
77469          "type": "boolean",
77470          "uniqueItems": true
77471        },
77472        {
77473          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77474          "in": "query",
77475          "name": "continue",
77476          "type": "string",
77477          "uniqueItems": true
77478        },
77479        {
77480          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77481          "in": "query",
77482          "name": "fieldSelector",
77483          "type": "string",
77484          "uniqueItems": true
77485        },
77486        {
77487          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77488          "in": "query",
77489          "name": "labelSelector",
77490          "type": "string",
77491          "uniqueItems": true
77492        },
77493        {
77494          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77495          "in": "query",
77496          "name": "limit",
77497          "type": "integer",
77498          "uniqueItems": true
77499        },
77500        {
77501          "description": "If 'true', then the output is pretty printed.",
77502          "in": "query",
77503          "name": "pretty",
77504          "type": "string",
77505          "uniqueItems": true
77506        },
77507        {
77508          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77509          "in": "query",
77510          "name": "resourceVersion",
77511          "type": "string",
77512          "uniqueItems": true
77513        },
77514        {
77515          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77516          "in": "query",
77517          "name": "resourceVersionMatch",
77518          "type": "string",
77519          "uniqueItems": true
77520        },
77521        {
77522          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77523          "in": "query",
77524          "name": "timeoutSeconds",
77525          "type": "integer",
77526          "uniqueItems": true
77527        },
77528        {
77529          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77530          "in": "query",
77531          "name": "watch",
77532          "type": "boolean",
77533          "uniqueItems": true
77534        }
77535      ]
77536    },
77537    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses": {
77538      "delete": {
77539        "consumes": [
77540          "*/*"
77541        ],
77542        "description": "delete collection of Ingress",
77543        "operationId": "deleteNetworkingV1CollectionNamespacedIngress",
77544        "parameters": [
77545          {
77546            "in": "body",
77547            "name": "body",
77548            "schema": {
77549              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77550            }
77551          },
77552          {
77553            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77554            "in": "query",
77555            "name": "continue",
77556            "type": "string",
77557            "uniqueItems": true
77558          },
77559          {
77560            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77561            "in": "query",
77562            "name": "dryRun",
77563            "type": "string",
77564            "uniqueItems": true
77565          },
77566          {
77567            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77568            "in": "query",
77569            "name": "fieldSelector",
77570            "type": "string",
77571            "uniqueItems": true
77572          },
77573          {
77574            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
77575            "in": "query",
77576            "name": "gracePeriodSeconds",
77577            "type": "integer",
77578            "uniqueItems": true
77579          },
77580          {
77581            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77582            "in": "query",
77583            "name": "labelSelector",
77584            "type": "string",
77585            "uniqueItems": true
77586          },
77587          {
77588            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77589            "in": "query",
77590            "name": "limit",
77591            "type": "integer",
77592            "uniqueItems": true
77593          },
77594          {
77595            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
77596            "in": "query",
77597            "name": "orphanDependents",
77598            "type": "boolean",
77599            "uniqueItems": true
77600          },
77601          {
77602            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
77603            "in": "query",
77604            "name": "propagationPolicy",
77605            "type": "string",
77606            "uniqueItems": true
77607          },
77608          {
77609            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77610            "in": "query",
77611            "name": "resourceVersion",
77612            "type": "string",
77613            "uniqueItems": true
77614          },
77615          {
77616            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77617            "in": "query",
77618            "name": "resourceVersionMatch",
77619            "type": "string",
77620            "uniqueItems": true
77621          },
77622          {
77623            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77624            "in": "query",
77625            "name": "timeoutSeconds",
77626            "type": "integer",
77627            "uniqueItems": true
77628          }
77629        ],
77630        "produces": [
77631          "application/json",
77632          "application/yaml",
77633          "application/vnd.kubernetes.protobuf"
77634        ],
77635        "responses": {
77636          "200": {
77637            "description": "OK",
77638            "schema": {
77639              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77640            }
77641          },
77642          "401": {
77643            "description": "Unauthorized"
77644          }
77645        },
77646        "schemes": [
77647          "https"
77648        ],
77649        "tags": [
77650          "networking_v1"
77651        ],
77652        "x-kubernetes-action": "deletecollection",
77653        "x-kubernetes-group-version-kind": {
77654          "group": "networking.k8s.io",
77655          "kind": "Ingress",
77656          "version": "v1"
77657        }
77658      },
77659      "get": {
77660        "consumes": [
77661          "*/*"
77662        ],
77663        "description": "list or watch objects of kind Ingress",
77664        "operationId": "listNetworkingV1NamespacedIngress",
77665        "parameters": [
77666          {
77667            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
77668            "in": "query",
77669            "name": "allowWatchBookmarks",
77670            "type": "boolean",
77671            "uniqueItems": true
77672          },
77673          {
77674            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77675            "in": "query",
77676            "name": "continue",
77677            "type": "string",
77678            "uniqueItems": true
77679          },
77680          {
77681            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77682            "in": "query",
77683            "name": "fieldSelector",
77684            "type": "string",
77685            "uniqueItems": true
77686          },
77687          {
77688            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77689            "in": "query",
77690            "name": "labelSelector",
77691            "type": "string",
77692            "uniqueItems": true
77693          },
77694          {
77695            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77696            "in": "query",
77697            "name": "limit",
77698            "type": "integer",
77699            "uniqueItems": true
77700          },
77701          {
77702            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77703            "in": "query",
77704            "name": "resourceVersion",
77705            "type": "string",
77706            "uniqueItems": true
77707          },
77708          {
77709            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77710            "in": "query",
77711            "name": "resourceVersionMatch",
77712            "type": "string",
77713            "uniqueItems": true
77714          },
77715          {
77716            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77717            "in": "query",
77718            "name": "timeoutSeconds",
77719            "type": "integer",
77720            "uniqueItems": true
77721          },
77722          {
77723            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77724            "in": "query",
77725            "name": "watch",
77726            "type": "boolean",
77727            "uniqueItems": true
77728          }
77729        ],
77730        "produces": [
77731          "application/json",
77732          "application/yaml",
77733          "application/vnd.kubernetes.protobuf",
77734          "application/json;stream=watch",
77735          "application/vnd.kubernetes.protobuf;stream=watch"
77736        ],
77737        "responses": {
77738          "200": {
77739            "description": "OK",
77740            "schema": {
77741              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressList"
77742            }
77743          },
77744          "401": {
77745            "description": "Unauthorized"
77746          }
77747        },
77748        "schemes": [
77749          "https"
77750        ],
77751        "tags": [
77752          "networking_v1"
77753        ],
77754        "x-kubernetes-action": "list",
77755        "x-kubernetes-group-version-kind": {
77756          "group": "networking.k8s.io",
77757          "kind": "Ingress",
77758          "version": "v1"
77759        }
77760      },
77761      "parameters": [
77762        {
77763          "description": "object name and auth scope, such as for teams and projects",
77764          "in": "path",
77765          "name": "namespace",
77766          "required": true,
77767          "type": "string",
77768          "uniqueItems": true
77769        },
77770        {
77771          "description": "If 'true', then the output is pretty printed.",
77772          "in": "query",
77773          "name": "pretty",
77774          "type": "string",
77775          "uniqueItems": true
77776        }
77777      ],
77778      "post": {
77779        "consumes": [
77780          "*/*"
77781        ],
77782        "description": "create an Ingress",
77783        "operationId": "createNetworkingV1NamespacedIngress",
77784        "parameters": [
77785          {
77786            "in": "body",
77787            "name": "body",
77788            "required": true,
77789            "schema": {
77790              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77791            }
77792          },
77793          {
77794            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77795            "in": "query",
77796            "name": "dryRun",
77797            "type": "string",
77798            "uniqueItems": true
77799          },
77800          {
77801            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77802            "in": "query",
77803            "name": "fieldManager",
77804            "type": "string",
77805            "uniqueItems": true
77806          }
77807        ],
77808        "produces": [
77809          "application/json",
77810          "application/yaml",
77811          "application/vnd.kubernetes.protobuf"
77812        ],
77813        "responses": {
77814          "200": {
77815            "description": "OK",
77816            "schema": {
77817              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77818            }
77819          },
77820          "201": {
77821            "description": "Created",
77822            "schema": {
77823              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77824            }
77825          },
77826          "202": {
77827            "description": "Accepted",
77828            "schema": {
77829              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77830            }
77831          },
77832          "401": {
77833            "description": "Unauthorized"
77834          }
77835        },
77836        "schemes": [
77837          "https"
77838        ],
77839        "tags": [
77840          "networking_v1"
77841        ],
77842        "x-kubernetes-action": "post",
77843        "x-kubernetes-group-version-kind": {
77844          "group": "networking.k8s.io",
77845          "kind": "Ingress",
77846          "version": "v1"
77847        }
77848      }
77849    },
77850    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}": {
77851      "delete": {
77852        "consumes": [
77853          "*/*"
77854        ],
77855        "description": "delete an Ingress",
77856        "operationId": "deleteNetworkingV1NamespacedIngress",
77857        "parameters": [
77858          {
77859            "in": "body",
77860            "name": "body",
77861            "schema": {
77862              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77863            }
77864          },
77865          {
77866            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77867            "in": "query",
77868            "name": "dryRun",
77869            "type": "string",
77870            "uniqueItems": true
77871          },
77872          {
77873            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
77874            "in": "query",
77875            "name": "gracePeriodSeconds",
77876            "type": "integer",
77877            "uniqueItems": true
77878          },
77879          {
77880            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
77881            "in": "query",
77882            "name": "orphanDependents",
77883            "type": "boolean",
77884            "uniqueItems": true
77885          },
77886          {
77887            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
77888            "in": "query",
77889            "name": "propagationPolicy",
77890            "type": "string",
77891            "uniqueItems": true
77892          }
77893        ],
77894        "produces": [
77895          "application/json",
77896          "application/yaml",
77897          "application/vnd.kubernetes.protobuf"
77898        ],
77899        "responses": {
77900          "200": {
77901            "description": "OK",
77902            "schema": {
77903              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77904            }
77905          },
77906          "202": {
77907            "description": "Accepted",
77908            "schema": {
77909              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77910            }
77911          },
77912          "401": {
77913            "description": "Unauthorized"
77914          }
77915        },
77916        "schemes": [
77917          "https"
77918        ],
77919        "tags": [
77920          "networking_v1"
77921        ],
77922        "x-kubernetes-action": "delete",
77923        "x-kubernetes-group-version-kind": {
77924          "group": "networking.k8s.io",
77925          "kind": "Ingress",
77926          "version": "v1"
77927        }
77928      },
77929      "get": {
77930        "consumes": [
77931          "*/*"
77932        ],
77933        "description": "read the specified Ingress",
77934        "operationId": "readNetworkingV1NamespacedIngress",
77935        "produces": [
77936          "application/json",
77937          "application/yaml",
77938          "application/vnd.kubernetes.protobuf"
77939        ],
77940        "responses": {
77941          "200": {
77942            "description": "OK",
77943            "schema": {
77944              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77945            }
77946          },
77947          "401": {
77948            "description": "Unauthorized"
77949          }
77950        },
77951        "schemes": [
77952          "https"
77953        ],
77954        "tags": [
77955          "networking_v1"
77956        ],
77957        "x-kubernetes-action": "get",
77958        "x-kubernetes-group-version-kind": {
77959          "group": "networking.k8s.io",
77960          "kind": "Ingress",
77961          "version": "v1"
77962        }
77963      },
77964      "parameters": [
77965        {
77966          "description": "name of the Ingress",
77967          "in": "path",
77968          "name": "name",
77969          "required": true,
77970          "type": "string",
77971          "uniqueItems": true
77972        },
77973        {
77974          "description": "object name and auth scope, such as for teams and projects",
77975          "in": "path",
77976          "name": "namespace",
77977          "required": true,
77978          "type": "string",
77979          "uniqueItems": true
77980        },
77981        {
77982          "description": "If 'true', then the output is pretty printed.",
77983          "in": "query",
77984          "name": "pretty",
77985          "type": "string",
77986          "uniqueItems": true
77987        }
77988      ],
77989      "patch": {
77990        "consumes": [
77991          "application/json-patch+json",
77992          "application/merge-patch+json",
77993          "application/strategic-merge-patch+json",
77994          "application/apply-patch+yaml"
77995        ],
77996        "description": "partially update the specified Ingress",
77997        "operationId": "patchNetworkingV1NamespacedIngress",
77998        "parameters": [
77999          {
78000            "in": "body",
78001            "name": "body",
78002            "required": true,
78003            "schema": {
78004              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78005            }
78006          },
78007          {
78008            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78009            "in": "query",
78010            "name": "dryRun",
78011            "type": "string",
78012            "uniqueItems": true
78013          },
78014          {
78015            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
78016            "in": "query",
78017            "name": "fieldManager",
78018            "type": "string",
78019            "uniqueItems": true
78020          },
78021          {
78022            "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.",
78023            "in": "query",
78024            "name": "force",
78025            "type": "boolean",
78026            "uniqueItems": true
78027          }
78028        ],
78029        "produces": [
78030          "application/json",
78031          "application/yaml",
78032          "application/vnd.kubernetes.protobuf"
78033        ],
78034        "responses": {
78035          "200": {
78036            "description": "OK",
78037            "schema": {
78038              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78039            }
78040          },
78041          "401": {
78042            "description": "Unauthorized"
78043          }
78044        },
78045        "schemes": [
78046          "https"
78047        ],
78048        "tags": [
78049          "networking_v1"
78050        ],
78051        "x-kubernetes-action": "patch",
78052        "x-kubernetes-group-version-kind": {
78053          "group": "networking.k8s.io",
78054          "kind": "Ingress",
78055          "version": "v1"
78056        }
78057      },
78058      "put": {
78059        "consumes": [
78060          "*/*"
78061        ],
78062        "description": "replace the specified Ingress",
78063        "operationId": "replaceNetworkingV1NamespacedIngress",
78064        "parameters": [
78065          {
78066            "in": "body",
78067            "name": "body",
78068            "required": true,
78069            "schema": {
78070              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78071            }
78072          },
78073          {
78074            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78075            "in": "query",
78076            "name": "dryRun",
78077            "type": "string",
78078            "uniqueItems": true
78079          },
78080          {
78081            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78082            "in": "query",
78083            "name": "fieldManager",
78084            "type": "string",
78085            "uniqueItems": true
78086          }
78087        ],
78088        "produces": [
78089          "application/json",
78090          "application/yaml",
78091          "application/vnd.kubernetes.protobuf"
78092        ],
78093        "responses": {
78094          "200": {
78095            "description": "OK",
78096            "schema": {
78097              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78098            }
78099          },
78100          "201": {
78101            "description": "Created",
78102            "schema": {
78103              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78104            }
78105          },
78106          "401": {
78107            "description": "Unauthorized"
78108          }
78109        },
78110        "schemes": [
78111          "https"
78112        ],
78113        "tags": [
78114          "networking_v1"
78115        ],
78116        "x-kubernetes-action": "put",
78117        "x-kubernetes-group-version-kind": {
78118          "group": "networking.k8s.io",
78119          "kind": "Ingress",
78120          "version": "v1"
78121        }
78122      }
78123    },
78124    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}/status": {
78125      "get": {
78126        "consumes": [
78127          "*/*"
78128        ],
78129        "description": "read status of the specified Ingress",
78130        "operationId": "readNetworkingV1NamespacedIngressStatus",
78131        "produces": [
78132          "application/json",
78133          "application/yaml",
78134          "application/vnd.kubernetes.protobuf"
78135        ],
78136        "responses": {
78137          "200": {
78138            "description": "OK",
78139            "schema": {
78140              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78141            }
78142          },
78143          "401": {
78144            "description": "Unauthorized"
78145          }
78146        },
78147        "schemes": [
78148          "https"
78149        ],
78150        "tags": [
78151          "networking_v1"
78152        ],
78153        "x-kubernetes-action": "get",
78154        "x-kubernetes-group-version-kind": {
78155          "group": "networking.k8s.io",
78156          "kind": "Ingress",
78157          "version": "v1"
78158        }
78159      },
78160      "parameters": [
78161        {
78162          "description": "name of the Ingress",
78163          "in": "path",
78164          "name": "name",
78165          "required": true,
78166          "type": "string",
78167          "uniqueItems": true
78168        },
78169        {
78170          "description": "object name and auth scope, such as for teams and projects",
78171          "in": "path",
78172          "name": "namespace",
78173          "required": true,
78174          "type": "string",
78175          "uniqueItems": true
78176        },
78177        {
78178          "description": "If 'true', then the output is pretty printed.",
78179          "in": "query",
78180          "name": "pretty",
78181          "type": "string",
78182          "uniqueItems": true
78183        }
78184      ],
78185      "patch": {
78186        "consumes": [
78187          "application/json-patch+json",
78188          "application/merge-patch+json",
78189          "application/strategic-merge-patch+json",
78190          "application/apply-patch+yaml"
78191        ],
78192        "description": "partially update status of the specified Ingress",
78193        "operationId": "patchNetworkingV1NamespacedIngressStatus",
78194        "parameters": [
78195          {
78196            "in": "body",
78197            "name": "body",
78198            "required": true,
78199            "schema": {
78200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78201            }
78202          },
78203          {
78204            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78205            "in": "query",
78206            "name": "dryRun",
78207            "type": "string",
78208            "uniqueItems": true
78209          },
78210          {
78211            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
78212            "in": "query",
78213            "name": "fieldManager",
78214            "type": "string",
78215            "uniqueItems": true
78216          },
78217          {
78218            "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.",
78219            "in": "query",
78220            "name": "force",
78221            "type": "boolean",
78222            "uniqueItems": true
78223          }
78224        ],
78225        "produces": [
78226          "application/json",
78227          "application/yaml",
78228          "application/vnd.kubernetes.protobuf"
78229        ],
78230        "responses": {
78231          "200": {
78232            "description": "OK",
78233            "schema": {
78234              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78235            }
78236          },
78237          "401": {
78238            "description": "Unauthorized"
78239          }
78240        },
78241        "schemes": [
78242          "https"
78243        ],
78244        "tags": [
78245          "networking_v1"
78246        ],
78247        "x-kubernetes-action": "patch",
78248        "x-kubernetes-group-version-kind": {
78249          "group": "networking.k8s.io",
78250          "kind": "Ingress",
78251          "version": "v1"
78252        }
78253      },
78254      "put": {
78255        "consumes": [
78256          "*/*"
78257        ],
78258        "description": "replace status of the specified Ingress",
78259        "operationId": "replaceNetworkingV1NamespacedIngressStatus",
78260        "parameters": [
78261          {
78262            "in": "body",
78263            "name": "body",
78264            "required": true,
78265            "schema": {
78266              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78267            }
78268          },
78269          {
78270            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78271            "in": "query",
78272            "name": "dryRun",
78273            "type": "string",
78274            "uniqueItems": true
78275          },
78276          {
78277            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78278            "in": "query",
78279            "name": "fieldManager",
78280            "type": "string",
78281            "uniqueItems": true
78282          }
78283        ],
78284        "produces": [
78285          "application/json",
78286          "application/yaml",
78287          "application/vnd.kubernetes.protobuf"
78288        ],
78289        "responses": {
78290          "200": {
78291            "description": "OK",
78292            "schema": {
78293              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78294            }
78295          },
78296          "201": {
78297            "description": "Created",
78298            "schema": {
78299              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78300            }
78301          },
78302          "401": {
78303            "description": "Unauthorized"
78304          }
78305        },
78306        "schemes": [
78307          "https"
78308        ],
78309        "tags": [
78310          "networking_v1"
78311        ],
78312        "x-kubernetes-action": "put",
78313        "x-kubernetes-group-version-kind": {
78314          "group": "networking.k8s.io",
78315          "kind": "Ingress",
78316          "version": "v1"
78317        }
78318      }
78319    },
78320    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies": {
78321      "delete": {
78322        "consumes": [
78323          "*/*"
78324        ],
78325        "description": "delete collection of NetworkPolicy",
78326        "operationId": "deleteNetworkingV1CollectionNamespacedNetworkPolicy",
78327        "parameters": [
78328          {
78329            "in": "body",
78330            "name": "body",
78331            "schema": {
78332              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78333            }
78334          },
78335          {
78336            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78337            "in": "query",
78338            "name": "continue",
78339            "type": "string",
78340            "uniqueItems": true
78341          },
78342          {
78343            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78344            "in": "query",
78345            "name": "dryRun",
78346            "type": "string",
78347            "uniqueItems": true
78348          },
78349          {
78350            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78351            "in": "query",
78352            "name": "fieldSelector",
78353            "type": "string",
78354            "uniqueItems": true
78355          },
78356          {
78357            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
78358            "in": "query",
78359            "name": "gracePeriodSeconds",
78360            "type": "integer",
78361            "uniqueItems": true
78362          },
78363          {
78364            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78365            "in": "query",
78366            "name": "labelSelector",
78367            "type": "string",
78368            "uniqueItems": true
78369          },
78370          {
78371            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78372            "in": "query",
78373            "name": "limit",
78374            "type": "integer",
78375            "uniqueItems": true
78376          },
78377          {
78378            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
78379            "in": "query",
78380            "name": "orphanDependents",
78381            "type": "boolean",
78382            "uniqueItems": true
78383          },
78384          {
78385            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
78386            "in": "query",
78387            "name": "propagationPolicy",
78388            "type": "string",
78389            "uniqueItems": true
78390          },
78391          {
78392            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78393            "in": "query",
78394            "name": "resourceVersion",
78395            "type": "string",
78396            "uniqueItems": true
78397          },
78398          {
78399            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78400            "in": "query",
78401            "name": "resourceVersionMatch",
78402            "type": "string",
78403            "uniqueItems": true
78404          },
78405          {
78406            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78407            "in": "query",
78408            "name": "timeoutSeconds",
78409            "type": "integer",
78410            "uniqueItems": true
78411          }
78412        ],
78413        "produces": [
78414          "application/json",
78415          "application/yaml",
78416          "application/vnd.kubernetes.protobuf"
78417        ],
78418        "responses": {
78419          "200": {
78420            "description": "OK",
78421            "schema": {
78422              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78423            }
78424          },
78425          "401": {
78426            "description": "Unauthorized"
78427          }
78428        },
78429        "schemes": [
78430          "https"
78431        ],
78432        "tags": [
78433          "networking_v1"
78434        ],
78435        "x-kubernetes-action": "deletecollection",
78436        "x-kubernetes-group-version-kind": {
78437          "group": "networking.k8s.io",
78438          "kind": "NetworkPolicy",
78439          "version": "v1"
78440        }
78441      },
78442      "get": {
78443        "consumes": [
78444          "*/*"
78445        ],
78446        "description": "list or watch objects of kind NetworkPolicy",
78447        "operationId": "listNetworkingV1NamespacedNetworkPolicy",
78448        "parameters": [
78449          {
78450            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
78451            "in": "query",
78452            "name": "allowWatchBookmarks",
78453            "type": "boolean",
78454            "uniqueItems": true
78455          },
78456          {
78457            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78458            "in": "query",
78459            "name": "continue",
78460            "type": "string",
78461            "uniqueItems": true
78462          },
78463          {
78464            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78465            "in": "query",
78466            "name": "fieldSelector",
78467            "type": "string",
78468            "uniqueItems": true
78469          },
78470          {
78471            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78472            "in": "query",
78473            "name": "labelSelector",
78474            "type": "string",
78475            "uniqueItems": true
78476          },
78477          {
78478            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78479            "in": "query",
78480            "name": "limit",
78481            "type": "integer",
78482            "uniqueItems": true
78483          },
78484          {
78485            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78486            "in": "query",
78487            "name": "resourceVersion",
78488            "type": "string",
78489            "uniqueItems": true
78490          },
78491          {
78492            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78493            "in": "query",
78494            "name": "resourceVersionMatch",
78495            "type": "string",
78496            "uniqueItems": true
78497          },
78498          {
78499            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78500            "in": "query",
78501            "name": "timeoutSeconds",
78502            "type": "integer",
78503            "uniqueItems": true
78504          },
78505          {
78506            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78507            "in": "query",
78508            "name": "watch",
78509            "type": "boolean",
78510            "uniqueItems": true
78511          }
78512        ],
78513        "produces": [
78514          "application/json",
78515          "application/yaml",
78516          "application/vnd.kubernetes.protobuf",
78517          "application/json;stream=watch",
78518          "application/vnd.kubernetes.protobuf;stream=watch"
78519        ],
78520        "responses": {
78521          "200": {
78522            "description": "OK",
78523            "schema": {
78524              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
78525            }
78526          },
78527          "401": {
78528            "description": "Unauthorized"
78529          }
78530        },
78531        "schemes": [
78532          "https"
78533        ],
78534        "tags": [
78535          "networking_v1"
78536        ],
78537        "x-kubernetes-action": "list",
78538        "x-kubernetes-group-version-kind": {
78539          "group": "networking.k8s.io",
78540          "kind": "NetworkPolicy",
78541          "version": "v1"
78542        }
78543      },
78544      "parameters": [
78545        {
78546          "description": "object name and auth scope, such as for teams and projects",
78547          "in": "path",
78548          "name": "namespace",
78549          "required": true,
78550          "type": "string",
78551          "uniqueItems": true
78552        },
78553        {
78554          "description": "If 'true', then the output is pretty printed.",
78555          "in": "query",
78556          "name": "pretty",
78557          "type": "string",
78558          "uniqueItems": true
78559        }
78560      ],
78561      "post": {
78562        "consumes": [
78563          "*/*"
78564        ],
78565        "description": "create a NetworkPolicy",
78566        "operationId": "createNetworkingV1NamespacedNetworkPolicy",
78567        "parameters": [
78568          {
78569            "in": "body",
78570            "name": "body",
78571            "required": true,
78572            "schema": {
78573              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78574            }
78575          },
78576          {
78577            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78578            "in": "query",
78579            "name": "dryRun",
78580            "type": "string",
78581            "uniqueItems": true
78582          },
78583          {
78584            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78585            "in": "query",
78586            "name": "fieldManager",
78587            "type": "string",
78588            "uniqueItems": true
78589          }
78590        ],
78591        "produces": [
78592          "application/json",
78593          "application/yaml",
78594          "application/vnd.kubernetes.protobuf"
78595        ],
78596        "responses": {
78597          "200": {
78598            "description": "OK",
78599            "schema": {
78600              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78601            }
78602          },
78603          "201": {
78604            "description": "Created",
78605            "schema": {
78606              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78607            }
78608          },
78609          "202": {
78610            "description": "Accepted",
78611            "schema": {
78612              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78613            }
78614          },
78615          "401": {
78616            "description": "Unauthorized"
78617          }
78618        },
78619        "schemes": [
78620          "https"
78621        ],
78622        "tags": [
78623          "networking_v1"
78624        ],
78625        "x-kubernetes-action": "post",
78626        "x-kubernetes-group-version-kind": {
78627          "group": "networking.k8s.io",
78628          "kind": "NetworkPolicy",
78629          "version": "v1"
78630        }
78631      }
78632    },
78633    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}": {
78634      "delete": {
78635        "consumes": [
78636          "*/*"
78637        ],
78638        "description": "delete a NetworkPolicy",
78639        "operationId": "deleteNetworkingV1NamespacedNetworkPolicy",
78640        "parameters": [
78641          {
78642            "in": "body",
78643            "name": "body",
78644            "schema": {
78645              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78646            }
78647          },
78648          {
78649            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78650            "in": "query",
78651            "name": "dryRun",
78652            "type": "string",
78653            "uniqueItems": true
78654          },
78655          {
78656            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
78657            "in": "query",
78658            "name": "gracePeriodSeconds",
78659            "type": "integer",
78660            "uniqueItems": true
78661          },
78662          {
78663            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
78664            "in": "query",
78665            "name": "orphanDependents",
78666            "type": "boolean",
78667            "uniqueItems": true
78668          },
78669          {
78670            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
78671            "in": "query",
78672            "name": "propagationPolicy",
78673            "type": "string",
78674            "uniqueItems": true
78675          }
78676        ],
78677        "produces": [
78678          "application/json",
78679          "application/yaml",
78680          "application/vnd.kubernetes.protobuf"
78681        ],
78682        "responses": {
78683          "200": {
78684            "description": "OK",
78685            "schema": {
78686              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78687            }
78688          },
78689          "202": {
78690            "description": "Accepted",
78691            "schema": {
78692              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78693            }
78694          },
78695          "401": {
78696            "description": "Unauthorized"
78697          }
78698        },
78699        "schemes": [
78700          "https"
78701        ],
78702        "tags": [
78703          "networking_v1"
78704        ],
78705        "x-kubernetes-action": "delete",
78706        "x-kubernetes-group-version-kind": {
78707          "group": "networking.k8s.io",
78708          "kind": "NetworkPolicy",
78709          "version": "v1"
78710        }
78711      },
78712      "get": {
78713        "consumes": [
78714          "*/*"
78715        ],
78716        "description": "read the specified NetworkPolicy",
78717        "operationId": "readNetworkingV1NamespacedNetworkPolicy",
78718        "produces": [
78719          "application/json",
78720          "application/yaml",
78721          "application/vnd.kubernetes.protobuf"
78722        ],
78723        "responses": {
78724          "200": {
78725            "description": "OK",
78726            "schema": {
78727              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78728            }
78729          },
78730          "401": {
78731            "description": "Unauthorized"
78732          }
78733        },
78734        "schemes": [
78735          "https"
78736        ],
78737        "tags": [
78738          "networking_v1"
78739        ],
78740        "x-kubernetes-action": "get",
78741        "x-kubernetes-group-version-kind": {
78742          "group": "networking.k8s.io",
78743          "kind": "NetworkPolicy",
78744          "version": "v1"
78745        }
78746      },
78747      "parameters": [
78748        {
78749          "description": "name of the NetworkPolicy",
78750          "in": "path",
78751          "name": "name",
78752          "required": true,
78753          "type": "string",
78754          "uniqueItems": true
78755        },
78756        {
78757          "description": "object name and auth scope, such as for teams and projects",
78758          "in": "path",
78759          "name": "namespace",
78760          "required": true,
78761          "type": "string",
78762          "uniqueItems": true
78763        },
78764        {
78765          "description": "If 'true', then the output is pretty printed.",
78766          "in": "query",
78767          "name": "pretty",
78768          "type": "string",
78769          "uniqueItems": true
78770        }
78771      ],
78772      "patch": {
78773        "consumes": [
78774          "application/json-patch+json",
78775          "application/merge-patch+json",
78776          "application/strategic-merge-patch+json",
78777          "application/apply-patch+yaml"
78778        ],
78779        "description": "partially update the specified NetworkPolicy",
78780        "operationId": "patchNetworkingV1NamespacedNetworkPolicy",
78781        "parameters": [
78782          {
78783            "in": "body",
78784            "name": "body",
78785            "required": true,
78786            "schema": {
78787              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78788            }
78789          },
78790          {
78791            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78792            "in": "query",
78793            "name": "dryRun",
78794            "type": "string",
78795            "uniqueItems": true
78796          },
78797          {
78798            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
78799            "in": "query",
78800            "name": "fieldManager",
78801            "type": "string",
78802            "uniqueItems": true
78803          },
78804          {
78805            "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.",
78806            "in": "query",
78807            "name": "force",
78808            "type": "boolean",
78809            "uniqueItems": true
78810          }
78811        ],
78812        "produces": [
78813          "application/json",
78814          "application/yaml",
78815          "application/vnd.kubernetes.protobuf"
78816        ],
78817        "responses": {
78818          "200": {
78819            "description": "OK",
78820            "schema": {
78821              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78822            }
78823          },
78824          "401": {
78825            "description": "Unauthorized"
78826          }
78827        },
78828        "schemes": [
78829          "https"
78830        ],
78831        "tags": [
78832          "networking_v1"
78833        ],
78834        "x-kubernetes-action": "patch",
78835        "x-kubernetes-group-version-kind": {
78836          "group": "networking.k8s.io",
78837          "kind": "NetworkPolicy",
78838          "version": "v1"
78839        }
78840      },
78841      "put": {
78842        "consumes": [
78843          "*/*"
78844        ],
78845        "description": "replace the specified NetworkPolicy",
78846        "operationId": "replaceNetworkingV1NamespacedNetworkPolicy",
78847        "parameters": [
78848          {
78849            "in": "body",
78850            "name": "body",
78851            "required": true,
78852            "schema": {
78853              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78854            }
78855          },
78856          {
78857            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78858            "in": "query",
78859            "name": "dryRun",
78860            "type": "string",
78861            "uniqueItems": true
78862          },
78863          {
78864            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78865            "in": "query",
78866            "name": "fieldManager",
78867            "type": "string",
78868            "uniqueItems": true
78869          }
78870        ],
78871        "produces": [
78872          "application/json",
78873          "application/yaml",
78874          "application/vnd.kubernetes.protobuf"
78875        ],
78876        "responses": {
78877          "200": {
78878            "description": "OK",
78879            "schema": {
78880              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78881            }
78882          },
78883          "201": {
78884            "description": "Created",
78885            "schema": {
78886              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78887            }
78888          },
78889          "401": {
78890            "description": "Unauthorized"
78891          }
78892        },
78893        "schemes": [
78894          "https"
78895        ],
78896        "tags": [
78897          "networking_v1"
78898        ],
78899        "x-kubernetes-action": "put",
78900        "x-kubernetes-group-version-kind": {
78901          "group": "networking.k8s.io",
78902          "kind": "NetworkPolicy",
78903          "version": "v1"
78904        }
78905      }
78906    },
78907    "/apis/networking.k8s.io/v1/networkpolicies": {
78908      "get": {
78909        "consumes": [
78910          "*/*"
78911        ],
78912        "description": "list or watch objects of kind NetworkPolicy",
78913        "operationId": "listNetworkingV1NetworkPolicyForAllNamespaces",
78914        "produces": [
78915          "application/json",
78916          "application/yaml",
78917          "application/vnd.kubernetes.protobuf",
78918          "application/json;stream=watch",
78919          "application/vnd.kubernetes.protobuf;stream=watch"
78920        ],
78921        "responses": {
78922          "200": {
78923            "description": "OK",
78924            "schema": {
78925              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
78926            }
78927          },
78928          "401": {
78929            "description": "Unauthorized"
78930          }
78931        },
78932        "schemes": [
78933          "https"
78934        ],
78935        "tags": [
78936          "networking_v1"
78937        ],
78938        "x-kubernetes-action": "list",
78939        "x-kubernetes-group-version-kind": {
78940          "group": "networking.k8s.io",
78941          "kind": "NetworkPolicy",
78942          "version": "v1"
78943        }
78944      },
78945      "parameters": [
78946        {
78947          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
78948          "in": "query",
78949          "name": "allowWatchBookmarks",
78950          "type": "boolean",
78951          "uniqueItems": true
78952        },
78953        {
78954          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78955          "in": "query",
78956          "name": "continue",
78957          "type": "string",
78958          "uniqueItems": true
78959        },
78960        {
78961          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78962          "in": "query",
78963          "name": "fieldSelector",
78964          "type": "string",
78965          "uniqueItems": true
78966        },
78967        {
78968          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78969          "in": "query",
78970          "name": "labelSelector",
78971          "type": "string",
78972          "uniqueItems": true
78973        },
78974        {
78975          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78976          "in": "query",
78977          "name": "limit",
78978          "type": "integer",
78979          "uniqueItems": true
78980        },
78981        {
78982          "description": "If 'true', then the output is pretty printed.",
78983          "in": "query",
78984          "name": "pretty",
78985          "type": "string",
78986          "uniqueItems": true
78987        },
78988        {
78989          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78990          "in": "query",
78991          "name": "resourceVersion",
78992          "type": "string",
78993          "uniqueItems": true
78994        },
78995        {
78996          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78997          "in": "query",
78998          "name": "resourceVersionMatch",
78999          "type": "string",
79000          "uniqueItems": true
79001        },
79002        {
79003          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79004          "in": "query",
79005          "name": "timeoutSeconds",
79006          "type": "integer",
79007          "uniqueItems": true
79008        },
79009        {
79010          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79011          "in": "query",
79012          "name": "watch",
79013          "type": "boolean",
79014          "uniqueItems": true
79015        }
79016      ]
79017    },
79018    "/apis/networking.k8s.io/v1/watch/ingressclasses": {
79019      "get": {
79020        "consumes": [
79021          "*/*"
79022        ],
79023        "description": "watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead.",
79024        "operationId": "watchNetworkingV1IngressClassList",
79025        "produces": [
79026          "application/json",
79027          "application/yaml",
79028          "application/vnd.kubernetes.protobuf",
79029          "application/json;stream=watch",
79030          "application/vnd.kubernetes.protobuf;stream=watch"
79031        ],
79032        "responses": {
79033          "200": {
79034            "description": "OK",
79035            "schema": {
79036              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79037            }
79038          },
79039          "401": {
79040            "description": "Unauthorized"
79041          }
79042        },
79043        "schemes": [
79044          "https"
79045        ],
79046        "tags": [
79047          "networking_v1"
79048        ],
79049        "x-kubernetes-action": "watchlist",
79050        "x-kubernetes-group-version-kind": {
79051          "group": "networking.k8s.io",
79052          "kind": "IngressClass",
79053          "version": "v1"
79054        }
79055      },
79056      "parameters": [
79057        {
79058          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79059          "in": "query",
79060          "name": "allowWatchBookmarks",
79061          "type": "boolean",
79062          "uniqueItems": true
79063        },
79064        {
79065          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79066          "in": "query",
79067          "name": "continue",
79068          "type": "string",
79069          "uniqueItems": true
79070        },
79071        {
79072          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79073          "in": "query",
79074          "name": "fieldSelector",
79075          "type": "string",
79076          "uniqueItems": true
79077        },
79078        {
79079          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79080          "in": "query",
79081          "name": "labelSelector",
79082          "type": "string",
79083          "uniqueItems": true
79084        },
79085        {
79086          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79087          "in": "query",
79088          "name": "limit",
79089          "type": "integer",
79090          "uniqueItems": true
79091        },
79092        {
79093          "description": "If 'true', then the output is pretty printed.",
79094          "in": "query",
79095          "name": "pretty",
79096          "type": "string",
79097          "uniqueItems": true
79098        },
79099        {
79100          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79101          "in": "query",
79102          "name": "resourceVersion",
79103          "type": "string",
79104          "uniqueItems": true
79105        },
79106        {
79107          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79108          "in": "query",
79109          "name": "resourceVersionMatch",
79110          "type": "string",
79111          "uniqueItems": true
79112        },
79113        {
79114          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79115          "in": "query",
79116          "name": "timeoutSeconds",
79117          "type": "integer",
79118          "uniqueItems": true
79119        },
79120        {
79121          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79122          "in": "query",
79123          "name": "watch",
79124          "type": "boolean",
79125          "uniqueItems": true
79126        }
79127      ]
79128    },
79129    "/apis/networking.k8s.io/v1/watch/ingressclasses/{name}": {
79130      "get": {
79131        "consumes": [
79132          "*/*"
79133        ],
79134        "description": "watch changes to an object of kind IngressClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
79135        "operationId": "watchNetworkingV1IngressClass",
79136        "produces": [
79137          "application/json",
79138          "application/yaml",
79139          "application/vnd.kubernetes.protobuf",
79140          "application/json;stream=watch",
79141          "application/vnd.kubernetes.protobuf;stream=watch"
79142        ],
79143        "responses": {
79144          "200": {
79145            "description": "OK",
79146            "schema": {
79147              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79148            }
79149          },
79150          "401": {
79151            "description": "Unauthorized"
79152          }
79153        },
79154        "schemes": [
79155          "https"
79156        ],
79157        "tags": [
79158          "networking_v1"
79159        ],
79160        "x-kubernetes-action": "watch",
79161        "x-kubernetes-group-version-kind": {
79162          "group": "networking.k8s.io",
79163          "kind": "IngressClass",
79164          "version": "v1"
79165        }
79166      },
79167      "parameters": [
79168        {
79169          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79170          "in": "query",
79171          "name": "allowWatchBookmarks",
79172          "type": "boolean",
79173          "uniqueItems": true
79174        },
79175        {
79176          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79177          "in": "query",
79178          "name": "continue",
79179          "type": "string",
79180          "uniqueItems": true
79181        },
79182        {
79183          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79184          "in": "query",
79185          "name": "fieldSelector",
79186          "type": "string",
79187          "uniqueItems": true
79188        },
79189        {
79190          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79191          "in": "query",
79192          "name": "labelSelector",
79193          "type": "string",
79194          "uniqueItems": true
79195        },
79196        {
79197          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79198          "in": "query",
79199          "name": "limit",
79200          "type": "integer",
79201          "uniqueItems": true
79202        },
79203        {
79204          "description": "name of the IngressClass",
79205          "in": "path",
79206          "name": "name",
79207          "required": true,
79208          "type": "string",
79209          "uniqueItems": true
79210        },
79211        {
79212          "description": "If 'true', then the output is pretty printed.",
79213          "in": "query",
79214          "name": "pretty",
79215          "type": "string",
79216          "uniqueItems": true
79217        },
79218        {
79219          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79220          "in": "query",
79221          "name": "resourceVersion",
79222          "type": "string",
79223          "uniqueItems": true
79224        },
79225        {
79226          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79227          "in": "query",
79228          "name": "resourceVersionMatch",
79229          "type": "string",
79230          "uniqueItems": true
79231        },
79232        {
79233          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79234          "in": "query",
79235          "name": "timeoutSeconds",
79236          "type": "integer",
79237          "uniqueItems": true
79238        },
79239        {
79240          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79241          "in": "query",
79242          "name": "watch",
79243          "type": "boolean",
79244          "uniqueItems": true
79245        }
79246      ]
79247    },
79248    "/apis/networking.k8s.io/v1/watch/ingresses": {
79249      "get": {
79250        "consumes": [
79251          "*/*"
79252        ],
79253        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
79254        "operationId": "watchNetworkingV1IngressListForAllNamespaces",
79255        "produces": [
79256          "application/json",
79257          "application/yaml",
79258          "application/vnd.kubernetes.protobuf",
79259          "application/json;stream=watch",
79260          "application/vnd.kubernetes.protobuf;stream=watch"
79261        ],
79262        "responses": {
79263          "200": {
79264            "description": "OK",
79265            "schema": {
79266              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79267            }
79268          },
79269          "401": {
79270            "description": "Unauthorized"
79271          }
79272        },
79273        "schemes": [
79274          "https"
79275        ],
79276        "tags": [
79277          "networking_v1"
79278        ],
79279        "x-kubernetes-action": "watchlist",
79280        "x-kubernetes-group-version-kind": {
79281          "group": "networking.k8s.io",
79282          "kind": "Ingress",
79283          "version": "v1"
79284        }
79285      },
79286      "parameters": [
79287        {
79288          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79289          "in": "query",
79290          "name": "allowWatchBookmarks",
79291          "type": "boolean",
79292          "uniqueItems": true
79293        },
79294        {
79295          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79296          "in": "query",
79297          "name": "continue",
79298          "type": "string",
79299          "uniqueItems": true
79300        },
79301        {
79302          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79303          "in": "query",
79304          "name": "fieldSelector",
79305          "type": "string",
79306          "uniqueItems": true
79307        },
79308        {
79309          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79310          "in": "query",
79311          "name": "labelSelector",
79312          "type": "string",
79313          "uniqueItems": true
79314        },
79315        {
79316          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79317          "in": "query",
79318          "name": "limit",
79319          "type": "integer",
79320          "uniqueItems": true
79321        },
79322        {
79323          "description": "If 'true', then the output is pretty printed.",
79324          "in": "query",
79325          "name": "pretty",
79326          "type": "string",
79327          "uniqueItems": true
79328        },
79329        {
79330          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79331          "in": "query",
79332          "name": "resourceVersion",
79333          "type": "string",
79334          "uniqueItems": true
79335        },
79336        {
79337          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79338          "in": "query",
79339          "name": "resourceVersionMatch",
79340          "type": "string",
79341          "uniqueItems": true
79342        },
79343        {
79344          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79345          "in": "query",
79346          "name": "timeoutSeconds",
79347          "type": "integer",
79348          "uniqueItems": true
79349        },
79350        {
79351          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79352          "in": "query",
79353          "name": "watch",
79354          "type": "boolean",
79355          "uniqueItems": true
79356        }
79357      ]
79358    },
79359    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses": {
79360      "get": {
79361        "consumes": [
79362          "*/*"
79363        ],
79364        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
79365        "operationId": "watchNetworkingV1NamespacedIngressList",
79366        "produces": [
79367          "application/json",
79368          "application/yaml",
79369          "application/vnd.kubernetes.protobuf",
79370          "application/json;stream=watch",
79371          "application/vnd.kubernetes.protobuf;stream=watch"
79372        ],
79373        "responses": {
79374          "200": {
79375            "description": "OK",
79376            "schema": {
79377              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79378            }
79379          },
79380          "401": {
79381            "description": "Unauthorized"
79382          }
79383        },
79384        "schemes": [
79385          "https"
79386        ],
79387        "tags": [
79388          "networking_v1"
79389        ],
79390        "x-kubernetes-action": "watchlist",
79391        "x-kubernetes-group-version-kind": {
79392          "group": "networking.k8s.io",
79393          "kind": "Ingress",
79394          "version": "v1"
79395        }
79396      },
79397      "parameters": [
79398        {
79399          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79400          "in": "query",
79401          "name": "allowWatchBookmarks",
79402          "type": "boolean",
79403          "uniqueItems": true
79404        },
79405        {
79406          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79407          "in": "query",
79408          "name": "continue",
79409          "type": "string",
79410          "uniqueItems": true
79411        },
79412        {
79413          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79414          "in": "query",
79415          "name": "fieldSelector",
79416          "type": "string",
79417          "uniqueItems": true
79418        },
79419        {
79420          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79421          "in": "query",
79422          "name": "labelSelector",
79423          "type": "string",
79424          "uniqueItems": true
79425        },
79426        {
79427          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79428          "in": "query",
79429          "name": "limit",
79430          "type": "integer",
79431          "uniqueItems": true
79432        },
79433        {
79434          "description": "object name and auth scope, such as for teams and projects",
79435          "in": "path",
79436          "name": "namespace",
79437          "required": true,
79438          "type": "string",
79439          "uniqueItems": true
79440        },
79441        {
79442          "description": "If 'true', then the output is pretty printed.",
79443          "in": "query",
79444          "name": "pretty",
79445          "type": "string",
79446          "uniqueItems": true
79447        },
79448        {
79449          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79450          "in": "query",
79451          "name": "resourceVersion",
79452          "type": "string",
79453          "uniqueItems": true
79454        },
79455        {
79456          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79457          "in": "query",
79458          "name": "resourceVersionMatch",
79459          "type": "string",
79460          "uniqueItems": true
79461        },
79462        {
79463          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79464          "in": "query",
79465          "name": "timeoutSeconds",
79466          "type": "integer",
79467          "uniqueItems": true
79468        },
79469        {
79470          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79471          "in": "query",
79472          "name": "watch",
79473          "type": "boolean",
79474          "uniqueItems": true
79475        }
79476      ]
79477    },
79478    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses/{name}": {
79479      "get": {
79480        "consumes": [
79481          "*/*"
79482        ],
79483        "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.",
79484        "operationId": "watchNetworkingV1NamespacedIngress",
79485        "produces": [
79486          "application/json",
79487          "application/yaml",
79488          "application/vnd.kubernetes.protobuf",
79489          "application/json;stream=watch",
79490          "application/vnd.kubernetes.protobuf;stream=watch"
79491        ],
79492        "responses": {
79493          "200": {
79494            "description": "OK",
79495            "schema": {
79496              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79497            }
79498          },
79499          "401": {
79500            "description": "Unauthorized"
79501          }
79502        },
79503        "schemes": [
79504          "https"
79505        ],
79506        "tags": [
79507          "networking_v1"
79508        ],
79509        "x-kubernetes-action": "watch",
79510        "x-kubernetes-group-version-kind": {
79511          "group": "networking.k8s.io",
79512          "kind": "Ingress",
79513          "version": "v1"
79514        }
79515      },
79516      "parameters": [
79517        {
79518          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79519          "in": "query",
79520          "name": "allowWatchBookmarks",
79521          "type": "boolean",
79522          "uniqueItems": true
79523        },
79524        {
79525          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79526          "in": "query",
79527          "name": "continue",
79528          "type": "string",
79529          "uniqueItems": true
79530        },
79531        {
79532          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79533          "in": "query",
79534          "name": "fieldSelector",
79535          "type": "string",
79536          "uniqueItems": true
79537        },
79538        {
79539          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79540          "in": "query",
79541          "name": "labelSelector",
79542          "type": "string",
79543          "uniqueItems": true
79544        },
79545        {
79546          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79547          "in": "query",
79548          "name": "limit",
79549          "type": "integer",
79550          "uniqueItems": true
79551        },
79552        {
79553          "description": "name of the Ingress",
79554          "in": "path",
79555          "name": "name",
79556          "required": true,
79557          "type": "string",
79558          "uniqueItems": true
79559        },
79560        {
79561          "description": "object name and auth scope, such as for teams and projects",
79562          "in": "path",
79563          "name": "namespace",
79564          "required": true,
79565          "type": "string",
79566          "uniqueItems": true
79567        },
79568        {
79569          "description": "If 'true', then the output is pretty printed.",
79570          "in": "query",
79571          "name": "pretty",
79572          "type": "string",
79573          "uniqueItems": true
79574        },
79575        {
79576          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79577          "in": "query",
79578          "name": "resourceVersion",
79579          "type": "string",
79580          "uniqueItems": true
79581        },
79582        {
79583          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79584          "in": "query",
79585          "name": "resourceVersionMatch",
79586          "type": "string",
79587          "uniqueItems": true
79588        },
79589        {
79590          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79591          "in": "query",
79592          "name": "timeoutSeconds",
79593          "type": "integer",
79594          "uniqueItems": true
79595        },
79596        {
79597          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79598          "in": "query",
79599          "name": "watch",
79600          "type": "boolean",
79601          "uniqueItems": true
79602        }
79603      ]
79604    },
79605    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies": {
79606      "get": {
79607        "consumes": [
79608          "*/*"
79609        ],
79610        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
79611        "operationId": "watchNetworkingV1NamespacedNetworkPolicyList",
79612        "produces": [
79613          "application/json",
79614          "application/yaml",
79615          "application/vnd.kubernetes.protobuf",
79616          "application/json;stream=watch",
79617          "application/vnd.kubernetes.protobuf;stream=watch"
79618        ],
79619        "responses": {
79620          "200": {
79621            "description": "OK",
79622            "schema": {
79623              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79624            }
79625          },
79626          "401": {
79627            "description": "Unauthorized"
79628          }
79629        },
79630        "schemes": [
79631          "https"
79632        ],
79633        "tags": [
79634          "networking_v1"
79635        ],
79636        "x-kubernetes-action": "watchlist",
79637        "x-kubernetes-group-version-kind": {
79638          "group": "networking.k8s.io",
79639          "kind": "NetworkPolicy",
79640          "version": "v1"
79641        }
79642      },
79643      "parameters": [
79644        {
79645          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79646          "in": "query",
79647          "name": "allowWatchBookmarks",
79648          "type": "boolean",
79649          "uniqueItems": true
79650        },
79651        {
79652          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79653          "in": "query",
79654          "name": "continue",
79655          "type": "string",
79656          "uniqueItems": true
79657        },
79658        {
79659          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79660          "in": "query",
79661          "name": "fieldSelector",
79662          "type": "string",
79663          "uniqueItems": true
79664        },
79665        {
79666          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79667          "in": "query",
79668          "name": "labelSelector",
79669          "type": "string",
79670          "uniqueItems": true
79671        },
79672        {
79673          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79674          "in": "query",
79675          "name": "limit",
79676          "type": "integer",
79677          "uniqueItems": true
79678        },
79679        {
79680          "description": "object name and auth scope, such as for teams and projects",
79681          "in": "path",
79682          "name": "namespace",
79683          "required": true,
79684          "type": "string",
79685          "uniqueItems": true
79686        },
79687        {
79688          "description": "If 'true', then the output is pretty printed.",
79689          "in": "query",
79690          "name": "pretty",
79691          "type": "string",
79692          "uniqueItems": true
79693        },
79694        {
79695          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79696          "in": "query",
79697          "name": "resourceVersion",
79698          "type": "string",
79699          "uniqueItems": true
79700        },
79701        {
79702          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79703          "in": "query",
79704          "name": "resourceVersionMatch",
79705          "type": "string",
79706          "uniqueItems": true
79707        },
79708        {
79709          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79710          "in": "query",
79711          "name": "timeoutSeconds",
79712          "type": "integer",
79713          "uniqueItems": true
79714        },
79715        {
79716          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79717          "in": "query",
79718          "name": "watch",
79719          "type": "boolean",
79720          "uniqueItems": true
79721        }
79722      ]
79723    },
79724    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}": {
79725      "get": {
79726        "consumes": [
79727          "*/*"
79728        ],
79729        "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.",
79730        "operationId": "watchNetworkingV1NamespacedNetworkPolicy",
79731        "produces": [
79732          "application/json",
79733          "application/yaml",
79734          "application/vnd.kubernetes.protobuf",
79735          "application/json;stream=watch",
79736          "application/vnd.kubernetes.protobuf;stream=watch"
79737        ],
79738        "responses": {
79739          "200": {
79740            "description": "OK",
79741            "schema": {
79742              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79743            }
79744          },
79745          "401": {
79746            "description": "Unauthorized"
79747          }
79748        },
79749        "schemes": [
79750          "https"
79751        ],
79752        "tags": [
79753          "networking_v1"
79754        ],
79755        "x-kubernetes-action": "watch",
79756        "x-kubernetes-group-version-kind": {
79757          "group": "networking.k8s.io",
79758          "kind": "NetworkPolicy",
79759          "version": "v1"
79760        }
79761      },
79762      "parameters": [
79763        {
79764          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79765          "in": "query",
79766          "name": "allowWatchBookmarks",
79767          "type": "boolean",
79768          "uniqueItems": true
79769        },
79770        {
79771          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79772          "in": "query",
79773          "name": "continue",
79774          "type": "string",
79775          "uniqueItems": true
79776        },
79777        {
79778          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79779          "in": "query",
79780          "name": "fieldSelector",
79781          "type": "string",
79782          "uniqueItems": true
79783        },
79784        {
79785          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79786          "in": "query",
79787          "name": "labelSelector",
79788          "type": "string",
79789          "uniqueItems": true
79790        },
79791        {
79792          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79793          "in": "query",
79794          "name": "limit",
79795          "type": "integer",
79796          "uniqueItems": true
79797        },
79798        {
79799          "description": "name of the NetworkPolicy",
79800          "in": "path",
79801          "name": "name",
79802          "required": true,
79803          "type": "string",
79804          "uniqueItems": true
79805        },
79806        {
79807          "description": "object name and auth scope, such as for teams and projects",
79808          "in": "path",
79809          "name": "namespace",
79810          "required": true,
79811          "type": "string",
79812          "uniqueItems": true
79813        },
79814        {
79815          "description": "If 'true', then the output is pretty printed.",
79816          "in": "query",
79817          "name": "pretty",
79818          "type": "string",
79819          "uniqueItems": true
79820        },
79821        {
79822          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79823          "in": "query",
79824          "name": "resourceVersion",
79825          "type": "string",
79826          "uniqueItems": true
79827        },
79828        {
79829          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79830          "in": "query",
79831          "name": "resourceVersionMatch",
79832          "type": "string",
79833          "uniqueItems": true
79834        },
79835        {
79836          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79837          "in": "query",
79838          "name": "timeoutSeconds",
79839          "type": "integer",
79840          "uniqueItems": true
79841        },
79842        {
79843          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79844          "in": "query",
79845          "name": "watch",
79846          "type": "boolean",
79847          "uniqueItems": true
79848        }
79849      ]
79850    },
79851    "/apis/networking.k8s.io/v1/watch/networkpolicies": {
79852      "get": {
79853        "consumes": [
79854          "*/*"
79855        ],
79856        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
79857        "operationId": "watchNetworkingV1NetworkPolicyListForAllNamespaces",
79858        "produces": [
79859          "application/json",
79860          "application/yaml",
79861          "application/vnd.kubernetes.protobuf",
79862          "application/json;stream=watch",
79863          "application/vnd.kubernetes.protobuf;stream=watch"
79864        ],
79865        "responses": {
79866          "200": {
79867            "description": "OK",
79868            "schema": {
79869              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79870            }
79871          },
79872          "401": {
79873            "description": "Unauthorized"
79874          }
79875        },
79876        "schemes": [
79877          "https"
79878        ],
79879        "tags": [
79880          "networking_v1"
79881        ],
79882        "x-kubernetes-action": "watchlist",
79883        "x-kubernetes-group-version-kind": {
79884          "group": "networking.k8s.io",
79885          "kind": "NetworkPolicy",
79886          "version": "v1"
79887        }
79888      },
79889      "parameters": [
79890        {
79891          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79892          "in": "query",
79893          "name": "allowWatchBookmarks",
79894          "type": "boolean",
79895          "uniqueItems": true
79896        },
79897        {
79898          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79899          "in": "query",
79900          "name": "continue",
79901          "type": "string",
79902          "uniqueItems": true
79903        },
79904        {
79905          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79906          "in": "query",
79907          "name": "fieldSelector",
79908          "type": "string",
79909          "uniqueItems": true
79910        },
79911        {
79912          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79913          "in": "query",
79914          "name": "labelSelector",
79915          "type": "string",
79916          "uniqueItems": true
79917        },
79918        {
79919          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79920          "in": "query",
79921          "name": "limit",
79922          "type": "integer",
79923          "uniqueItems": true
79924        },
79925        {
79926          "description": "If 'true', then the output is pretty printed.",
79927          "in": "query",
79928          "name": "pretty",
79929          "type": "string",
79930          "uniqueItems": true
79931        },
79932        {
79933          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79934          "in": "query",
79935          "name": "resourceVersion",
79936          "type": "string",
79937          "uniqueItems": true
79938        },
79939        {
79940          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79941          "in": "query",
79942          "name": "resourceVersionMatch",
79943          "type": "string",
79944          "uniqueItems": true
79945        },
79946        {
79947          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79948          "in": "query",
79949          "name": "timeoutSeconds",
79950          "type": "integer",
79951          "uniqueItems": true
79952        },
79953        {
79954          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79955          "in": "query",
79956          "name": "watch",
79957          "type": "boolean",
79958          "uniqueItems": true
79959        }
79960      ]
79961    },
79962    "/apis/networking.k8s.io/v1beta1/": {
79963      "get": {
79964        "consumes": [
79965          "application/json",
79966          "application/yaml",
79967          "application/vnd.kubernetes.protobuf"
79968        ],
79969        "description": "get available resources",
79970        "operationId": "getNetworkingV1beta1APIResources",
79971        "produces": [
79972          "application/json",
79973          "application/yaml",
79974          "application/vnd.kubernetes.protobuf"
79975        ],
79976        "responses": {
79977          "200": {
79978            "description": "OK",
79979            "schema": {
79980              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
79981            }
79982          },
79983          "401": {
79984            "description": "Unauthorized"
79985          }
79986        },
79987        "schemes": [
79988          "https"
79989        ],
79990        "tags": [
79991          "networking_v1beta1"
79992        ]
79993      }
79994    },
79995    "/apis/networking.k8s.io/v1beta1/ingressclasses": {
79996      "delete": {
79997        "consumes": [
79998          "*/*"
79999        ],
80000        "description": "delete collection of IngressClass",
80001        "operationId": "deleteNetworkingV1beta1CollectionIngressClass",
80002        "parameters": [
80003          {
80004            "in": "body",
80005            "name": "body",
80006            "schema": {
80007              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80008            }
80009          },
80010          {
80011            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80012            "in": "query",
80013            "name": "continue",
80014            "type": "string",
80015            "uniqueItems": true
80016          },
80017          {
80018            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80019            "in": "query",
80020            "name": "dryRun",
80021            "type": "string",
80022            "uniqueItems": true
80023          },
80024          {
80025            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80026            "in": "query",
80027            "name": "fieldSelector",
80028            "type": "string",
80029            "uniqueItems": true
80030          },
80031          {
80032            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80033            "in": "query",
80034            "name": "gracePeriodSeconds",
80035            "type": "integer",
80036            "uniqueItems": true
80037          },
80038          {
80039            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80040            "in": "query",
80041            "name": "labelSelector",
80042            "type": "string",
80043            "uniqueItems": true
80044          },
80045          {
80046            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80047            "in": "query",
80048            "name": "limit",
80049            "type": "integer",
80050            "uniqueItems": true
80051          },
80052          {
80053            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80054            "in": "query",
80055            "name": "orphanDependents",
80056            "type": "boolean",
80057            "uniqueItems": true
80058          },
80059          {
80060            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80061            "in": "query",
80062            "name": "propagationPolicy",
80063            "type": "string",
80064            "uniqueItems": true
80065          },
80066          {
80067            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80068            "in": "query",
80069            "name": "resourceVersion",
80070            "type": "string",
80071            "uniqueItems": true
80072          },
80073          {
80074            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80075            "in": "query",
80076            "name": "resourceVersionMatch",
80077            "type": "string",
80078            "uniqueItems": true
80079          },
80080          {
80081            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80082            "in": "query",
80083            "name": "timeoutSeconds",
80084            "type": "integer",
80085            "uniqueItems": true
80086          }
80087        ],
80088        "produces": [
80089          "application/json",
80090          "application/yaml",
80091          "application/vnd.kubernetes.protobuf"
80092        ],
80093        "responses": {
80094          "200": {
80095            "description": "OK",
80096            "schema": {
80097              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80098            }
80099          },
80100          "401": {
80101            "description": "Unauthorized"
80102          }
80103        },
80104        "schemes": [
80105          "https"
80106        ],
80107        "tags": [
80108          "networking_v1beta1"
80109        ],
80110        "x-kubernetes-action": "deletecollection",
80111        "x-kubernetes-group-version-kind": {
80112          "group": "networking.k8s.io",
80113          "kind": "IngressClass",
80114          "version": "v1beta1"
80115        }
80116      },
80117      "get": {
80118        "consumes": [
80119          "*/*"
80120        ],
80121        "description": "list or watch objects of kind IngressClass",
80122        "operationId": "listNetworkingV1beta1IngressClass",
80123        "parameters": [
80124          {
80125            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
80126            "in": "query",
80127            "name": "allowWatchBookmarks",
80128            "type": "boolean",
80129            "uniqueItems": true
80130          },
80131          {
80132            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80133            "in": "query",
80134            "name": "continue",
80135            "type": "string",
80136            "uniqueItems": true
80137          },
80138          {
80139            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80140            "in": "query",
80141            "name": "fieldSelector",
80142            "type": "string",
80143            "uniqueItems": true
80144          },
80145          {
80146            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80147            "in": "query",
80148            "name": "labelSelector",
80149            "type": "string",
80150            "uniqueItems": true
80151          },
80152          {
80153            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80154            "in": "query",
80155            "name": "limit",
80156            "type": "integer",
80157            "uniqueItems": true
80158          },
80159          {
80160            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80161            "in": "query",
80162            "name": "resourceVersion",
80163            "type": "string",
80164            "uniqueItems": true
80165          },
80166          {
80167            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80168            "in": "query",
80169            "name": "resourceVersionMatch",
80170            "type": "string",
80171            "uniqueItems": true
80172          },
80173          {
80174            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80175            "in": "query",
80176            "name": "timeoutSeconds",
80177            "type": "integer",
80178            "uniqueItems": true
80179          },
80180          {
80181            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80182            "in": "query",
80183            "name": "watch",
80184            "type": "boolean",
80185            "uniqueItems": true
80186          }
80187        ],
80188        "produces": [
80189          "application/json",
80190          "application/yaml",
80191          "application/vnd.kubernetes.protobuf",
80192          "application/json;stream=watch",
80193          "application/vnd.kubernetes.protobuf;stream=watch"
80194        ],
80195        "responses": {
80196          "200": {
80197            "description": "OK",
80198            "schema": {
80199              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClassList"
80200            }
80201          },
80202          "401": {
80203            "description": "Unauthorized"
80204          }
80205        },
80206        "schemes": [
80207          "https"
80208        ],
80209        "tags": [
80210          "networking_v1beta1"
80211        ],
80212        "x-kubernetes-action": "list",
80213        "x-kubernetes-group-version-kind": {
80214          "group": "networking.k8s.io",
80215          "kind": "IngressClass",
80216          "version": "v1beta1"
80217        }
80218      },
80219      "parameters": [
80220        {
80221          "description": "If 'true', then the output is pretty printed.",
80222          "in": "query",
80223          "name": "pretty",
80224          "type": "string",
80225          "uniqueItems": true
80226        }
80227      ],
80228      "post": {
80229        "consumes": [
80230          "*/*"
80231        ],
80232        "description": "create an IngressClass",
80233        "operationId": "createNetworkingV1beta1IngressClass",
80234        "parameters": [
80235          {
80236            "in": "body",
80237            "name": "body",
80238            "required": true,
80239            "schema": {
80240              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80241            }
80242          },
80243          {
80244            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80245            "in": "query",
80246            "name": "dryRun",
80247            "type": "string",
80248            "uniqueItems": true
80249          },
80250          {
80251            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80252            "in": "query",
80253            "name": "fieldManager",
80254            "type": "string",
80255            "uniqueItems": true
80256          }
80257        ],
80258        "produces": [
80259          "application/json",
80260          "application/yaml",
80261          "application/vnd.kubernetes.protobuf"
80262        ],
80263        "responses": {
80264          "200": {
80265            "description": "OK",
80266            "schema": {
80267              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80268            }
80269          },
80270          "201": {
80271            "description": "Created",
80272            "schema": {
80273              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80274            }
80275          },
80276          "202": {
80277            "description": "Accepted",
80278            "schema": {
80279              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80280            }
80281          },
80282          "401": {
80283            "description": "Unauthorized"
80284          }
80285        },
80286        "schemes": [
80287          "https"
80288        ],
80289        "tags": [
80290          "networking_v1beta1"
80291        ],
80292        "x-kubernetes-action": "post",
80293        "x-kubernetes-group-version-kind": {
80294          "group": "networking.k8s.io",
80295          "kind": "IngressClass",
80296          "version": "v1beta1"
80297        }
80298      }
80299    },
80300    "/apis/networking.k8s.io/v1beta1/ingressclasses/{name}": {
80301      "delete": {
80302        "consumes": [
80303          "*/*"
80304        ],
80305        "description": "delete an IngressClass",
80306        "operationId": "deleteNetworkingV1beta1IngressClass",
80307        "parameters": [
80308          {
80309            "in": "body",
80310            "name": "body",
80311            "schema": {
80312              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80313            }
80314          },
80315          {
80316            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80317            "in": "query",
80318            "name": "dryRun",
80319            "type": "string",
80320            "uniqueItems": true
80321          },
80322          {
80323            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80324            "in": "query",
80325            "name": "gracePeriodSeconds",
80326            "type": "integer",
80327            "uniqueItems": true
80328          },
80329          {
80330            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80331            "in": "query",
80332            "name": "orphanDependents",
80333            "type": "boolean",
80334            "uniqueItems": true
80335          },
80336          {
80337            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80338            "in": "query",
80339            "name": "propagationPolicy",
80340            "type": "string",
80341            "uniqueItems": true
80342          }
80343        ],
80344        "produces": [
80345          "application/json",
80346          "application/yaml",
80347          "application/vnd.kubernetes.protobuf"
80348        ],
80349        "responses": {
80350          "200": {
80351            "description": "OK",
80352            "schema": {
80353              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80354            }
80355          },
80356          "202": {
80357            "description": "Accepted",
80358            "schema": {
80359              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80360            }
80361          },
80362          "401": {
80363            "description": "Unauthorized"
80364          }
80365        },
80366        "schemes": [
80367          "https"
80368        ],
80369        "tags": [
80370          "networking_v1beta1"
80371        ],
80372        "x-kubernetes-action": "delete",
80373        "x-kubernetes-group-version-kind": {
80374          "group": "networking.k8s.io",
80375          "kind": "IngressClass",
80376          "version": "v1beta1"
80377        }
80378      },
80379      "get": {
80380        "consumes": [
80381          "*/*"
80382        ],
80383        "description": "read the specified IngressClass",
80384        "operationId": "readNetworkingV1beta1IngressClass",
80385        "produces": [
80386          "application/json",
80387          "application/yaml",
80388          "application/vnd.kubernetes.protobuf"
80389        ],
80390        "responses": {
80391          "200": {
80392            "description": "OK",
80393            "schema": {
80394              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80395            }
80396          },
80397          "401": {
80398            "description": "Unauthorized"
80399          }
80400        },
80401        "schemes": [
80402          "https"
80403        ],
80404        "tags": [
80405          "networking_v1beta1"
80406        ],
80407        "x-kubernetes-action": "get",
80408        "x-kubernetes-group-version-kind": {
80409          "group": "networking.k8s.io",
80410          "kind": "IngressClass",
80411          "version": "v1beta1"
80412        }
80413      },
80414      "parameters": [
80415        {
80416          "description": "name of the IngressClass",
80417          "in": "path",
80418          "name": "name",
80419          "required": true,
80420          "type": "string",
80421          "uniqueItems": true
80422        },
80423        {
80424          "description": "If 'true', then the output is pretty printed.",
80425          "in": "query",
80426          "name": "pretty",
80427          "type": "string",
80428          "uniqueItems": true
80429        }
80430      ],
80431      "patch": {
80432        "consumes": [
80433          "application/json-patch+json",
80434          "application/merge-patch+json",
80435          "application/strategic-merge-patch+json",
80436          "application/apply-patch+yaml"
80437        ],
80438        "description": "partially update the specified IngressClass",
80439        "operationId": "patchNetworkingV1beta1IngressClass",
80440        "parameters": [
80441          {
80442            "in": "body",
80443            "name": "body",
80444            "required": true,
80445            "schema": {
80446              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
80447            }
80448          },
80449          {
80450            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80451            "in": "query",
80452            "name": "dryRun",
80453            "type": "string",
80454            "uniqueItems": true
80455          },
80456          {
80457            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
80458            "in": "query",
80459            "name": "fieldManager",
80460            "type": "string",
80461            "uniqueItems": true
80462          },
80463          {
80464            "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.",
80465            "in": "query",
80466            "name": "force",
80467            "type": "boolean",
80468            "uniqueItems": true
80469          }
80470        ],
80471        "produces": [
80472          "application/json",
80473          "application/yaml",
80474          "application/vnd.kubernetes.protobuf"
80475        ],
80476        "responses": {
80477          "200": {
80478            "description": "OK",
80479            "schema": {
80480              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80481            }
80482          },
80483          "401": {
80484            "description": "Unauthorized"
80485          }
80486        },
80487        "schemes": [
80488          "https"
80489        ],
80490        "tags": [
80491          "networking_v1beta1"
80492        ],
80493        "x-kubernetes-action": "patch",
80494        "x-kubernetes-group-version-kind": {
80495          "group": "networking.k8s.io",
80496          "kind": "IngressClass",
80497          "version": "v1beta1"
80498        }
80499      },
80500      "put": {
80501        "consumes": [
80502          "*/*"
80503        ],
80504        "description": "replace the specified IngressClass",
80505        "operationId": "replaceNetworkingV1beta1IngressClass",
80506        "parameters": [
80507          {
80508            "in": "body",
80509            "name": "body",
80510            "required": true,
80511            "schema": {
80512              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80513            }
80514          },
80515          {
80516            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80517            "in": "query",
80518            "name": "dryRun",
80519            "type": "string",
80520            "uniqueItems": true
80521          },
80522          {
80523            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80524            "in": "query",
80525            "name": "fieldManager",
80526            "type": "string",
80527            "uniqueItems": true
80528          }
80529        ],
80530        "produces": [
80531          "application/json",
80532          "application/yaml",
80533          "application/vnd.kubernetes.protobuf"
80534        ],
80535        "responses": {
80536          "200": {
80537            "description": "OK",
80538            "schema": {
80539              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80540            }
80541          },
80542          "201": {
80543            "description": "Created",
80544            "schema": {
80545              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80546            }
80547          },
80548          "401": {
80549            "description": "Unauthorized"
80550          }
80551        },
80552        "schemes": [
80553          "https"
80554        ],
80555        "tags": [
80556          "networking_v1beta1"
80557        ],
80558        "x-kubernetes-action": "put",
80559        "x-kubernetes-group-version-kind": {
80560          "group": "networking.k8s.io",
80561          "kind": "IngressClass",
80562          "version": "v1beta1"
80563        }
80564      }
80565    },
80566    "/apis/networking.k8s.io/v1beta1/ingresses": {
80567      "get": {
80568        "consumes": [
80569          "*/*"
80570        ],
80571        "description": "list or watch objects of kind Ingress",
80572        "operationId": "listNetworkingV1beta1IngressForAllNamespaces",
80573        "produces": [
80574          "application/json",
80575          "application/yaml",
80576          "application/vnd.kubernetes.protobuf",
80577          "application/json;stream=watch",
80578          "application/vnd.kubernetes.protobuf;stream=watch"
80579        ],
80580        "responses": {
80581          "200": {
80582            "description": "OK",
80583            "schema": {
80584              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressList"
80585            }
80586          },
80587          "401": {
80588            "description": "Unauthorized"
80589          }
80590        },
80591        "schemes": [
80592          "https"
80593        ],
80594        "tags": [
80595          "networking_v1beta1"
80596        ],
80597        "x-kubernetes-action": "list",
80598        "x-kubernetes-group-version-kind": {
80599          "group": "networking.k8s.io",
80600          "kind": "Ingress",
80601          "version": "v1beta1"
80602        }
80603      },
80604      "parameters": [
80605        {
80606          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
80607          "in": "query",
80608          "name": "allowWatchBookmarks",
80609          "type": "boolean",
80610          "uniqueItems": true
80611        },
80612        {
80613          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80614          "in": "query",
80615          "name": "continue",
80616          "type": "string",
80617          "uniqueItems": true
80618        },
80619        {
80620          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80621          "in": "query",
80622          "name": "fieldSelector",
80623          "type": "string",
80624          "uniqueItems": true
80625        },
80626        {
80627          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80628          "in": "query",
80629          "name": "labelSelector",
80630          "type": "string",
80631          "uniqueItems": true
80632        },
80633        {
80634          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80635          "in": "query",
80636          "name": "limit",
80637          "type": "integer",
80638          "uniqueItems": true
80639        },
80640        {
80641          "description": "If 'true', then the output is pretty printed.",
80642          "in": "query",
80643          "name": "pretty",
80644          "type": "string",
80645          "uniqueItems": true
80646        },
80647        {
80648          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80649          "in": "query",
80650          "name": "resourceVersion",
80651          "type": "string",
80652          "uniqueItems": true
80653        },
80654        {
80655          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80656          "in": "query",
80657          "name": "resourceVersionMatch",
80658          "type": "string",
80659          "uniqueItems": true
80660        },
80661        {
80662          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80663          "in": "query",
80664          "name": "timeoutSeconds",
80665          "type": "integer",
80666          "uniqueItems": true
80667        },
80668        {
80669          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80670          "in": "query",
80671          "name": "watch",
80672          "type": "boolean",
80673          "uniqueItems": true
80674        }
80675      ]
80676    },
80677    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses": {
80678      "delete": {
80679        "consumes": [
80680          "*/*"
80681        ],
80682        "description": "delete collection of Ingress",
80683        "operationId": "deleteNetworkingV1beta1CollectionNamespacedIngress",
80684        "parameters": [
80685          {
80686            "in": "body",
80687            "name": "body",
80688            "schema": {
80689              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80690            }
80691          },
80692          {
80693            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80694            "in": "query",
80695            "name": "continue",
80696            "type": "string",
80697            "uniqueItems": true
80698          },
80699          {
80700            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80701            "in": "query",
80702            "name": "dryRun",
80703            "type": "string",
80704            "uniqueItems": true
80705          },
80706          {
80707            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80708            "in": "query",
80709            "name": "fieldSelector",
80710            "type": "string",
80711            "uniqueItems": true
80712          },
80713          {
80714            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80715            "in": "query",
80716            "name": "gracePeriodSeconds",
80717            "type": "integer",
80718            "uniqueItems": true
80719          },
80720          {
80721            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80722            "in": "query",
80723            "name": "labelSelector",
80724            "type": "string",
80725            "uniqueItems": true
80726          },
80727          {
80728            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80729            "in": "query",
80730            "name": "limit",
80731            "type": "integer",
80732            "uniqueItems": true
80733          },
80734          {
80735            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80736            "in": "query",
80737            "name": "orphanDependents",
80738            "type": "boolean",
80739            "uniqueItems": true
80740          },
80741          {
80742            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80743            "in": "query",
80744            "name": "propagationPolicy",
80745            "type": "string",
80746            "uniqueItems": true
80747          },
80748          {
80749            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80750            "in": "query",
80751            "name": "resourceVersion",
80752            "type": "string",
80753            "uniqueItems": true
80754          },
80755          {
80756            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80757            "in": "query",
80758            "name": "resourceVersionMatch",
80759            "type": "string",
80760            "uniqueItems": true
80761          },
80762          {
80763            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80764            "in": "query",
80765            "name": "timeoutSeconds",
80766            "type": "integer",
80767            "uniqueItems": true
80768          }
80769        ],
80770        "produces": [
80771          "application/json",
80772          "application/yaml",
80773          "application/vnd.kubernetes.protobuf"
80774        ],
80775        "responses": {
80776          "200": {
80777            "description": "OK",
80778            "schema": {
80779              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80780            }
80781          },
80782          "401": {
80783            "description": "Unauthorized"
80784          }
80785        },
80786        "schemes": [
80787          "https"
80788        ],
80789        "tags": [
80790          "networking_v1beta1"
80791        ],
80792        "x-kubernetes-action": "deletecollection",
80793        "x-kubernetes-group-version-kind": {
80794          "group": "networking.k8s.io",
80795          "kind": "Ingress",
80796          "version": "v1beta1"
80797        }
80798      },
80799      "get": {
80800        "consumes": [
80801          "*/*"
80802        ],
80803        "description": "list or watch objects of kind Ingress",
80804        "operationId": "listNetworkingV1beta1NamespacedIngress",
80805        "parameters": [
80806          {
80807            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
80808            "in": "query",
80809            "name": "allowWatchBookmarks",
80810            "type": "boolean",
80811            "uniqueItems": true
80812          },
80813          {
80814            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80815            "in": "query",
80816            "name": "continue",
80817            "type": "string",
80818            "uniqueItems": true
80819          },
80820          {
80821            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80822            "in": "query",
80823            "name": "fieldSelector",
80824            "type": "string",
80825            "uniqueItems": true
80826          },
80827          {
80828            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80829            "in": "query",
80830            "name": "labelSelector",
80831            "type": "string",
80832            "uniqueItems": true
80833          },
80834          {
80835            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80836            "in": "query",
80837            "name": "limit",
80838            "type": "integer",
80839            "uniqueItems": true
80840          },
80841          {
80842            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80843            "in": "query",
80844            "name": "resourceVersion",
80845            "type": "string",
80846            "uniqueItems": true
80847          },
80848          {
80849            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80850            "in": "query",
80851            "name": "resourceVersionMatch",
80852            "type": "string",
80853            "uniqueItems": true
80854          },
80855          {
80856            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80857            "in": "query",
80858            "name": "timeoutSeconds",
80859            "type": "integer",
80860            "uniqueItems": true
80861          },
80862          {
80863            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80864            "in": "query",
80865            "name": "watch",
80866            "type": "boolean",
80867            "uniqueItems": true
80868          }
80869        ],
80870        "produces": [
80871          "application/json",
80872          "application/yaml",
80873          "application/vnd.kubernetes.protobuf",
80874          "application/json;stream=watch",
80875          "application/vnd.kubernetes.protobuf;stream=watch"
80876        ],
80877        "responses": {
80878          "200": {
80879            "description": "OK",
80880            "schema": {
80881              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressList"
80882            }
80883          },
80884          "401": {
80885            "description": "Unauthorized"
80886          }
80887        },
80888        "schemes": [
80889          "https"
80890        ],
80891        "tags": [
80892          "networking_v1beta1"
80893        ],
80894        "x-kubernetes-action": "list",
80895        "x-kubernetes-group-version-kind": {
80896          "group": "networking.k8s.io",
80897          "kind": "Ingress",
80898          "version": "v1beta1"
80899        }
80900      },
80901      "parameters": [
80902        {
80903          "description": "object name and auth scope, such as for teams and projects",
80904          "in": "path",
80905          "name": "namespace",
80906          "required": true,
80907          "type": "string",
80908          "uniqueItems": true
80909        },
80910        {
80911          "description": "If 'true', then the output is pretty printed.",
80912          "in": "query",
80913          "name": "pretty",
80914          "type": "string",
80915          "uniqueItems": true
80916        }
80917      ],
80918      "post": {
80919        "consumes": [
80920          "*/*"
80921        ],
80922        "description": "create an Ingress",
80923        "operationId": "createNetworkingV1beta1NamespacedIngress",
80924        "parameters": [
80925          {
80926            "in": "body",
80927            "name": "body",
80928            "required": true,
80929            "schema": {
80930              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80931            }
80932          },
80933          {
80934            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80935            "in": "query",
80936            "name": "dryRun",
80937            "type": "string",
80938            "uniqueItems": true
80939          },
80940          {
80941            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80942            "in": "query",
80943            "name": "fieldManager",
80944            "type": "string",
80945            "uniqueItems": true
80946          }
80947        ],
80948        "produces": [
80949          "application/json",
80950          "application/yaml",
80951          "application/vnd.kubernetes.protobuf"
80952        ],
80953        "responses": {
80954          "200": {
80955            "description": "OK",
80956            "schema": {
80957              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80958            }
80959          },
80960          "201": {
80961            "description": "Created",
80962            "schema": {
80963              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80964            }
80965          },
80966          "202": {
80967            "description": "Accepted",
80968            "schema": {
80969              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80970            }
80971          },
80972          "401": {
80973            "description": "Unauthorized"
80974          }
80975        },
80976        "schemes": [
80977          "https"
80978        ],
80979        "tags": [
80980          "networking_v1beta1"
80981        ],
80982        "x-kubernetes-action": "post",
80983        "x-kubernetes-group-version-kind": {
80984          "group": "networking.k8s.io",
80985          "kind": "Ingress",
80986          "version": "v1beta1"
80987        }
80988      }
80989    },
80990    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}": {
80991      "delete": {
80992        "consumes": [
80993          "*/*"
80994        ],
80995        "description": "delete an Ingress",
80996        "operationId": "deleteNetworkingV1beta1NamespacedIngress",
80997        "parameters": [
80998          {
80999            "in": "body",
81000            "name": "body",
81001            "schema": {
81002              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
81003            }
81004          },
81005          {
81006            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81007            "in": "query",
81008            "name": "dryRun",
81009            "type": "string",
81010            "uniqueItems": true
81011          },
81012          {
81013            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
81014            "in": "query",
81015            "name": "gracePeriodSeconds",
81016            "type": "integer",
81017            "uniqueItems": true
81018          },
81019          {
81020            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
81021            "in": "query",
81022            "name": "orphanDependents",
81023            "type": "boolean",
81024            "uniqueItems": true
81025          },
81026          {
81027            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
81028            "in": "query",
81029            "name": "propagationPolicy",
81030            "type": "string",
81031            "uniqueItems": true
81032          }
81033        ],
81034        "produces": [
81035          "application/json",
81036          "application/yaml",
81037          "application/vnd.kubernetes.protobuf"
81038        ],
81039        "responses": {
81040          "200": {
81041            "description": "OK",
81042            "schema": {
81043              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
81044            }
81045          },
81046          "202": {
81047            "description": "Accepted",
81048            "schema": {
81049              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
81050            }
81051          },
81052          "401": {
81053            "description": "Unauthorized"
81054          }
81055        },
81056        "schemes": [
81057          "https"
81058        ],
81059        "tags": [
81060          "networking_v1beta1"
81061        ],
81062        "x-kubernetes-action": "delete",
81063        "x-kubernetes-group-version-kind": {
81064          "group": "networking.k8s.io",
81065          "kind": "Ingress",
81066          "version": "v1beta1"
81067        }
81068      },
81069      "get": {
81070        "consumes": [
81071          "*/*"
81072        ],
81073        "description": "read the specified Ingress",
81074        "operationId": "readNetworkingV1beta1NamespacedIngress",
81075        "produces": [
81076          "application/json",
81077          "application/yaml",
81078          "application/vnd.kubernetes.protobuf"
81079        ],
81080        "responses": {
81081          "200": {
81082            "description": "OK",
81083            "schema": {
81084              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81085            }
81086          },
81087          "401": {
81088            "description": "Unauthorized"
81089          }
81090        },
81091        "schemes": [
81092          "https"
81093        ],
81094        "tags": [
81095          "networking_v1beta1"
81096        ],
81097        "x-kubernetes-action": "get",
81098        "x-kubernetes-group-version-kind": {
81099          "group": "networking.k8s.io",
81100          "kind": "Ingress",
81101          "version": "v1beta1"
81102        }
81103      },
81104      "parameters": [
81105        {
81106          "description": "name of the Ingress",
81107          "in": "path",
81108          "name": "name",
81109          "required": true,
81110          "type": "string",
81111          "uniqueItems": true
81112        },
81113        {
81114          "description": "object name and auth scope, such as for teams and projects",
81115          "in": "path",
81116          "name": "namespace",
81117          "required": true,
81118          "type": "string",
81119          "uniqueItems": true
81120        },
81121        {
81122          "description": "If 'true', then the output is pretty printed.",
81123          "in": "query",
81124          "name": "pretty",
81125          "type": "string",
81126          "uniqueItems": true
81127        }
81128      ],
81129      "patch": {
81130        "consumes": [
81131          "application/json-patch+json",
81132          "application/merge-patch+json",
81133          "application/strategic-merge-patch+json",
81134          "application/apply-patch+yaml"
81135        ],
81136        "description": "partially update the specified Ingress",
81137        "operationId": "patchNetworkingV1beta1NamespacedIngress",
81138        "parameters": [
81139          {
81140            "in": "body",
81141            "name": "body",
81142            "required": true,
81143            "schema": {
81144              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
81145            }
81146          },
81147          {
81148            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81149            "in": "query",
81150            "name": "dryRun",
81151            "type": "string",
81152            "uniqueItems": true
81153          },
81154          {
81155            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
81156            "in": "query",
81157            "name": "fieldManager",
81158            "type": "string",
81159            "uniqueItems": true
81160          },
81161          {
81162            "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.",
81163            "in": "query",
81164            "name": "force",
81165            "type": "boolean",
81166            "uniqueItems": true
81167          }
81168        ],
81169        "produces": [
81170          "application/json",
81171          "application/yaml",
81172          "application/vnd.kubernetes.protobuf"
81173        ],
81174        "responses": {
81175          "200": {
81176            "description": "OK",
81177            "schema": {
81178              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81179            }
81180          },
81181          "401": {
81182            "description": "Unauthorized"
81183          }
81184        },
81185        "schemes": [
81186          "https"
81187        ],
81188        "tags": [
81189          "networking_v1beta1"
81190        ],
81191        "x-kubernetes-action": "patch",
81192        "x-kubernetes-group-version-kind": {
81193          "group": "networking.k8s.io",
81194          "kind": "Ingress",
81195          "version": "v1beta1"
81196        }
81197      },
81198      "put": {
81199        "consumes": [
81200          "*/*"
81201        ],
81202        "description": "replace the specified Ingress",
81203        "operationId": "replaceNetworkingV1beta1NamespacedIngress",
81204        "parameters": [
81205          {
81206            "in": "body",
81207            "name": "body",
81208            "required": true,
81209            "schema": {
81210              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81211            }
81212          },
81213          {
81214            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81215            "in": "query",
81216            "name": "dryRun",
81217            "type": "string",
81218            "uniqueItems": true
81219          },
81220          {
81221            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
81222            "in": "query",
81223            "name": "fieldManager",
81224            "type": "string",
81225            "uniqueItems": true
81226          }
81227        ],
81228        "produces": [
81229          "application/json",
81230          "application/yaml",
81231          "application/vnd.kubernetes.protobuf"
81232        ],
81233        "responses": {
81234          "200": {
81235            "description": "OK",
81236            "schema": {
81237              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81238            }
81239          },
81240          "201": {
81241            "description": "Created",
81242            "schema": {
81243              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81244            }
81245          },
81246          "401": {
81247            "description": "Unauthorized"
81248          }
81249        },
81250        "schemes": [
81251          "https"
81252        ],
81253        "tags": [
81254          "networking_v1beta1"
81255        ],
81256        "x-kubernetes-action": "put",
81257        "x-kubernetes-group-version-kind": {
81258          "group": "networking.k8s.io",
81259          "kind": "Ingress",
81260          "version": "v1beta1"
81261        }
81262      }
81263    },
81264    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status": {
81265      "get": {
81266        "consumes": [
81267          "*/*"
81268        ],
81269        "description": "read status of the specified Ingress",
81270        "operationId": "readNetworkingV1beta1NamespacedIngressStatus",
81271        "produces": [
81272          "application/json",
81273          "application/yaml",
81274          "application/vnd.kubernetes.protobuf"
81275        ],
81276        "responses": {
81277          "200": {
81278            "description": "OK",
81279            "schema": {
81280              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81281            }
81282          },
81283          "401": {
81284            "description": "Unauthorized"
81285          }
81286        },
81287        "schemes": [
81288          "https"
81289        ],
81290        "tags": [
81291          "networking_v1beta1"
81292        ],
81293        "x-kubernetes-action": "get",
81294        "x-kubernetes-group-version-kind": {
81295          "group": "networking.k8s.io",
81296          "kind": "Ingress",
81297          "version": "v1beta1"
81298        }
81299      },
81300      "parameters": [
81301        {
81302          "description": "name of the Ingress",
81303          "in": "path",
81304          "name": "name",
81305          "required": true,
81306          "type": "string",
81307          "uniqueItems": true
81308        },
81309        {
81310          "description": "object name and auth scope, such as for teams and projects",
81311          "in": "path",
81312          "name": "namespace",
81313          "required": true,
81314          "type": "string",
81315          "uniqueItems": true
81316        },
81317        {
81318          "description": "If 'true', then the output is pretty printed.",
81319          "in": "query",
81320          "name": "pretty",
81321          "type": "string",
81322          "uniqueItems": true
81323        }
81324      ],
81325      "patch": {
81326        "consumes": [
81327          "application/json-patch+json",
81328          "application/merge-patch+json",
81329          "application/strategic-merge-patch+json",
81330          "application/apply-patch+yaml"
81331        ],
81332        "description": "partially update status of the specified Ingress",
81333        "operationId": "patchNetworkingV1beta1NamespacedIngressStatus",
81334        "parameters": [
81335          {
81336            "in": "body",
81337            "name": "body",
81338            "required": true,
81339            "schema": {
81340              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
81341            }
81342          },
81343          {
81344            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81345            "in": "query",
81346            "name": "dryRun",
81347            "type": "string",
81348            "uniqueItems": true
81349          },
81350          {
81351            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
81352            "in": "query",
81353            "name": "fieldManager",
81354            "type": "string",
81355            "uniqueItems": true
81356          },
81357          {
81358            "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.",
81359            "in": "query",
81360            "name": "force",
81361            "type": "boolean",
81362            "uniqueItems": true
81363          }
81364        ],
81365        "produces": [
81366          "application/json",
81367          "application/yaml",
81368          "application/vnd.kubernetes.protobuf"
81369        ],
81370        "responses": {
81371          "200": {
81372            "description": "OK",
81373            "schema": {
81374              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81375            }
81376          },
81377          "401": {
81378            "description": "Unauthorized"
81379          }
81380        },
81381        "schemes": [
81382          "https"
81383        ],
81384        "tags": [
81385          "networking_v1beta1"
81386        ],
81387        "x-kubernetes-action": "patch",
81388        "x-kubernetes-group-version-kind": {
81389          "group": "networking.k8s.io",
81390          "kind": "Ingress",
81391          "version": "v1beta1"
81392        }
81393      },
81394      "put": {
81395        "consumes": [
81396          "*/*"
81397        ],
81398        "description": "replace status of the specified Ingress",
81399        "operationId": "replaceNetworkingV1beta1NamespacedIngressStatus",
81400        "parameters": [
81401          {
81402            "in": "body",
81403            "name": "body",
81404            "required": true,
81405            "schema": {
81406              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81407            }
81408          },
81409          {
81410            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81411            "in": "query",
81412            "name": "dryRun",
81413            "type": "string",
81414            "uniqueItems": true
81415          },
81416          {
81417            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
81418            "in": "query",
81419            "name": "fieldManager",
81420            "type": "string",
81421            "uniqueItems": true
81422          }
81423        ],
81424        "produces": [
81425          "application/json",
81426          "application/yaml",
81427          "application/vnd.kubernetes.protobuf"
81428        ],
81429        "responses": {
81430          "200": {
81431            "description": "OK",
81432            "schema": {
81433              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81434            }
81435          },
81436          "201": {
81437            "description": "Created",
81438            "schema": {
81439              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81440            }
81441          },
81442          "401": {
81443            "description": "Unauthorized"
81444          }
81445        },
81446        "schemes": [
81447          "https"
81448        ],
81449        "tags": [
81450          "networking_v1beta1"
81451        ],
81452        "x-kubernetes-action": "put",
81453        "x-kubernetes-group-version-kind": {
81454          "group": "networking.k8s.io",
81455          "kind": "Ingress",
81456          "version": "v1beta1"
81457        }
81458      }
81459    },
81460    "/apis/networking.k8s.io/v1beta1/watch/ingressclasses": {
81461      "get": {
81462        "consumes": [
81463          "*/*"
81464        ],
81465        "description": "watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead.",
81466        "operationId": "watchNetworkingV1beta1IngressClassList",
81467        "produces": [
81468          "application/json",
81469          "application/yaml",
81470          "application/vnd.kubernetes.protobuf",
81471          "application/json;stream=watch",
81472          "application/vnd.kubernetes.protobuf;stream=watch"
81473        ],
81474        "responses": {
81475          "200": {
81476            "description": "OK",
81477            "schema": {
81478              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81479            }
81480          },
81481          "401": {
81482            "description": "Unauthorized"
81483          }
81484        },
81485        "schemes": [
81486          "https"
81487        ],
81488        "tags": [
81489          "networking_v1beta1"
81490        ],
81491        "x-kubernetes-action": "watchlist",
81492        "x-kubernetes-group-version-kind": {
81493          "group": "networking.k8s.io",
81494          "kind": "IngressClass",
81495          "version": "v1beta1"
81496        }
81497      },
81498      "parameters": [
81499        {
81500          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81501          "in": "query",
81502          "name": "allowWatchBookmarks",
81503          "type": "boolean",
81504          "uniqueItems": true
81505        },
81506        {
81507          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81508          "in": "query",
81509          "name": "continue",
81510          "type": "string",
81511          "uniqueItems": true
81512        },
81513        {
81514          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81515          "in": "query",
81516          "name": "fieldSelector",
81517          "type": "string",
81518          "uniqueItems": true
81519        },
81520        {
81521          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81522          "in": "query",
81523          "name": "labelSelector",
81524          "type": "string",
81525          "uniqueItems": true
81526        },
81527        {
81528          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81529          "in": "query",
81530          "name": "limit",
81531          "type": "integer",
81532          "uniqueItems": true
81533        },
81534        {
81535          "description": "If 'true', then the output is pretty printed.",
81536          "in": "query",
81537          "name": "pretty",
81538          "type": "string",
81539          "uniqueItems": true
81540        },
81541        {
81542          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81543          "in": "query",
81544          "name": "resourceVersion",
81545          "type": "string",
81546          "uniqueItems": true
81547        },
81548        {
81549          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81550          "in": "query",
81551          "name": "resourceVersionMatch",
81552          "type": "string",
81553          "uniqueItems": true
81554        },
81555        {
81556          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81557          "in": "query",
81558          "name": "timeoutSeconds",
81559          "type": "integer",
81560          "uniqueItems": true
81561        },
81562        {
81563          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81564          "in": "query",
81565          "name": "watch",
81566          "type": "boolean",
81567          "uniqueItems": true
81568        }
81569      ]
81570    },
81571    "/apis/networking.k8s.io/v1beta1/watch/ingressclasses/{name}": {
81572      "get": {
81573        "consumes": [
81574          "*/*"
81575        ],
81576        "description": "watch changes to an object of kind IngressClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
81577        "operationId": "watchNetworkingV1beta1IngressClass",
81578        "produces": [
81579          "application/json",
81580          "application/yaml",
81581          "application/vnd.kubernetes.protobuf",
81582          "application/json;stream=watch",
81583          "application/vnd.kubernetes.protobuf;stream=watch"
81584        ],
81585        "responses": {
81586          "200": {
81587            "description": "OK",
81588            "schema": {
81589              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81590            }
81591          },
81592          "401": {
81593            "description": "Unauthorized"
81594          }
81595        },
81596        "schemes": [
81597          "https"
81598        ],
81599        "tags": [
81600          "networking_v1beta1"
81601        ],
81602        "x-kubernetes-action": "watch",
81603        "x-kubernetes-group-version-kind": {
81604          "group": "networking.k8s.io",
81605          "kind": "IngressClass",
81606          "version": "v1beta1"
81607        }
81608      },
81609      "parameters": [
81610        {
81611          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81612          "in": "query",
81613          "name": "allowWatchBookmarks",
81614          "type": "boolean",
81615          "uniqueItems": true
81616        },
81617        {
81618          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81619          "in": "query",
81620          "name": "continue",
81621          "type": "string",
81622          "uniqueItems": true
81623        },
81624        {
81625          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81626          "in": "query",
81627          "name": "fieldSelector",
81628          "type": "string",
81629          "uniqueItems": true
81630        },
81631        {
81632          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81633          "in": "query",
81634          "name": "labelSelector",
81635          "type": "string",
81636          "uniqueItems": true
81637        },
81638        {
81639          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81640          "in": "query",
81641          "name": "limit",
81642          "type": "integer",
81643          "uniqueItems": true
81644        },
81645        {
81646          "description": "name of the IngressClass",
81647          "in": "path",
81648          "name": "name",
81649          "required": true,
81650          "type": "string",
81651          "uniqueItems": true
81652        },
81653        {
81654          "description": "If 'true', then the output is pretty printed.",
81655          "in": "query",
81656          "name": "pretty",
81657          "type": "string",
81658          "uniqueItems": true
81659        },
81660        {
81661          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81662          "in": "query",
81663          "name": "resourceVersion",
81664          "type": "string",
81665          "uniqueItems": true
81666        },
81667        {
81668          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81669          "in": "query",
81670          "name": "resourceVersionMatch",
81671          "type": "string",
81672          "uniqueItems": true
81673        },
81674        {
81675          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81676          "in": "query",
81677          "name": "timeoutSeconds",
81678          "type": "integer",
81679          "uniqueItems": true
81680        },
81681        {
81682          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81683          "in": "query",
81684          "name": "watch",
81685          "type": "boolean",
81686          "uniqueItems": true
81687        }
81688      ]
81689    },
81690    "/apis/networking.k8s.io/v1beta1/watch/ingresses": {
81691      "get": {
81692        "consumes": [
81693          "*/*"
81694        ],
81695        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
81696        "operationId": "watchNetworkingV1beta1IngressListForAllNamespaces",
81697        "produces": [
81698          "application/json",
81699          "application/yaml",
81700          "application/vnd.kubernetes.protobuf",
81701          "application/json;stream=watch",
81702          "application/vnd.kubernetes.protobuf;stream=watch"
81703        ],
81704        "responses": {
81705          "200": {
81706            "description": "OK",
81707            "schema": {
81708              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81709            }
81710          },
81711          "401": {
81712            "description": "Unauthorized"
81713          }
81714        },
81715        "schemes": [
81716          "https"
81717        ],
81718        "tags": [
81719          "networking_v1beta1"
81720        ],
81721        "x-kubernetes-action": "watchlist",
81722        "x-kubernetes-group-version-kind": {
81723          "group": "networking.k8s.io",
81724          "kind": "Ingress",
81725          "version": "v1beta1"
81726        }
81727      },
81728      "parameters": [
81729        {
81730          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81731          "in": "query",
81732          "name": "allowWatchBookmarks",
81733          "type": "boolean",
81734          "uniqueItems": true
81735        },
81736        {
81737          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81738          "in": "query",
81739          "name": "continue",
81740          "type": "string",
81741          "uniqueItems": true
81742        },
81743        {
81744          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81745          "in": "query",
81746          "name": "fieldSelector",
81747          "type": "string",
81748          "uniqueItems": true
81749        },
81750        {
81751          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81752          "in": "query",
81753          "name": "labelSelector",
81754          "type": "string",
81755          "uniqueItems": true
81756        },
81757        {
81758          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81759          "in": "query",
81760          "name": "limit",
81761          "type": "integer",
81762          "uniqueItems": true
81763        },
81764        {
81765          "description": "If 'true', then the output is pretty printed.",
81766          "in": "query",
81767          "name": "pretty",
81768          "type": "string",
81769          "uniqueItems": true
81770        },
81771        {
81772          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81773          "in": "query",
81774          "name": "resourceVersion",
81775          "type": "string",
81776          "uniqueItems": true
81777        },
81778        {
81779          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81780          "in": "query",
81781          "name": "resourceVersionMatch",
81782          "type": "string",
81783          "uniqueItems": true
81784        },
81785        {
81786          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81787          "in": "query",
81788          "name": "timeoutSeconds",
81789          "type": "integer",
81790          "uniqueItems": true
81791        },
81792        {
81793          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81794          "in": "query",
81795          "name": "watch",
81796          "type": "boolean",
81797          "uniqueItems": true
81798        }
81799      ]
81800    },
81801    "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses": {
81802      "get": {
81803        "consumes": [
81804          "*/*"
81805        ],
81806        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
81807        "operationId": "watchNetworkingV1beta1NamespacedIngressList",
81808        "produces": [
81809          "application/json",
81810          "application/yaml",
81811          "application/vnd.kubernetes.protobuf",
81812          "application/json;stream=watch",
81813          "application/vnd.kubernetes.protobuf;stream=watch"
81814        ],
81815        "responses": {
81816          "200": {
81817            "description": "OK",
81818            "schema": {
81819              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81820            }
81821          },
81822          "401": {
81823            "description": "Unauthorized"
81824          }
81825        },
81826        "schemes": [
81827          "https"
81828        ],
81829        "tags": [
81830          "networking_v1beta1"
81831        ],
81832        "x-kubernetes-action": "watchlist",
81833        "x-kubernetes-group-version-kind": {
81834          "group": "networking.k8s.io",
81835          "kind": "Ingress",
81836          "version": "v1beta1"
81837        }
81838      },
81839      "parameters": [
81840        {
81841          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81842          "in": "query",
81843          "name": "allowWatchBookmarks",
81844          "type": "boolean",
81845          "uniqueItems": true
81846        },
81847        {
81848          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81849          "in": "query",
81850          "name": "continue",
81851          "type": "string",
81852          "uniqueItems": true
81853        },
81854        {
81855          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81856          "in": "query",
81857          "name": "fieldSelector",
81858          "type": "string",
81859          "uniqueItems": true
81860        },
81861        {
81862          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81863          "in": "query",
81864          "name": "labelSelector",
81865          "type": "string",
81866          "uniqueItems": true
81867        },
81868        {
81869          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81870          "in": "query",
81871          "name": "limit",
81872          "type": "integer",
81873          "uniqueItems": true
81874        },
81875        {
81876          "description": "object name and auth scope, such as for teams and projects",
81877          "in": "path",
81878          "name": "namespace",
81879          "required": true,
81880          "type": "string",
81881          "uniqueItems": true
81882        },
81883        {
81884          "description": "If 'true', then the output is pretty printed.",
81885          "in": "query",
81886          "name": "pretty",
81887          "type": "string",
81888          "uniqueItems": true
81889        },
81890        {
81891          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81892          "in": "query",
81893          "name": "resourceVersion",
81894          "type": "string",
81895          "uniqueItems": true
81896        },
81897        {
81898          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81899          "in": "query",
81900          "name": "resourceVersionMatch",
81901          "type": "string",
81902          "uniqueItems": true
81903        },
81904        {
81905          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81906          "in": "query",
81907          "name": "timeoutSeconds",
81908          "type": "integer",
81909          "uniqueItems": true
81910        },
81911        {
81912          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81913          "in": "query",
81914          "name": "watch",
81915          "type": "boolean",
81916          "uniqueItems": true
81917        }
81918      ]
81919    },
81920    "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": {
81921      "get": {
81922        "consumes": [
81923          "*/*"
81924        ],
81925        "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.",
81926        "operationId": "watchNetworkingV1beta1NamespacedIngress",
81927        "produces": [
81928          "application/json",
81929          "application/yaml",
81930          "application/vnd.kubernetes.protobuf",
81931          "application/json;stream=watch",
81932          "application/vnd.kubernetes.protobuf;stream=watch"
81933        ],
81934        "responses": {
81935          "200": {
81936            "description": "OK",
81937            "schema": {
81938              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81939            }
81940          },
81941          "401": {
81942            "description": "Unauthorized"
81943          }
81944        },
81945        "schemes": [
81946          "https"
81947        ],
81948        "tags": [
81949          "networking_v1beta1"
81950        ],
81951        "x-kubernetes-action": "watch",
81952        "x-kubernetes-group-version-kind": {
81953          "group": "networking.k8s.io",
81954          "kind": "Ingress",
81955          "version": "v1beta1"
81956        }
81957      },
81958      "parameters": [
81959        {
81960          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81961          "in": "query",
81962          "name": "allowWatchBookmarks",
81963          "type": "boolean",
81964          "uniqueItems": true
81965        },
81966        {
81967          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81968          "in": "query",
81969          "name": "continue",
81970          "type": "string",
81971          "uniqueItems": true
81972        },
81973        {
81974          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81975          "in": "query",
81976          "name": "fieldSelector",
81977          "type": "string",
81978          "uniqueItems": true
81979        },
81980        {
81981          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81982          "in": "query",
81983          "name": "labelSelector",
81984          "type": "string",
81985          "uniqueItems": true
81986        },
81987        {
81988          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81989          "in": "query",
81990          "name": "limit",
81991          "type": "integer",
81992          "uniqueItems": true
81993        },
81994        {
81995          "description": "name of the Ingress",
81996          "in": "path",
81997          "name": "name",
81998          "required": true,
81999          "type": "string",
82000          "uniqueItems": true
82001        },
82002        {
82003          "description": "object name and auth scope, such as for teams and projects",
82004          "in": "path",
82005          "name": "namespace",
82006          "required": true,
82007          "type": "string",
82008          "uniqueItems": true
82009        },
82010        {
82011          "description": "If 'true', then the output is pretty printed.",
82012          "in": "query",
82013          "name": "pretty",
82014          "type": "string",
82015          "uniqueItems": true
82016        },
82017        {
82018          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82019          "in": "query",
82020          "name": "resourceVersion",
82021          "type": "string",
82022          "uniqueItems": true
82023        },
82024        {
82025          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82026          "in": "query",
82027          "name": "resourceVersionMatch",
82028          "type": "string",
82029          "uniqueItems": true
82030        },
82031        {
82032          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82033          "in": "query",
82034          "name": "timeoutSeconds",
82035          "type": "integer",
82036          "uniqueItems": true
82037        },
82038        {
82039          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82040          "in": "query",
82041          "name": "watch",
82042          "type": "boolean",
82043          "uniqueItems": true
82044        }
82045      ]
82046    },
82047    "/apis/node.k8s.io/": {
82048      "get": {
82049        "consumes": [
82050          "application/json",
82051          "application/yaml",
82052          "application/vnd.kubernetes.protobuf"
82053        ],
82054        "description": "get information of a group",
82055        "operationId": "getNodeAPIGroup",
82056        "produces": [
82057          "application/json",
82058          "application/yaml",
82059          "application/vnd.kubernetes.protobuf"
82060        ],
82061        "responses": {
82062          "200": {
82063            "description": "OK",
82064            "schema": {
82065              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
82066            }
82067          },
82068          "401": {
82069            "description": "Unauthorized"
82070          }
82071        },
82072        "schemes": [
82073          "https"
82074        ],
82075        "tags": [
82076          "node"
82077        ]
82078      }
82079    },
82080    "/apis/node.k8s.io/v1/": {
82081      "get": {
82082        "consumes": [
82083          "application/json",
82084          "application/yaml",
82085          "application/vnd.kubernetes.protobuf"
82086        ],
82087        "description": "get available resources",
82088        "operationId": "getNodeV1APIResources",
82089        "produces": [
82090          "application/json",
82091          "application/yaml",
82092          "application/vnd.kubernetes.protobuf"
82093        ],
82094        "responses": {
82095          "200": {
82096            "description": "OK",
82097            "schema": {
82098              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
82099            }
82100          },
82101          "401": {
82102            "description": "Unauthorized"
82103          }
82104        },
82105        "schemes": [
82106          "https"
82107        ],
82108        "tags": [
82109          "node_v1"
82110        ]
82111      }
82112    },
82113    "/apis/node.k8s.io/v1/runtimeclasses": {
82114      "delete": {
82115        "consumes": [
82116          "*/*"
82117        ],
82118        "description": "delete collection of RuntimeClass",
82119        "operationId": "deleteNodeV1CollectionRuntimeClass",
82120        "parameters": [
82121          {
82122            "in": "body",
82123            "name": "body",
82124            "schema": {
82125              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82126            }
82127          },
82128          {
82129            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82130            "in": "query",
82131            "name": "continue",
82132            "type": "string",
82133            "uniqueItems": true
82134          },
82135          {
82136            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82137            "in": "query",
82138            "name": "dryRun",
82139            "type": "string",
82140            "uniqueItems": true
82141          },
82142          {
82143            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82144            "in": "query",
82145            "name": "fieldSelector",
82146            "type": "string",
82147            "uniqueItems": true
82148          },
82149          {
82150            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82151            "in": "query",
82152            "name": "gracePeriodSeconds",
82153            "type": "integer",
82154            "uniqueItems": true
82155          },
82156          {
82157            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82158            "in": "query",
82159            "name": "labelSelector",
82160            "type": "string",
82161            "uniqueItems": true
82162          },
82163          {
82164            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82165            "in": "query",
82166            "name": "limit",
82167            "type": "integer",
82168            "uniqueItems": true
82169          },
82170          {
82171            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82172            "in": "query",
82173            "name": "orphanDependents",
82174            "type": "boolean",
82175            "uniqueItems": true
82176          },
82177          {
82178            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82179            "in": "query",
82180            "name": "propagationPolicy",
82181            "type": "string",
82182            "uniqueItems": true
82183          },
82184          {
82185            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82186            "in": "query",
82187            "name": "resourceVersion",
82188            "type": "string",
82189            "uniqueItems": true
82190          },
82191          {
82192            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82193            "in": "query",
82194            "name": "resourceVersionMatch",
82195            "type": "string",
82196            "uniqueItems": true
82197          },
82198          {
82199            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82200            "in": "query",
82201            "name": "timeoutSeconds",
82202            "type": "integer",
82203            "uniqueItems": true
82204          }
82205        ],
82206        "produces": [
82207          "application/json",
82208          "application/yaml",
82209          "application/vnd.kubernetes.protobuf"
82210        ],
82211        "responses": {
82212          "200": {
82213            "description": "OK",
82214            "schema": {
82215              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82216            }
82217          },
82218          "401": {
82219            "description": "Unauthorized"
82220          }
82221        },
82222        "schemes": [
82223          "https"
82224        ],
82225        "tags": [
82226          "node_v1"
82227        ],
82228        "x-kubernetes-action": "deletecollection",
82229        "x-kubernetes-group-version-kind": {
82230          "group": "node.k8s.io",
82231          "kind": "RuntimeClass",
82232          "version": "v1"
82233        }
82234      },
82235      "get": {
82236        "consumes": [
82237          "*/*"
82238        ],
82239        "description": "list or watch objects of kind RuntimeClass",
82240        "operationId": "listNodeV1RuntimeClass",
82241        "parameters": [
82242          {
82243            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
82244            "in": "query",
82245            "name": "allowWatchBookmarks",
82246            "type": "boolean",
82247            "uniqueItems": true
82248          },
82249          {
82250            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82251            "in": "query",
82252            "name": "continue",
82253            "type": "string",
82254            "uniqueItems": true
82255          },
82256          {
82257            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82258            "in": "query",
82259            "name": "fieldSelector",
82260            "type": "string",
82261            "uniqueItems": true
82262          },
82263          {
82264            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82265            "in": "query",
82266            "name": "labelSelector",
82267            "type": "string",
82268            "uniqueItems": true
82269          },
82270          {
82271            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82272            "in": "query",
82273            "name": "limit",
82274            "type": "integer",
82275            "uniqueItems": true
82276          },
82277          {
82278            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82279            "in": "query",
82280            "name": "resourceVersion",
82281            "type": "string",
82282            "uniqueItems": true
82283          },
82284          {
82285            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82286            "in": "query",
82287            "name": "resourceVersionMatch",
82288            "type": "string",
82289            "uniqueItems": true
82290          },
82291          {
82292            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82293            "in": "query",
82294            "name": "timeoutSeconds",
82295            "type": "integer",
82296            "uniqueItems": true
82297          },
82298          {
82299            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82300            "in": "query",
82301            "name": "watch",
82302            "type": "boolean",
82303            "uniqueItems": true
82304          }
82305        ],
82306        "produces": [
82307          "application/json",
82308          "application/yaml",
82309          "application/vnd.kubernetes.protobuf",
82310          "application/json;stream=watch",
82311          "application/vnd.kubernetes.protobuf;stream=watch"
82312        ],
82313        "responses": {
82314          "200": {
82315            "description": "OK",
82316            "schema": {
82317              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClassList"
82318            }
82319          },
82320          "401": {
82321            "description": "Unauthorized"
82322          }
82323        },
82324        "schemes": [
82325          "https"
82326        ],
82327        "tags": [
82328          "node_v1"
82329        ],
82330        "x-kubernetes-action": "list",
82331        "x-kubernetes-group-version-kind": {
82332          "group": "node.k8s.io",
82333          "kind": "RuntimeClass",
82334          "version": "v1"
82335        }
82336      },
82337      "parameters": [
82338        {
82339          "description": "If 'true', then the output is pretty printed.",
82340          "in": "query",
82341          "name": "pretty",
82342          "type": "string",
82343          "uniqueItems": true
82344        }
82345      ],
82346      "post": {
82347        "consumes": [
82348          "*/*"
82349        ],
82350        "description": "create a RuntimeClass",
82351        "operationId": "createNodeV1RuntimeClass",
82352        "parameters": [
82353          {
82354            "in": "body",
82355            "name": "body",
82356            "required": true,
82357            "schema": {
82358              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82359            }
82360          },
82361          {
82362            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82363            "in": "query",
82364            "name": "dryRun",
82365            "type": "string",
82366            "uniqueItems": true
82367          },
82368          {
82369            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
82370            "in": "query",
82371            "name": "fieldManager",
82372            "type": "string",
82373            "uniqueItems": true
82374          }
82375        ],
82376        "produces": [
82377          "application/json",
82378          "application/yaml",
82379          "application/vnd.kubernetes.protobuf"
82380        ],
82381        "responses": {
82382          "200": {
82383            "description": "OK",
82384            "schema": {
82385              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82386            }
82387          },
82388          "201": {
82389            "description": "Created",
82390            "schema": {
82391              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82392            }
82393          },
82394          "202": {
82395            "description": "Accepted",
82396            "schema": {
82397              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82398            }
82399          },
82400          "401": {
82401            "description": "Unauthorized"
82402          }
82403        },
82404        "schemes": [
82405          "https"
82406        ],
82407        "tags": [
82408          "node_v1"
82409        ],
82410        "x-kubernetes-action": "post",
82411        "x-kubernetes-group-version-kind": {
82412          "group": "node.k8s.io",
82413          "kind": "RuntimeClass",
82414          "version": "v1"
82415        }
82416      }
82417    },
82418    "/apis/node.k8s.io/v1/runtimeclasses/{name}": {
82419      "delete": {
82420        "consumes": [
82421          "*/*"
82422        ],
82423        "description": "delete a RuntimeClass",
82424        "operationId": "deleteNodeV1RuntimeClass",
82425        "parameters": [
82426          {
82427            "in": "body",
82428            "name": "body",
82429            "schema": {
82430              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82431            }
82432          },
82433          {
82434            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82435            "in": "query",
82436            "name": "dryRun",
82437            "type": "string",
82438            "uniqueItems": true
82439          },
82440          {
82441            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82442            "in": "query",
82443            "name": "gracePeriodSeconds",
82444            "type": "integer",
82445            "uniqueItems": true
82446          },
82447          {
82448            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82449            "in": "query",
82450            "name": "orphanDependents",
82451            "type": "boolean",
82452            "uniqueItems": true
82453          },
82454          {
82455            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82456            "in": "query",
82457            "name": "propagationPolicy",
82458            "type": "string",
82459            "uniqueItems": true
82460          }
82461        ],
82462        "produces": [
82463          "application/json",
82464          "application/yaml",
82465          "application/vnd.kubernetes.protobuf"
82466        ],
82467        "responses": {
82468          "200": {
82469            "description": "OK",
82470            "schema": {
82471              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82472            }
82473          },
82474          "202": {
82475            "description": "Accepted",
82476            "schema": {
82477              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82478            }
82479          },
82480          "401": {
82481            "description": "Unauthorized"
82482          }
82483        },
82484        "schemes": [
82485          "https"
82486        ],
82487        "tags": [
82488          "node_v1"
82489        ],
82490        "x-kubernetes-action": "delete",
82491        "x-kubernetes-group-version-kind": {
82492          "group": "node.k8s.io",
82493          "kind": "RuntimeClass",
82494          "version": "v1"
82495        }
82496      },
82497      "get": {
82498        "consumes": [
82499          "*/*"
82500        ],
82501        "description": "read the specified RuntimeClass",
82502        "operationId": "readNodeV1RuntimeClass",
82503        "produces": [
82504          "application/json",
82505          "application/yaml",
82506          "application/vnd.kubernetes.protobuf"
82507        ],
82508        "responses": {
82509          "200": {
82510            "description": "OK",
82511            "schema": {
82512              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82513            }
82514          },
82515          "401": {
82516            "description": "Unauthorized"
82517          }
82518        },
82519        "schemes": [
82520          "https"
82521        ],
82522        "tags": [
82523          "node_v1"
82524        ],
82525        "x-kubernetes-action": "get",
82526        "x-kubernetes-group-version-kind": {
82527          "group": "node.k8s.io",
82528          "kind": "RuntimeClass",
82529          "version": "v1"
82530        }
82531      },
82532      "parameters": [
82533        {
82534          "description": "name of the RuntimeClass",
82535          "in": "path",
82536          "name": "name",
82537          "required": true,
82538          "type": "string",
82539          "uniqueItems": true
82540        },
82541        {
82542          "description": "If 'true', then the output is pretty printed.",
82543          "in": "query",
82544          "name": "pretty",
82545          "type": "string",
82546          "uniqueItems": true
82547        }
82548      ],
82549      "patch": {
82550        "consumes": [
82551          "application/json-patch+json",
82552          "application/merge-patch+json",
82553          "application/strategic-merge-patch+json",
82554          "application/apply-patch+yaml"
82555        ],
82556        "description": "partially update the specified RuntimeClass",
82557        "operationId": "patchNodeV1RuntimeClass",
82558        "parameters": [
82559          {
82560            "in": "body",
82561            "name": "body",
82562            "required": true,
82563            "schema": {
82564              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
82565            }
82566          },
82567          {
82568            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82569            "in": "query",
82570            "name": "dryRun",
82571            "type": "string",
82572            "uniqueItems": true
82573          },
82574          {
82575            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
82576            "in": "query",
82577            "name": "fieldManager",
82578            "type": "string",
82579            "uniqueItems": true
82580          },
82581          {
82582            "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.",
82583            "in": "query",
82584            "name": "force",
82585            "type": "boolean",
82586            "uniqueItems": true
82587          }
82588        ],
82589        "produces": [
82590          "application/json",
82591          "application/yaml",
82592          "application/vnd.kubernetes.protobuf"
82593        ],
82594        "responses": {
82595          "200": {
82596            "description": "OK",
82597            "schema": {
82598              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82599            }
82600          },
82601          "401": {
82602            "description": "Unauthorized"
82603          }
82604        },
82605        "schemes": [
82606          "https"
82607        ],
82608        "tags": [
82609          "node_v1"
82610        ],
82611        "x-kubernetes-action": "patch",
82612        "x-kubernetes-group-version-kind": {
82613          "group": "node.k8s.io",
82614          "kind": "RuntimeClass",
82615          "version": "v1"
82616        }
82617      },
82618      "put": {
82619        "consumes": [
82620          "*/*"
82621        ],
82622        "description": "replace the specified RuntimeClass",
82623        "operationId": "replaceNodeV1RuntimeClass",
82624        "parameters": [
82625          {
82626            "in": "body",
82627            "name": "body",
82628            "required": true,
82629            "schema": {
82630              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82631            }
82632          },
82633          {
82634            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82635            "in": "query",
82636            "name": "dryRun",
82637            "type": "string",
82638            "uniqueItems": true
82639          },
82640          {
82641            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
82642            "in": "query",
82643            "name": "fieldManager",
82644            "type": "string",
82645            "uniqueItems": true
82646          }
82647        ],
82648        "produces": [
82649          "application/json",
82650          "application/yaml",
82651          "application/vnd.kubernetes.protobuf"
82652        ],
82653        "responses": {
82654          "200": {
82655            "description": "OK",
82656            "schema": {
82657              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82658            }
82659          },
82660          "201": {
82661            "description": "Created",
82662            "schema": {
82663              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82664            }
82665          },
82666          "401": {
82667            "description": "Unauthorized"
82668          }
82669        },
82670        "schemes": [
82671          "https"
82672        ],
82673        "tags": [
82674          "node_v1"
82675        ],
82676        "x-kubernetes-action": "put",
82677        "x-kubernetes-group-version-kind": {
82678          "group": "node.k8s.io",
82679          "kind": "RuntimeClass",
82680          "version": "v1"
82681        }
82682      }
82683    },
82684    "/apis/node.k8s.io/v1/watch/runtimeclasses": {
82685      "get": {
82686        "consumes": [
82687          "*/*"
82688        ],
82689        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
82690        "operationId": "watchNodeV1RuntimeClassList",
82691        "produces": [
82692          "application/json",
82693          "application/yaml",
82694          "application/vnd.kubernetes.protobuf",
82695          "application/json;stream=watch",
82696          "application/vnd.kubernetes.protobuf;stream=watch"
82697        ],
82698        "responses": {
82699          "200": {
82700            "description": "OK",
82701            "schema": {
82702              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82703            }
82704          },
82705          "401": {
82706            "description": "Unauthorized"
82707          }
82708        },
82709        "schemes": [
82710          "https"
82711        ],
82712        "tags": [
82713          "node_v1"
82714        ],
82715        "x-kubernetes-action": "watchlist",
82716        "x-kubernetes-group-version-kind": {
82717          "group": "node.k8s.io",
82718          "kind": "RuntimeClass",
82719          "version": "v1"
82720        }
82721      },
82722      "parameters": [
82723        {
82724          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
82725          "in": "query",
82726          "name": "allowWatchBookmarks",
82727          "type": "boolean",
82728          "uniqueItems": true
82729        },
82730        {
82731          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82732          "in": "query",
82733          "name": "continue",
82734          "type": "string",
82735          "uniqueItems": true
82736        },
82737        {
82738          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82739          "in": "query",
82740          "name": "fieldSelector",
82741          "type": "string",
82742          "uniqueItems": true
82743        },
82744        {
82745          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82746          "in": "query",
82747          "name": "labelSelector",
82748          "type": "string",
82749          "uniqueItems": true
82750        },
82751        {
82752          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82753          "in": "query",
82754          "name": "limit",
82755          "type": "integer",
82756          "uniqueItems": true
82757        },
82758        {
82759          "description": "If 'true', then the output is pretty printed.",
82760          "in": "query",
82761          "name": "pretty",
82762          "type": "string",
82763          "uniqueItems": true
82764        },
82765        {
82766          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82767          "in": "query",
82768          "name": "resourceVersion",
82769          "type": "string",
82770          "uniqueItems": true
82771        },
82772        {
82773          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82774          "in": "query",
82775          "name": "resourceVersionMatch",
82776          "type": "string",
82777          "uniqueItems": true
82778        },
82779        {
82780          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82781          "in": "query",
82782          "name": "timeoutSeconds",
82783          "type": "integer",
82784          "uniqueItems": true
82785        },
82786        {
82787          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82788          "in": "query",
82789          "name": "watch",
82790          "type": "boolean",
82791          "uniqueItems": true
82792        }
82793      ]
82794    },
82795    "/apis/node.k8s.io/v1/watch/runtimeclasses/{name}": {
82796      "get": {
82797        "consumes": [
82798          "*/*"
82799        ],
82800        "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.",
82801        "operationId": "watchNodeV1RuntimeClass",
82802        "produces": [
82803          "application/json",
82804          "application/yaml",
82805          "application/vnd.kubernetes.protobuf",
82806          "application/json;stream=watch",
82807          "application/vnd.kubernetes.protobuf;stream=watch"
82808        ],
82809        "responses": {
82810          "200": {
82811            "description": "OK",
82812            "schema": {
82813              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82814            }
82815          },
82816          "401": {
82817            "description": "Unauthorized"
82818          }
82819        },
82820        "schemes": [
82821          "https"
82822        ],
82823        "tags": [
82824          "node_v1"
82825        ],
82826        "x-kubernetes-action": "watch",
82827        "x-kubernetes-group-version-kind": {
82828          "group": "node.k8s.io",
82829          "kind": "RuntimeClass",
82830          "version": "v1"
82831        }
82832      },
82833      "parameters": [
82834        {
82835          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
82836          "in": "query",
82837          "name": "allowWatchBookmarks",
82838          "type": "boolean",
82839          "uniqueItems": true
82840        },
82841        {
82842          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82843          "in": "query",
82844          "name": "continue",
82845          "type": "string",
82846          "uniqueItems": true
82847        },
82848        {
82849          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82850          "in": "query",
82851          "name": "fieldSelector",
82852          "type": "string",
82853          "uniqueItems": true
82854        },
82855        {
82856          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82857          "in": "query",
82858          "name": "labelSelector",
82859          "type": "string",
82860          "uniqueItems": true
82861        },
82862        {
82863          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82864          "in": "query",
82865          "name": "limit",
82866          "type": "integer",
82867          "uniqueItems": true
82868        },
82869        {
82870          "description": "name of the RuntimeClass",
82871          "in": "path",
82872          "name": "name",
82873          "required": true,
82874          "type": "string",
82875          "uniqueItems": true
82876        },
82877        {
82878          "description": "If 'true', then the output is pretty printed.",
82879          "in": "query",
82880          "name": "pretty",
82881          "type": "string",
82882          "uniqueItems": true
82883        },
82884        {
82885          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82886          "in": "query",
82887          "name": "resourceVersion",
82888          "type": "string",
82889          "uniqueItems": true
82890        },
82891        {
82892          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82893          "in": "query",
82894          "name": "resourceVersionMatch",
82895          "type": "string",
82896          "uniqueItems": true
82897        },
82898        {
82899          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82900          "in": "query",
82901          "name": "timeoutSeconds",
82902          "type": "integer",
82903          "uniqueItems": true
82904        },
82905        {
82906          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82907          "in": "query",
82908          "name": "watch",
82909          "type": "boolean",
82910          "uniqueItems": true
82911        }
82912      ]
82913    },
82914    "/apis/node.k8s.io/v1alpha1/": {
82915      "get": {
82916        "consumes": [
82917          "application/json",
82918          "application/yaml",
82919          "application/vnd.kubernetes.protobuf"
82920        ],
82921        "description": "get available resources",
82922        "operationId": "getNodeV1alpha1APIResources",
82923        "produces": [
82924          "application/json",
82925          "application/yaml",
82926          "application/vnd.kubernetes.protobuf"
82927        ],
82928        "responses": {
82929          "200": {
82930            "description": "OK",
82931            "schema": {
82932              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
82933            }
82934          },
82935          "401": {
82936            "description": "Unauthorized"
82937          }
82938        },
82939        "schemes": [
82940          "https"
82941        ],
82942        "tags": [
82943          "node_v1alpha1"
82944        ]
82945      }
82946    },
82947    "/apis/node.k8s.io/v1alpha1/runtimeclasses": {
82948      "delete": {
82949        "consumes": [
82950          "*/*"
82951        ],
82952        "description": "delete collection of RuntimeClass",
82953        "operationId": "deleteNodeV1alpha1CollectionRuntimeClass",
82954        "parameters": [
82955          {
82956            "in": "body",
82957            "name": "body",
82958            "schema": {
82959              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82960            }
82961          },
82962          {
82963            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82964            "in": "query",
82965            "name": "continue",
82966            "type": "string",
82967            "uniqueItems": true
82968          },
82969          {
82970            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82971            "in": "query",
82972            "name": "dryRun",
82973            "type": "string",
82974            "uniqueItems": true
82975          },
82976          {
82977            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82978            "in": "query",
82979            "name": "fieldSelector",
82980            "type": "string",
82981            "uniqueItems": true
82982          },
82983          {
82984            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82985            "in": "query",
82986            "name": "gracePeriodSeconds",
82987            "type": "integer",
82988            "uniqueItems": true
82989          },
82990          {
82991            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82992            "in": "query",
82993            "name": "labelSelector",
82994            "type": "string",
82995            "uniqueItems": true
82996          },
82997          {
82998            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82999            "in": "query",
83000            "name": "limit",
83001            "type": "integer",
83002            "uniqueItems": true
83003          },
83004          {
83005            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
83006            "in": "query",
83007            "name": "orphanDependents",
83008            "type": "boolean",
83009            "uniqueItems": true
83010          },
83011          {
83012            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
83013            "in": "query",
83014            "name": "propagationPolicy",
83015            "type": "string",
83016            "uniqueItems": true
83017          },
83018          {
83019            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83020            "in": "query",
83021            "name": "resourceVersion",
83022            "type": "string",
83023            "uniqueItems": true
83024          },
83025          {
83026            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83027            "in": "query",
83028            "name": "resourceVersionMatch",
83029            "type": "string",
83030            "uniqueItems": true
83031          },
83032          {
83033            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83034            "in": "query",
83035            "name": "timeoutSeconds",
83036            "type": "integer",
83037            "uniqueItems": true
83038          }
83039        ],
83040        "produces": [
83041          "application/json",
83042          "application/yaml",
83043          "application/vnd.kubernetes.protobuf"
83044        ],
83045        "responses": {
83046          "200": {
83047            "description": "OK",
83048            "schema": {
83049              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83050            }
83051          },
83052          "401": {
83053            "description": "Unauthorized"
83054          }
83055        },
83056        "schemes": [
83057          "https"
83058        ],
83059        "tags": [
83060          "node_v1alpha1"
83061        ],
83062        "x-kubernetes-action": "deletecollection",
83063        "x-kubernetes-group-version-kind": {
83064          "group": "node.k8s.io",
83065          "kind": "RuntimeClass",
83066          "version": "v1alpha1"
83067        }
83068      },
83069      "get": {
83070        "consumes": [
83071          "*/*"
83072        ],
83073        "description": "list or watch objects of kind RuntimeClass",
83074        "operationId": "listNodeV1alpha1RuntimeClass",
83075        "parameters": [
83076          {
83077            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83078            "in": "query",
83079            "name": "allowWatchBookmarks",
83080            "type": "boolean",
83081            "uniqueItems": true
83082          },
83083          {
83084            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83085            "in": "query",
83086            "name": "continue",
83087            "type": "string",
83088            "uniqueItems": true
83089          },
83090          {
83091            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83092            "in": "query",
83093            "name": "fieldSelector",
83094            "type": "string",
83095            "uniqueItems": true
83096          },
83097          {
83098            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83099            "in": "query",
83100            "name": "labelSelector",
83101            "type": "string",
83102            "uniqueItems": true
83103          },
83104          {
83105            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83106            "in": "query",
83107            "name": "limit",
83108            "type": "integer",
83109            "uniqueItems": true
83110          },
83111          {
83112            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83113            "in": "query",
83114            "name": "resourceVersion",
83115            "type": "string",
83116            "uniqueItems": true
83117          },
83118          {
83119            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83120            "in": "query",
83121            "name": "resourceVersionMatch",
83122            "type": "string",
83123            "uniqueItems": true
83124          },
83125          {
83126            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83127            "in": "query",
83128            "name": "timeoutSeconds",
83129            "type": "integer",
83130            "uniqueItems": true
83131          },
83132          {
83133            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83134            "in": "query",
83135            "name": "watch",
83136            "type": "boolean",
83137            "uniqueItems": true
83138          }
83139        ],
83140        "produces": [
83141          "application/json",
83142          "application/yaml",
83143          "application/vnd.kubernetes.protobuf",
83144          "application/json;stream=watch",
83145          "application/vnd.kubernetes.protobuf;stream=watch"
83146        ],
83147        "responses": {
83148          "200": {
83149            "description": "OK",
83150            "schema": {
83151              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassList"
83152            }
83153          },
83154          "401": {
83155            "description": "Unauthorized"
83156          }
83157        },
83158        "schemes": [
83159          "https"
83160        ],
83161        "tags": [
83162          "node_v1alpha1"
83163        ],
83164        "x-kubernetes-action": "list",
83165        "x-kubernetes-group-version-kind": {
83166          "group": "node.k8s.io",
83167          "kind": "RuntimeClass",
83168          "version": "v1alpha1"
83169        }
83170      },
83171      "parameters": [
83172        {
83173          "description": "If 'true', then the output is pretty printed.",
83174          "in": "query",
83175          "name": "pretty",
83176          "type": "string",
83177          "uniqueItems": true
83178        }
83179      ],
83180      "post": {
83181        "consumes": [
83182          "*/*"
83183        ],
83184        "description": "create a RuntimeClass",
83185        "operationId": "createNodeV1alpha1RuntimeClass",
83186        "parameters": [
83187          {
83188            "in": "body",
83189            "name": "body",
83190            "required": true,
83191            "schema": {
83192              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83193            }
83194          },
83195          {
83196            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83197            "in": "query",
83198            "name": "dryRun",
83199            "type": "string",
83200            "uniqueItems": true
83201          },
83202          {
83203            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
83204            "in": "query",
83205            "name": "fieldManager",
83206            "type": "string",
83207            "uniqueItems": true
83208          }
83209        ],
83210        "produces": [
83211          "application/json",
83212          "application/yaml",
83213          "application/vnd.kubernetes.protobuf"
83214        ],
83215        "responses": {
83216          "200": {
83217            "description": "OK",
83218            "schema": {
83219              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83220            }
83221          },
83222          "201": {
83223            "description": "Created",
83224            "schema": {
83225              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83226            }
83227          },
83228          "202": {
83229            "description": "Accepted",
83230            "schema": {
83231              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83232            }
83233          },
83234          "401": {
83235            "description": "Unauthorized"
83236          }
83237        },
83238        "schemes": [
83239          "https"
83240        ],
83241        "tags": [
83242          "node_v1alpha1"
83243        ],
83244        "x-kubernetes-action": "post",
83245        "x-kubernetes-group-version-kind": {
83246          "group": "node.k8s.io",
83247          "kind": "RuntimeClass",
83248          "version": "v1alpha1"
83249        }
83250      }
83251    },
83252    "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}": {
83253      "delete": {
83254        "consumes": [
83255          "*/*"
83256        ],
83257        "description": "delete a RuntimeClass",
83258        "operationId": "deleteNodeV1alpha1RuntimeClass",
83259        "parameters": [
83260          {
83261            "in": "body",
83262            "name": "body",
83263            "schema": {
83264              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
83265            }
83266          },
83267          {
83268            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83269            "in": "query",
83270            "name": "dryRun",
83271            "type": "string",
83272            "uniqueItems": true
83273          },
83274          {
83275            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
83276            "in": "query",
83277            "name": "gracePeriodSeconds",
83278            "type": "integer",
83279            "uniqueItems": true
83280          },
83281          {
83282            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
83283            "in": "query",
83284            "name": "orphanDependents",
83285            "type": "boolean",
83286            "uniqueItems": true
83287          },
83288          {
83289            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
83290            "in": "query",
83291            "name": "propagationPolicy",
83292            "type": "string",
83293            "uniqueItems": true
83294          }
83295        ],
83296        "produces": [
83297          "application/json",
83298          "application/yaml",
83299          "application/vnd.kubernetes.protobuf"
83300        ],
83301        "responses": {
83302          "200": {
83303            "description": "OK",
83304            "schema": {
83305              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83306            }
83307          },
83308          "202": {
83309            "description": "Accepted",
83310            "schema": {
83311              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83312            }
83313          },
83314          "401": {
83315            "description": "Unauthorized"
83316          }
83317        },
83318        "schemes": [
83319          "https"
83320        ],
83321        "tags": [
83322          "node_v1alpha1"
83323        ],
83324        "x-kubernetes-action": "delete",
83325        "x-kubernetes-group-version-kind": {
83326          "group": "node.k8s.io",
83327          "kind": "RuntimeClass",
83328          "version": "v1alpha1"
83329        }
83330      },
83331      "get": {
83332        "consumes": [
83333          "*/*"
83334        ],
83335        "description": "read the specified RuntimeClass",
83336        "operationId": "readNodeV1alpha1RuntimeClass",
83337        "produces": [
83338          "application/json",
83339          "application/yaml",
83340          "application/vnd.kubernetes.protobuf"
83341        ],
83342        "responses": {
83343          "200": {
83344            "description": "OK",
83345            "schema": {
83346              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83347            }
83348          },
83349          "401": {
83350            "description": "Unauthorized"
83351          }
83352        },
83353        "schemes": [
83354          "https"
83355        ],
83356        "tags": [
83357          "node_v1alpha1"
83358        ],
83359        "x-kubernetes-action": "get",
83360        "x-kubernetes-group-version-kind": {
83361          "group": "node.k8s.io",
83362          "kind": "RuntimeClass",
83363          "version": "v1alpha1"
83364        }
83365      },
83366      "parameters": [
83367        {
83368          "description": "name of the RuntimeClass",
83369          "in": "path",
83370          "name": "name",
83371          "required": true,
83372          "type": "string",
83373          "uniqueItems": true
83374        },
83375        {
83376          "description": "If 'true', then the output is pretty printed.",
83377          "in": "query",
83378          "name": "pretty",
83379          "type": "string",
83380          "uniqueItems": true
83381        }
83382      ],
83383      "patch": {
83384        "consumes": [
83385          "application/json-patch+json",
83386          "application/merge-patch+json",
83387          "application/strategic-merge-patch+json",
83388          "application/apply-patch+yaml"
83389        ],
83390        "description": "partially update the specified RuntimeClass",
83391        "operationId": "patchNodeV1alpha1RuntimeClass",
83392        "parameters": [
83393          {
83394            "in": "body",
83395            "name": "body",
83396            "required": true,
83397            "schema": {
83398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
83399            }
83400          },
83401          {
83402            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83403            "in": "query",
83404            "name": "dryRun",
83405            "type": "string",
83406            "uniqueItems": true
83407          },
83408          {
83409            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
83410            "in": "query",
83411            "name": "fieldManager",
83412            "type": "string",
83413            "uniqueItems": true
83414          },
83415          {
83416            "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.",
83417            "in": "query",
83418            "name": "force",
83419            "type": "boolean",
83420            "uniqueItems": true
83421          }
83422        ],
83423        "produces": [
83424          "application/json",
83425          "application/yaml",
83426          "application/vnd.kubernetes.protobuf"
83427        ],
83428        "responses": {
83429          "200": {
83430            "description": "OK",
83431            "schema": {
83432              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83433            }
83434          },
83435          "401": {
83436            "description": "Unauthorized"
83437          }
83438        },
83439        "schemes": [
83440          "https"
83441        ],
83442        "tags": [
83443          "node_v1alpha1"
83444        ],
83445        "x-kubernetes-action": "patch",
83446        "x-kubernetes-group-version-kind": {
83447          "group": "node.k8s.io",
83448          "kind": "RuntimeClass",
83449          "version": "v1alpha1"
83450        }
83451      },
83452      "put": {
83453        "consumes": [
83454          "*/*"
83455        ],
83456        "description": "replace the specified RuntimeClass",
83457        "operationId": "replaceNodeV1alpha1RuntimeClass",
83458        "parameters": [
83459          {
83460            "in": "body",
83461            "name": "body",
83462            "required": true,
83463            "schema": {
83464              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83465            }
83466          },
83467          {
83468            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83469            "in": "query",
83470            "name": "dryRun",
83471            "type": "string",
83472            "uniqueItems": true
83473          },
83474          {
83475            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
83476            "in": "query",
83477            "name": "fieldManager",
83478            "type": "string",
83479            "uniqueItems": true
83480          }
83481        ],
83482        "produces": [
83483          "application/json",
83484          "application/yaml",
83485          "application/vnd.kubernetes.protobuf"
83486        ],
83487        "responses": {
83488          "200": {
83489            "description": "OK",
83490            "schema": {
83491              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83492            }
83493          },
83494          "201": {
83495            "description": "Created",
83496            "schema": {
83497              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83498            }
83499          },
83500          "401": {
83501            "description": "Unauthorized"
83502          }
83503        },
83504        "schemes": [
83505          "https"
83506        ],
83507        "tags": [
83508          "node_v1alpha1"
83509        ],
83510        "x-kubernetes-action": "put",
83511        "x-kubernetes-group-version-kind": {
83512          "group": "node.k8s.io",
83513          "kind": "RuntimeClass",
83514          "version": "v1alpha1"
83515        }
83516      }
83517    },
83518    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses": {
83519      "get": {
83520        "consumes": [
83521          "*/*"
83522        ],
83523        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
83524        "operationId": "watchNodeV1alpha1RuntimeClassList",
83525        "produces": [
83526          "application/json",
83527          "application/yaml",
83528          "application/vnd.kubernetes.protobuf",
83529          "application/json;stream=watch",
83530          "application/vnd.kubernetes.protobuf;stream=watch"
83531        ],
83532        "responses": {
83533          "200": {
83534            "description": "OK",
83535            "schema": {
83536              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83537            }
83538          },
83539          "401": {
83540            "description": "Unauthorized"
83541          }
83542        },
83543        "schemes": [
83544          "https"
83545        ],
83546        "tags": [
83547          "node_v1alpha1"
83548        ],
83549        "x-kubernetes-action": "watchlist",
83550        "x-kubernetes-group-version-kind": {
83551          "group": "node.k8s.io",
83552          "kind": "RuntimeClass",
83553          "version": "v1alpha1"
83554        }
83555      },
83556      "parameters": [
83557        {
83558          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83559          "in": "query",
83560          "name": "allowWatchBookmarks",
83561          "type": "boolean",
83562          "uniqueItems": true
83563        },
83564        {
83565          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83566          "in": "query",
83567          "name": "continue",
83568          "type": "string",
83569          "uniqueItems": true
83570        },
83571        {
83572          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83573          "in": "query",
83574          "name": "fieldSelector",
83575          "type": "string",
83576          "uniqueItems": true
83577        },
83578        {
83579          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83580          "in": "query",
83581          "name": "labelSelector",
83582          "type": "string",
83583          "uniqueItems": true
83584        },
83585        {
83586          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83587          "in": "query",
83588          "name": "limit",
83589          "type": "integer",
83590          "uniqueItems": true
83591        },
83592        {
83593          "description": "If 'true', then the output is pretty printed.",
83594          "in": "query",
83595          "name": "pretty",
83596          "type": "string",
83597          "uniqueItems": true
83598        },
83599        {
83600          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83601          "in": "query",
83602          "name": "resourceVersion",
83603          "type": "string",
83604          "uniqueItems": true
83605        },
83606        {
83607          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83608          "in": "query",
83609          "name": "resourceVersionMatch",
83610          "type": "string",
83611          "uniqueItems": true
83612        },
83613        {
83614          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83615          "in": "query",
83616          "name": "timeoutSeconds",
83617          "type": "integer",
83618          "uniqueItems": true
83619        },
83620        {
83621          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83622          "in": "query",
83623          "name": "watch",
83624          "type": "boolean",
83625          "uniqueItems": true
83626        }
83627      ]
83628    },
83629    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/{name}": {
83630      "get": {
83631        "consumes": [
83632          "*/*"
83633        ],
83634        "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.",
83635        "operationId": "watchNodeV1alpha1RuntimeClass",
83636        "produces": [
83637          "application/json",
83638          "application/yaml",
83639          "application/vnd.kubernetes.protobuf",
83640          "application/json;stream=watch",
83641          "application/vnd.kubernetes.protobuf;stream=watch"
83642        ],
83643        "responses": {
83644          "200": {
83645            "description": "OK",
83646            "schema": {
83647              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83648            }
83649          },
83650          "401": {
83651            "description": "Unauthorized"
83652          }
83653        },
83654        "schemes": [
83655          "https"
83656        ],
83657        "tags": [
83658          "node_v1alpha1"
83659        ],
83660        "x-kubernetes-action": "watch",
83661        "x-kubernetes-group-version-kind": {
83662          "group": "node.k8s.io",
83663          "kind": "RuntimeClass",
83664          "version": "v1alpha1"
83665        }
83666      },
83667      "parameters": [
83668        {
83669          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83670          "in": "query",
83671          "name": "allowWatchBookmarks",
83672          "type": "boolean",
83673          "uniqueItems": true
83674        },
83675        {
83676          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83677          "in": "query",
83678          "name": "continue",
83679          "type": "string",
83680          "uniqueItems": true
83681        },
83682        {
83683          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83684          "in": "query",
83685          "name": "fieldSelector",
83686          "type": "string",
83687          "uniqueItems": true
83688        },
83689        {
83690          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83691          "in": "query",
83692          "name": "labelSelector",
83693          "type": "string",
83694          "uniqueItems": true
83695        },
83696        {
83697          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83698          "in": "query",
83699          "name": "limit",
83700          "type": "integer",
83701          "uniqueItems": true
83702        },
83703        {
83704          "description": "name of the RuntimeClass",
83705          "in": "path",
83706          "name": "name",
83707          "required": true,
83708          "type": "string",
83709          "uniqueItems": true
83710        },
83711        {
83712          "description": "If 'true', then the output is pretty printed.",
83713          "in": "query",
83714          "name": "pretty",
83715          "type": "string",
83716          "uniqueItems": true
83717        },
83718        {
83719          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83720          "in": "query",
83721          "name": "resourceVersion",
83722          "type": "string",
83723          "uniqueItems": true
83724        },
83725        {
83726          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83727          "in": "query",
83728          "name": "resourceVersionMatch",
83729          "type": "string",
83730          "uniqueItems": true
83731        },
83732        {
83733          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83734          "in": "query",
83735          "name": "timeoutSeconds",
83736          "type": "integer",
83737          "uniqueItems": true
83738        },
83739        {
83740          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83741          "in": "query",
83742          "name": "watch",
83743          "type": "boolean",
83744          "uniqueItems": true
83745        }
83746      ]
83747    },
83748    "/apis/node.k8s.io/v1beta1/": {
83749      "get": {
83750        "consumes": [
83751          "application/json",
83752          "application/yaml",
83753          "application/vnd.kubernetes.protobuf"
83754        ],
83755        "description": "get available resources",
83756        "operationId": "getNodeV1beta1APIResources",
83757        "produces": [
83758          "application/json",
83759          "application/yaml",
83760          "application/vnd.kubernetes.protobuf"
83761        ],
83762        "responses": {
83763          "200": {
83764            "description": "OK",
83765            "schema": {
83766              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
83767            }
83768          },
83769          "401": {
83770            "description": "Unauthorized"
83771          }
83772        },
83773        "schemes": [
83774          "https"
83775        ],
83776        "tags": [
83777          "node_v1beta1"
83778        ]
83779      }
83780    },
83781    "/apis/node.k8s.io/v1beta1/runtimeclasses": {
83782      "delete": {
83783        "consumes": [
83784          "*/*"
83785        ],
83786        "description": "delete collection of RuntimeClass",
83787        "operationId": "deleteNodeV1beta1CollectionRuntimeClass",
83788        "parameters": [
83789          {
83790            "in": "body",
83791            "name": "body",
83792            "schema": {
83793              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
83794            }
83795          },
83796          {
83797            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83798            "in": "query",
83799            "name": "continue",
83800            "type": "string",
83801            "uniqueItems": true
83802          },
83803          {
83804            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83805            "in": "query",
83806            "name": "dryRun",
83807            "type": "string",
83808            "uniqueItems": true
83809          },
83810          {
83811            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83812            "in": "query",
83813            "name": "fieldSelector",
83814            "type": "string",
83815            "uniqueItems": true
83816          },
83817          {
83818            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
83819            "in": "query",
83820            "name": "gracePeriodSeconds",
83821            "type": "integer",
83822            "uniqueItems": true
83823          },
83824          {
83825            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83826            "in": "query",
83827            "name": "labelSelector",
83828            "type": "string",
83829            "uniqueItems": true
83830          },
83831          {
83832            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83833            "in": "query",
83834            "name": "limit",
83835            "type": "integer",
83836            "uniqueItems": true
83837          },
83838          {
83839            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
83840            "in": "query",
83841            "name": "orphanDependents",
83842            "type": "boolean",
83843            "uniqueItems": true
83844          },
83845          {
83846            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
83847            "in": "query",
83848            "name": "propagationPolicy",
83849            "type": "string",
83850            "uniqueItems": true
83851          },
83852          {
83853            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83854            "in": "query",
83855            "name": "resourceVersion",
83856            "type": "string",
83857            "uniqueItems": true
83858          },
83859          {
83860            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83861            "in": "query",
83862            "name": "resourceVersionMatch",
83863            "type": "string",
83864            "uniqueItems": true
83865          },
83866          {
83867            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83868            "in": "query",
83869            "name": "timeoutSeconds",
83870            "type": "integer",
83871            "uniqueItems": true
83872          }
83873        ],
83874        "produces": [
83875          "application/json",
83876          "application/yaml",
83877          "application/vnd.kubernetes.protobuf"
83878        ],
83879        "responses": {
83880          "200": {
83881            "description": "OK",
83882            "schema": {
83883              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83884            }
83885          },
83886          "401": {
83887            "description": "Unauthorized"
83888          }
83889        },
83890        "schemes": [
83891          "https"
83892        ],
83893        "tags": [
83894          "node_v1beta1"
83895        ],
83896        "x-kubernetes-action": "deletecollection",
83897        "x-kubernetes-group-version-kind": {
83898          "group": "node.k8s.io",
83899          "kind": "RuntimeClass",
83900          "version": "v1beta1"
83901        }
83902      },
83903      "get": {
83904        "consumes": [
83905          "*/*"
83906        ],
83907        "description": "list or watch objects of kind RuntimeClass",
83908        "operationId": "listNodeV1beta1RuntimeClass",
83909        "parameters": [
83910          {
83911            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83912            "in": "query",
83913            "name": "allowWatchBookmarks",
83914            "type": "boolean",
83915            "uniqueItems": true
83916          },
83917          {
83918            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83919            "in": "query",
83920            "name": "continue",
83921            "type": "string",
83922            "uniqueItems": true
83923          },
83924          {
83925            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83926            "in": "query",
83927            "name": "fieldSelector",
83928            "type": "string",
83929            "uniqueItems": true
83930          },
83931          {
83932            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83933            "in": "query",
83934            "name": "labelSelector",
83935            "type": "string",
83936            "uniqueItems": true
83937          },
83938          {
83939            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83940            "in": "query",
83941            "name": "limit",
83942            "type": "integer",
83943            "uniqueItems": true
83944          },
83945          {
83946            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83947            "in": "query",
83948            "name": "resourceVersion",
83949            "type": "string",
83950            "uniqueItems": true
83951          },
83952          {
83953            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83954            "in": "query",
83955            "name": "resourceVersionMatch",
83956            "type": "string",
83957            "uniqueItems": true
83958          },
83959          {
83960            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83961            "in": "query",
83962            "name": "timeoutSeconds",
83963            "type": "integer",
83964            "uniqueItems": true
83965          },
83966          {
83967            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83968            "in": "query",
83969            "name": "watch",
83970            "type": "boolean",
83971            "uniqueItems": true
83972          }
83973        ],
83974        "produces": [
83975          "application/json",
83976          "application/yaml",
83977          "application/vnd.kubernetes.protobuf",
83978          "application/json;stream=watch",
83979          "application/vnd.kubernetes.protobuf;stream=watch"
83980        ],
83981        "responses": {
83982          "200": {
83983            "description": "OK",
83984            "schema": {
83985              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClassList"
83986            }
83987          },
83988          "401": {
83989            "description": "Unauthorized"
83990          }
83991        },
83992        "schemes": [
83993          "https"
83994        ],
83995        "tags": [
83996          "node_v1beta1"
83997        ],
83998        "x-kubernetes-action": "list",
83999        "x-kubernetes-group-version-kind": {
84000          "group": "node.k8s.io",
84001          "kind": "RuntimeClass",
84002          "version": "v1beta1"
84003        }
84004      },
84005      "parameters": [
84006        {
84007          "description": "If 'true', then the output is pretty printed.",
84008          "in": "query",
84009          "name": "pretty",
84010          "type": "string",
84011          "uniqueItems": true
84012        }
84013      ],
84014      "post": {
84015        "consumes": [
84016          "*/*"
84017        ],
84018        "description": "create a RuntimeClass",
84019        "operationId": "createNodeV1beta1RuntimeClass",
84020        "parameters": [
84021          {
84022            "in": "body",
84023            "name": "body",
84024            "required": true,
84025            "schema": {
84026              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84027            }
84028          },
84029          {
84030            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84031            "in": "query",
84032            "name": "dryRun",
84033            "type": "string",
84034            "uniqueItems": true
84035          },
84036          {
84037            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84038            "in": "query",
84039            "name": "fieldManager",
84040            "type": "string",
84041            "uniqueItems": true
84042          }
84043        ],
84044        "produces": [
84045          "application/json",
84046          "application/yaml",
84047          "application/vnd.kubernetes.protobuf"
84048        ],
84049        "responses": {
84050          "200": {
84051            "description": "OK",
84052            "schema": {
84053              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84054            }
84055          },
84056          "201": {
84057            "description": "Created",
84058            "schema": {
84059              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84060            }
84061          },
84062          "202": {
84063            "description": "Accepted",
84064            "schema": {
84065              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84066            }
84067          },
84068          "401": {
84069            "description": "Unauthorized"
84070          }
84071        },
84072        "schemes": [
84073          "https"
84074        ],
84075        "tags": [
84076          "node_v1beta1"
84077        ],
84078        "x-kubernetes-action": "post",
84079        "x-kubernetes-group-version-kind": {
84080          "group": "node.k8s.io",
84081          "kind": "RuntimeClass",
84082          "version": "v1beta1"
84083        }
84084      }
84085    },
84086    "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}": {
84087      "delete": {
84088        "consumes": [
84089          "*/*"
84090        ],
84091        "description": "delete a RuntimeClass",
84092        "operationId": "deleteNodeV1beta1RuntimeClass",
84093        "parameters": [
84094          {
84095            "in": "body",
84096            "name": "body",
84097            "schema": {
84098              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84099            }
84100          },
84101          {
84102            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84103            "in": "query",
84104            "name": "dryRun",
84105            "type": "string",
84106            "uniqueItems": true
84107          },
84108          {
84109            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84110            "in": "query",
84111            "name": "gracePeriodSeconds",
84112            "type": "integer",
84113            "uniqueItems": true
84114          },
84115          {
84116            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84117            "in": "query",
84118            "name": "orphanDependents",
84119            "type": "boolean",
84120            "uniqueItems": true
84121          },
84122          {
84123            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84124            "in": "query",
84125            "name": "propagationPolicy",
84126            "type": "string",
84127            "uniqueItems": true
84128          }
84129        ],
84130        "produces": [
84131          "application/json",
84132          "application/yaml",
84133          "application/vnd.kubernetes.protobuf"
84134        ],
84135        "responses": {
84136          "200": {
84137            "description": "OK",
84138            "schema": {
84139              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84140            }
84141          },
84142          "202": {
84143            "description": "Accepted",
84144            "schema": {
84145              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84146            }
84147          },
84148          "401": {
84149            "description": "Unauthorized"
84150          }
84151        },
84152        "schemes": [
84153          "https"
84154        ],
84155        "tags": [
84156          "node_v1beta1"
84157        ],
84158        "x-kubernetes-action": "delete",
84159        "x-kubernetes-group-version-kind": {
84160          "group": "node.k8s.io",
84161          "kind": "RuntimeClass",
84162          "version": "v1beta1"
84163        }
84164      },
84165      "get": {
84166        "consumes": [
84167          "*/*"
84168        ],
84169        "description": "read the specified RuntimeClass",
84170        "operationId": "readNodeV1beta1RuntimeClass",
84171        "produces": [
84172          "application/json",
84173          "application/yaml",
84174          "application/vnd.kubernetes.protobuf"
84175        ],
84176        "responses": {
84177          "200": {
84178            "description": "OK",
84179            "schema": {
84180              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84181            }
84182          },
84183          "401": {
84184            "description": "Unauthorized"
84185          }
84186        },
84187        "schemes": [
84188          "https"
84189        ],
84190        "tags": [
84191          "node_v1beta1"
84192        ],
84193        "x-kubernetes-action": "get",
84194        "x-kubernetes-group-version-kind": {
84195          "group": "node.k8s.io",
84196          "kind": "RuntimeClass",
84197          "version": "v1beta1"
84198        }
84199      },
84200      "parameters": [
84201        {
84202          "description": "name of the RuntimeClass",
84203          "in": "path",
84204          "name": "name",
84205          "required": true,
84206          "type": "string",
84207          "uniqueItems": true
84208        },
84209        {
84210          "description": "If 'true', then the output is pretty printed.",
84211          "in": "query",
84212          "name": "pretty",
84213          "type": "string",
84214          "uniqueItems": true
84215        }
84216      ],
84217      "patch": {
84218        "consumes": [
84219          "application/json-patch+json",
84220          "application/merge-patch+json",
84221          "application/strategic-merge-patch+json",
84222          "application/apply-patch+yaml"
84223        ],
84224        "description": "partially update the specified RuntimeClass",
84225        "operationId": "patchNodeV1beta1RuntimeClass",
84226        "parameters": [
84227          {
84228            "in": "body",
84229            "name": "body",
84230            "required": true,
84231            "schema": {
84232              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
84233            }
84234          },
84235          {
84236            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84237            "in": "query",
84238            "name": "dryRun",
84239            "type": "string",
84240            "uniqueItems": true
84241          },
84242          {
84243            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
84244            "in": "query",
84245            "name": "fieldManager",
84246            "type": "string",
84247            "uniqueItems": true
84248          },
84249          {
84250            "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.",
84251            "in": "query",
84252            "name": "force",
84253            "type": "boolean",
84254            "uniqueItems": true
84255          }
84256        ],
84257        "produces": [
84258          "application/json",
84259          "application/yaml",
84260          "application/vnd.kubernetes.protobuf"
84261        ],
84262        "responses": {
84263          "200": {
84264            "description": "OK",
84265            "schema": {
84266              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84267            }
84268          },
84269          "401": {
84270            "description": "Unauthorized"
84271          }
84272        },
84273        "schemes": [
84274          "https"
84275        ],
84276        "tags": [
84277          "node_v1beta1"
84278        ],
84279        "x-kubernetes-action": "patch",
84280        "x-kubernetes-group-version-kind": {
84281          "group": "node.k8s.io",
84282          "kind": "RuntimeClass",
84283          "version": "v1beta1"
84284        }
84285      },
84286      "put": {
84287        "consumes": [
84288          "*/*"
84289        ],
84290        "description": "replace the specified RuntimeClass",
84291        "operationId": "replaceNodeV1beta1RuntimeClass",
84292        "parameters": [
84293          {
84294            "in": "body",
84295            "name": "body",
84296            "required": true,
84297            "schema": {
84298              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84299            }
84300          },
84301          {
84302            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84303            "in": "query",
84304            "name": "dryRun",
84305            "type": "string",
84306            "uniqueItems": true
84307          },
84308          {
84309            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84310            "in": "query",
84311            "name": "fieldManager",
84312            "type": "string",
84313            "uniqueItems": true
84314          }
84315        ],
84316        "produces": [
84317          "application/json",
84318          "application/yaml",
84319          "application/vnd.kubernetes.protobuf"
84320        ],
84321        "responses": {
84322          "200": {
84323            "description": "OK",
84324            "schema": {
84325              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84326            }
84327          },
84328          "201": {
84329            "description": "Created",
84330            "schema": {
84331              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84332            }
84333          },
84334          "401": {
84335            "description": "Unauthorized"
84336          }
84337        },
84338        "schemes": [
84339          "https"
84340        ],
84341        "tags": [
84342          "node_v1beta1"
84343        ],
84344        "x-kubernetes-action": "put",
84345        "x-kubernetes-group-version-kind": {
84346          "group": "node.k8s.io",
84347          "kind": "RuntimeClass",
84348          "version": "v1beta1"
84349        }
84350      }
84351    },
84352    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses": {
84353      "get": {
84354        "consumes": [
84355          "*/*"
84356        ],
84357        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
84358        "operationId": "watchNodeV1beta1RuntimeClassList",
84359        "produces": [
84360          "application/json",
84361          "application/yaml",
84362          "application/vnd.kubernetes.protobuf",
84363          "application/json;stream=watch",
84364          "application/vnd.kubernetes.protobuf;stream=watch"
84365        ],
84366        "responses": {
84367          "200": {
84368            "description": "OK",
84369            "schema": {
84370              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
84371            }
84372          },
84373          "401": {
84374            "description": "Unauthorized"
84375          }
84376        },
84377        "schemes": [
84378          "https"
84379        ],
84380        "tags": [
84381          "node_v1beta1"
84382        ],
84383        "x-kubernetes-action": "watchlist",
84384        "x-kubernetes-group-version-kind": {
84385          "group": "node.k8s.io",
84386          "kind": "RuntimeClass",
84387          "version": "v1beta1"
84388        }
84389      },
84390      "parameters": [
84391        {
84392          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
84393          "in": "query",
84394          "name": "allowWatchBookmarks",
84395          "type": "boolean",
84396          "uniqueItems": true
84397        },
84398        {
84399          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84400          "in": "query",
84401          "name": "continue",
84402          "type": "string",
84403          "uniqueItems": true
84404        },
84405        {
84406          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84407          "in": "query",
84408          "name": "fieldSelector",
84409          "type": "string",
84410          "uniqueItems": true
84411        },
84412        {
84413          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84414          "in": "query",
84415          "name": "labelSelector",
84416          "type": "string",
84417          "uniqueItems": true
84418        },
84419        {
84420          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84421          "in": "query",
84422          "name": "limit",
84423          "type": "integer",
84424          "uniqueItems": true
84425        },
84426        {
84427          "description": "If 'true', then the output is pretty printed.",
84428          "in": "query",
84429          "name": "pretty",
84430          "type": "string",
84431          "uniqueItems": true
84432        },
84433        {
84434          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84435          "in": "query",
84436          "name": "resourceVersion",
84437          "type": "string",
84438          "uniqueItems": true
84439        },
84440        {
84441          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84442          "in": "query",
84443          "name": "resourceVersionMatch",
84444          "type": "string",
84445          "uniqueItems": true
84446        },
84447        {
84448          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84449          "in": "query",
84450          "name": "timeoutSeconds",
84451          "type": "integer",
84452          "uniqueItems": true
84453        },
84454        {
84455          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84456          "in": "query",
84457          "name": "watch",
84458          "type": "boolean",
84459          "uniqueItems": true
84460        }
84461      ]
84462    },
84463    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses/{name}": {
84464      "get": {
84465        "consumes": [
84466          "*/*"
84467        ],
84468        "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.",
84469        "operationId": "watchNodeV1beta1RuntimeClass",
84470        "produces": [
84471          "application/json",
84472          "application/yaml",
84473          "application/vnd.kubernetes.protobuf",
84474          "application/json;stream=watch",
84475          "application/vnd.kubernetes.protobuf;stream=watch"
84476        ],
84477        "responses": {
84478          "200": {
84479            "description": "OK",
84480            "schema": {
84481              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
84482            }
84483          },
84484          "401": {
84485            "description": "Unauthorized"
84486          }
84487        },
84488        "schemes": [
84489          "https"
84490        ],
84491        "tags": [
84492          "node_v1beta1"
84493        ],
84494        "x-kubernetes-action": "watch",
84495        "x-kubernetes-group-version-kind": {
84496          "group": "node.k8s.io",
84497          "kind": "RuntimeClass",
84498          "version": "v1beta1"
84499        }
84500      },
84501      "parameters": [
84502        {
84503          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
84504          "in": "query",
84505          "name": "allowWatchBookmarks",
84506          "type": "boolean",
84507          "uniqueItems": true
84508        },
84509        {
84510          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84511          "in": "query",
84512          "name": "continue",
84513          "type": "string",
84514          "uniqueItems": true
84515        },
84516        {
84517          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84518          "in": "query",
84519          "name": "fieldSelector",
84520          "type": "string",
84521          "uniqueItems": true
84522        },
84523        {
84524          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84525          "in": "query",
84526          "name": "labelSelector",
84527          "type": "string",
84528          "uniqueItems": true
84529        },
84530        {
84531          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84532          "in": "query",
84533          "name": "limit",
84534          "type": "integer",
84535          "uniqueItems": true
84536        },
84537        {
84538          "description": "name of the RuntimeClass",
84539          "in": "path",
84540          "name": "name",
84541          "required": true,
84542          "type": "string",
84543          "uniqueItems": true
84544        },
84545        {
84546          "description": "If 'true', then the output is pretty printed.",
84547          "in": "query",
84548          "name": "pretty",
84549          "type": "string",
84550          "uniqueItems": true
84551        },
84552        {
84553          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84554          "in": "query",
84555          "name": "resourceVersion",
84556          "type": "string",
84557          "uniqueItems": true
84558        },
84559        {
84560          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84561          "in": "query",
84562          "name": "resourceVersionMatch",
84563          "type": "string",
84564          "uniqueItems": true
84565        },
84566        {
84567          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84568          "in": "query",
84569          "name": "timeoutSeconds",
84570          "type": "integer",
84571          "uniqueItems": true
84572        },
84573        {
84574          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84575          "in": "query",
84576          "name": "watch",
84577          "type": "boolean",
84578          "uniqueItems": true
84579        }
84580      ]
84581    },
84582    "/apis/policy/": {
84583      "get": {
84584        "consumes": [
84585          "application/json",
84586          "application/yaml",
84587          "application/vnd.kubernetes.protobuf"
84588        ],
84589        "description": "get information of a group",
84590        "operationId": "getPolicyAPIGroup",
84591        "produces": [
84592          "application/json",
84593          "application/yaml",
84594          "application/vnd.kubernetes.protobuf"
84595        ],
84596        "responses": {
84597          "200": {
84598            "description": "OK",
84599            "schema": {
84600              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
84601            }
84602          },
84603          "401": {
84604            "description": "Unauthorized"
84605          }
84606        },
84607        "schemes": [
84608          "https"
84609        ],
84610        "tags": [
84611          "policy"
84612        ]
84613      }
84614    },
84615    "/apis/policy/v1beta1/": {
84616      "get": {
84617        "consumes": [
84618          "application/json",
84619          "application/yaml",
84620          "application/vnd.kubernetes.protobuf"
84621        ],
84622        "description": "get available resources",
84623        "operationId": "getPolicyV1beta1APIResources",
84624        "produces": [
84625          "application/json",
84626          "application/yaml",
84627          "application/vnd.kubernetes.protobuf"
84628        ],
84629        "responses": {
84630          "200": {
84631            "description": "OK",
84632            "schema": {
84633              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
84634            }
84635          },
84636          "401": {
84637            "description": "Unauthorized"
84638          }
84639        },
84640        "schemes": [
84641          "https"
84642        ],
84643        "tags": [
84644          "policy_v1beta1"
84645        ]
84646      }
84647    },
84648    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets": {
84649      "delete": {
84650        "consumes": [
84651          "*/*"
84652        ],
84653        "description": "delete collection of PodDisruptionBudget",
84654        "operationId": "deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget",
84655        "parameters": [
84656          {
84657            "in": "body",
84658            "name": "body",
84659            "schema": {
84660              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84661            }
84662          },
84663          {
84664            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84665            "in": "query",
84666            "name": "continue",
84667            "type": "string",
84668            "uniqueItems": true
84669          },
84670          {
84671            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84672            "in": "query",
84673            "name": "dryRun",
84674            "type": "string",
84675            "uniqueItems": true
84676          },
84677          {
84678            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84679            "in": "query",
84680            "name": "fieldSelector",
84681            "type": "string",
84682            "uniqueItems": true
84683          },
84684          {
84685            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84686            "in": "query",
84687            "name": "gracePeriodSeconds",
84688            "type": "integer",
84689            "uniqueItems": true
84690          },
84691          {
84692            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84693            "in": "query",
84694            "name": "labelSelector",
84695            "type": "string",
84696            "uniqueItems": true
84697          },
84698          {
84699            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84700            "in": "query",
84701            "name": "limit",
84702            "type": "integer",
84703            "uniqueItems": true
84704          },
84705          {
84706            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84707            "in": "query",
84708            "name": "orphanDependents",
84709            "type": "boolean",
84710            "uniqueItems": true
84711          },
84712          {
84713            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84714            "in": "query",
84715            "name": "propagationPolicy",
84716            "type": "string",
84717            "uniqueItems": true
84718          },
84719          {
84720            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84721            "in": "query",
84722            "name": "resourceVersion",
84723            "type": "string",
84724            "uniqueItems": true
84725          },
84726          {
84727            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84728            "in": "query",
84729            "name": "resourceVersionMatch",
84730            "type": "string",
84731            "uniqueItems": true
84732          },
84733          {
84734            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84735            "in": "query",
84736            "name": "timeoutSeconds",
84737            "type": "integer",
84738            "uniqueItems": true
84739          }
84740        ],
84741        "produces": [
84742          "application/json",
84743          "application/yaml",
84744          "application/vnd.kubernetes.protobuf"
84745        ],
84746        "responses": {
84747          "200": {
84748            "description": "OK",
84749            "schema": {
84750              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84751            }
84752          },
84753          "401": {
84754            "description": "Unauthorized"
84755          }
84756        },
84757        "schemes": [
84758          "https"
84759        ],
84760        "tags": [
84761          "policy_v1beta1"
84762        ],
84763        "x-kubernetes-action": "deletecollection",
84764        "x-kubernetes-group-version-kind": {
84765          "group": "policy",
84766          "kind": "PodDisruptionBudget",
84767          "version": "v1beta1"
84768        }
84769      },
84770      "get": {
84771        "consumes": [
84772          "*/*"
84773        ],
84774        "description": "list or watch objects of kind PodDisruptionBudget",
84775        "operationId": "listPolicyV1beta1NamespacedPodDisruptionBudget",
84776        "parameters": [
84777          {
84778            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
84779            "in": "query",
84780            "name": "allowWatchBookmarks",
84781            "type": "boolean",
84782            "uniqueItems": true
84783          },
84784          {
84785            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84786            "in": "query",
84787            "name": "continue",
84788            "type": "string",
84789            "uniqueItems": true
84790          },
84791          {
84792            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84793            "in": "query",
84794            "name": "fieldSelector",
84795            "type": "string",
84796            "uniqueItems": true
84797          },
84798          {
84799            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84800            "in": "query",
84801            "name": "labelSelector",
84802            "type": "string",
84803            "uniqueItems": true
84804          },
84805          {
84806            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84807            "in": "query",
84808            "name": "limit",
84809            "type": "integer",
84810            "uniqueItems": true
84811          },
84812          {
84813            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84814            "in": "query",
84815            "name": "resourceVersion",
84816            "type": "string",
84817            "uniqueItems": true
84818          },
84819          {
84820            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84821            "in": "query",
84822            "name": "resourceVersionMatch",
84823            "type": "string",
84824            "uniqueItems": true
84825          },
84826          {
84827            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84828            "in": "query",
84829            "name": "timeoutSeconds",
84830            "type": "integer",
84831            "uniqueItems": true
84832          },
84833          {
84834            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84835            "in": "query",
84836            "name": "watch",
84837            "type": "boolean",
84838            "uniqueItems": true
84839          }
84840        ],
84841        "produces": [
84842          "application/json",
84843          "application/yaml",
84844          "application/vnd.kubernetes.protobuf",
84845          "application/json;stream=watch",
84846          "application/vnd.kubernetes.protobuf;stream=watch"
84847        ],
84848        "responses": {
84849          "200": {
84850            "description": "OK",
84851            "schema": {
84852              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
84853            }
84854          },
84855          "401": {
84856            "description": "Unauthorized"
84857          }
84858        },
84859        "schemes": [
84860          "https"
84861        ],
84862        "tags": [
84863          "policy_v1beta1"
84864        ],
84865        "x-kubernetes-action": "list",
84866        "x-kubernetes-group-version-kind": {
84867          "group": "policy",
84868          "kind": "PodDisruptionBudget",
84869          "version": "v1beta1"
84870        }
84871      },
84872      "parameters": [
84873        {
84874          "description": "object name and auth scope, such as for teams and projects",
84875          "in": "path",
84876          "name": "namespace",
84877          "required": true,
84878          "type": "string",
84879          "uniqueItems": true
84880        },
84881        {
84882          "description": "If 'true', then the output is pretty printed.",
84883          "in": "query",
84884          "name": "pretty",
84885          "type": "string",
84886          "uniqueItems": true
84887        }
84888      ],
84889      "post": {
84890        "consumes": [
84891          "*/*"
84892        ],
84893        "description": "create a PodDisruptionBudget",
84894        "operationId": "createPolicyV1beta1NamespacedPodDisruptionBudget",
84895        "parameters": [
84896          {
84897            "in": "body",
84898            "name": "body",
84899            "required": true,
84900            "schema": {
84901              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84902            }
84903          },
84904          {
84905            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84906            "in": "query",
84907            "name": "dryRun",
84908            "type": "string",
84909            "uniqueItems": true
84910          },
84911          {
84912            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84913            "in": "query",
84914            "name": "fieldManager",
84915            "type": "string",
84916            "uniqueItems": true
84917          }
84918        ],
84919        "produces": [
84920          "application/json",
84921          "application/yaml",
84922          "application/vnd.kubernetes.protobuf"
84923        ],
84924        "responses": {
84925          "200": {
84926            "description": "OK",
84927            "schema": {
84928              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84929            }
84930          },
84931          "201": {
84932            "description": "Created",
84933            "schema": {
84934              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84935            }
84936          },
84937          "202": {
84938            "description": "Accepted",
84939            "schema": {
84940              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84941            }
84942          },
84943          "401": {
84944            "description": "Unauthorized"
84945          }
84946        },
84947        "schemes": [
84948          "https"
84949        ],
84950        "tags": [
84951          "policy_v1beta1"
84952        ],
84953        "x-kubernetes-action": "post",
84954        "x-kubernetes-group-version-kind": {
84955          "group": "policy",
84956          "kind": "PodDisruptionBudget",
84957          "version": "v1beta1"
84958        }
84959      }
84960    },
84961    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}": {
84962      "delete": {
84963        "consumes": [
84964          "*/*"
84965        ],
84966        "description": "delete a PodDisruptionBudget",
84967        "operationId": "deletePolicyV1beta1NamespacedPodDisruptionBudget",
84968        "parameters": [
84969          {
84970            "in": "body",
84971            "name": "body",
84972            "schema": {
84973              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84974            }
84975          },
84976          {
84977            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84978            "in": "query",
84979            "name": "dryRun",
84980            "type": "string",
84981            "uniqueItems": true
84982          },
84983          {
84984            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84985            "in": "query",
84986            "name": "gracePeriodSeconds",
84987            "type": "integer",
84988            "uniqueItems": true
84989          },
84990          {
84991            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84992            "in": "query",
84993            "name": "orphanDependents",
84994            "type": "boolean",
84995            "uniqueItems": true
84996          },
84997          {
84998            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84999            "in": "query",
85000            "name": "propagationPolicy",
85001            "type": "string",
85002            "uniqueItems": true
85003          }
85004        ],
85005        "produces": [
85006          "application/json",
85007          "application/yaml",
85008          "application/vnd.kubernetes.protobuf"
85009        ],
85010        "responses": {
85011          "200": {
85012            "description": "OK",
85013            "schema": {
85014              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85015            }
85016          },
85017          "202": {
85018            "description": "Accepted",
85019            "schema": {
85020              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85021            }
85022          },
85023          "401": {
85024            "description": "Unauthorized"
85025          }
85026        },
85027        "schemes": [
85028          "https"
85029        ],
85030        "tags": [
85031          "policy_v1beta1"
85032        ],
85033        "x-kubernetes-action": "delete",
85034        "x-kubernetes-group-version-kind": {
85035          "group": "policy",
85036          "kind": "PodDisruptionBudget",
85037          "version": "v1beta1"
85038        }
85039      },
85040      "get": {
85041        "consumes": [
85042          "*/*"
85043        ],
85044        "description": "read the specified PodDisruptionBudget",
85045        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudget",
85046        "produces": [
85047          "application/json",
85048          "application/yaml",
85049          "application/vnd.kubernetes.protobuf"
85050        ],
85051        "responses": {
85052          "200": {
85053            "description": "OK",
85054            "schema": {
85055              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85056            }
85057          },
85058          "401": {
85059            "description": "Unauthorized"
85060          }
85061        },
85062        "schemes": [
85063          "https"
85064        ],
85065        "tags": [
85066          "policy_v1beta1"
85067        ],
85068        "x-kubernetes-action": "get",
85069        "x-kubernetes-group-version-kind": {
85070          "group": "policy",
85071          "kind": "PodDisruptionBudget",
85072          "version": "v1beta1"
85073        }
85074      },
85075      "parameters": [
85076        {
85077          "description": "name of the PodDisruptionBudget",
85078          "in": "path",
85079          "name": "name",
85080          "required": true,
85081          "type": "string",
85082          "uniqueItems": true
85083        },
85084        {
85085          "description": "object name and auth scope, such as for teams and projects",
85086          "in": "path",
85087          "name": "namespace",
85088          "required": true,
85089          "type": "string",
85090          "uniqueItems": true
85091        },
85092        {
85093          "description": "If 'true', then the output is pretty printed.",
85094          "in": "query",
85095          "name": "pretty",
85096          "type": "string",
85097          "uniqueItems": true
85098        }
85099      ],
85100      "patch": {
85101        "consumes": [
85102          "application/json-patch+json",
85103          "application/merge-patch+json",
85104          "application/strategic-merge-patch+json",
85105          "application/apply-patch+yaml"
85106        ],
85107        "description": "partially update the specified PodDisruptionBudget",
85108        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudget",
85109        "parameters": [
85110          {
85111            "in": "body",
85112            "name": "body",
85113            "required": true,
85114            "schema": {
85115              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85116            }
85117          },
85118          {
85119            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85120            "in": "query",
85121            "name": "dryRun",
85122            "type": "string",
85123            "uniqueItems": true
85124          },
85125          {
85126            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
85127            "in": "query",
85128            "name": "fieldManager",
85129            "type": "string",
85130            "uniqueItems": true
85131          },
85132          {
85133            "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.",
85134            "in": "query",
85135            "name": "force",
85136            "type": "boolean",
85137            "uniqueItems": true
85138          }
85139        ],
85140        "produces": [
85141          "application/json",
85142          "application/yaml",
85143          "application/vnd.kubernetes.protobuf"
85144        ],
85145        "responses": {
85146          "200": {
85147            "description": "OK",
85148            "schema": {
85149              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85150            }
85151          },
85152          "401": {
85153            "description": "Unauthorized"
85154          }
85155        },
85156        "schemes": [
85157          "https"
85158        ],
85159        "tags": [
85160          "policy_v1beta1"
85161        ],
85162        "x-kubernetes-action": "patch",
85163        "x-kubernetes-group-version-kind": {
85164          "group": "policy",
85165          "kind": "PodDisruptionBudget",
85166          "version": "v1beta1"
85167        }
85168      },
85169      "put": {
85170        "consumes": [
85171          "*/*"
85172        ],
85173        "description": "replace the specified PodDisruptionBudget",
85174        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudget",
85175        "parameters": [
85176          {
85177            "in": "body",
85178            "name": "body",
85179            "required": true,
85180            "schema": {
85181              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85182            }
85183          },
85184          {
85185            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85186            "in": "query",
85187            "name": "dryRun",
85188            "type": "string",
85189            "uniqueItems": true
85190          },
85191          {
85192            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85193            "in": "query",
85194            "name": "fieldManager",
85195            "type": "string",
85196            "uniqueItems": true
85197          }
85198        ],
85199        "produces": [
85200          "application/json",
85201          "application/yaml",
85202          "application/vnd.kubernetes.protobuf"
85203        ],
85204        "responses": {
85205          "200": {
85206            "description": "OK",
85207            "schema": {
85208              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85209            }
85210          },
85211          "201": {
85212            "description": "Created",
85213            "schema": {
85214              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85215            }
85216          },
85217          "401": {
85218            "description": "Unauthorized"
85219          }
85220        },
85221        "schemes": [
85222          "https"
85223        ],
85224        "tags": [
85225          "policy_v1beta1"
85226        ],
85227        "x-kubernetes-action": "put",
85228        "x-kubernetes-group-version-kind": {
85229          "group": "policy",
85230          "kind": "PodDisruptionBudget",
85231          "version": "v1beta1"
85232        }
85233      }
85234    },
85235    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": {
85236      "get": {
85237        "consumes": [
85238          "*/*"
85239        ],
85240        "description": "read status of the specified PodDisruptionBudget",
85241        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
85242        "produces": [
85243          "application/json",
85244          "application/yaml",
85245          "application/vnd.kubernetes.protobuf"
85246        ],
85247        "responses": {
85248          "200": {
85249            "description": "OK",
85250            "schema": {
85251              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85252            }
85253          },
85254          "401": {
85255            "description": "Unauthorized"
85256          }
85257        },
85258        "schemes": [
85259          "https"
85260        ],
85261        "tags": [
85262          "policy_v1beta1"
85263        ],
85264        "x-kubernetes-action": "get",
85265        "x-kubernetes-group-version-kind": {
85266          "group": "policy",
85267          "kind": "PodDisruptionBudget",
85268          "version": "v1beta1"
85269        }
85270      },
85271      "parameters": [
85272        {
85273          "description": "name of the PodDisruptionBudget",
85274          "in": "path",
85275          "name": "name",
85276          "required": true,
85277          "type": "string",
85278          "uniqueItems": true
85279        },
85280        {
85281          "description": "object name and auth scope, such as for teams and projects",
85282          "in": "path",
85283          "name": "namespace",
85284          "required": true,
85285          "type": "string",
85286          "uniqueItems": true
85287        },
85288        {
85289          "description": "If 'true', then the output is pretty printed.",
85290          "in": "query",
85291          "name": "pretty",
85292          "type": "string",
85293          "uniqueItems": true
85294        }
85295      ],
85296      "patch": {
85297        "consumes": [
85298          "application/json-patch+json",
85299          "application/merge-patch+json",
85300          "application/strategic-merge-patch+json",
85301          "application/apply-patch+yaml"
85302        ],
85303        "description": "partially update status of the specified PodDisruptionBudget",
85304        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
85305        "parameters": [
85306          {
85307            "in": "body",
85308            "name": "body",
85309            "required": true,
85310            "schema": {
85311              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85312            }
85313          },
85314          {
85315            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85316            "in": "query",
85317            "name": "dryRun",
85318            "type": "string",
85319            "uniqueItems": true
85320          },
85321          {
85322            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
85323            "in": "query",
85324            "name": "fieldManager",
85325            "type": "string",
85326            "uniqueItems": true
85327          },
85328          {
85329            "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.",
85330            "in": "query",
85331            "name": "force",
85332            "type": "boolean",
85333            "uniqueItems": true
85334          }
85335        ],
85336        "produces": [
85337          "application/json",
85338          "application/yaml",
85339          "application/vnd.kubernetes.protobuf"
85340        ],
85341        "responses": {
85342          "200": {
85343            "description": "OK",
85344            "schema": {
85345              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85346            }
85347          },
85348          "401": {
85349            "description": "Unauthorized"
85350          }
85351        },
85352        "schemes": [
85353          "https"
85354        ],
85355        "tags": [
85356          "policy_v1beta1"
85357        ],
85358        "x-kubernetes-action": "patch",
85359        "x-kubernetes-group-version-kind": {
85360          "group": "policy",
85361          "kind": "PodDisruptionBudget",
85362          "version": "v1beta1"
85363        }
85364      },
85365      "put": {
85366        "consumes": [
85367          "*/*"
85368        ],
85369        "description": "replace status of the specified PodDisruptionBudget",
85370        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus",
85371        "parameters": [
85372          {
85373            "in": "body",
85374            "name": "body",
85375            "required": true,
85376            "schema": {
85377              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85378            }
85379          },
85380          {
85381            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85382            "in": "query",
85383            "name": "dryRun",
85384            "type": "string",
85385            "uniqueItems": true
85386          },
85387          {
85388            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85389            "in": "query",
85390            "name": "fieldManager",
85391            "type": "string",
85392            "uniqueItems": true
85393          }
85394        ],
85395        "produces": [
85396          "application/json",
85397          "application/yaml",
85398          "application/vnd.kubernetes.protobuf"
85399        ],
85400        "responses": {
85401          "200": {
85402            "description": "OK",
85403            "schema": {
85404              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85405            }
85406          },
85407          "201": {
85408            "description": "Created",
85409            "schema": {
85410              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85411            }
85412          },
85413          "401": {
85414            "description": "Unauthorized"
85415          }
85416        },
85417        "schemes": [
85418          "https"
85419        ],
85420        "tags": [
85421          "policy_v1beta1"
85422        ],
85423        "x-kubernetes-action": "put",
85424        "x-kubernetes-group-version-kind": {
85425          "group": "policy",
85426          "kind": "PodDisruptionBudget",
85427          "version": "v1beta1"
85428        }
85429      }
85430    },
85431    "/apis/policy/v1beta1/poddisruptionbudgets": {
85432      "get": {
85433        "consumes": [
85434          "*/*"
85435        ],
85436        "description": "list or watch objects of kind PodDisruptionBudget",
85437        "operationId": "listPolicyV1beta1PodDisruptionBudgetForAllNamespaces",
85438        "produces": [
85439          "application/json",
85440          "application/yaml",
85441          "application/vnd.kubernetes.protobuf",
85442          "application/json;stream=watch",
85443          "application/vnd.kubernetes.protobuf;stream=watch"
85444        ],
85445        "responses": {
85446          "200": {
85447            "description": "OK",
85448            "schema": {
85449              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
85450            }
85451          },
85452          "401": {
85453            "description": "Unauthorized"
85454          }
85455        },
85456        "schemes": [
85457          "https"
85458        ],
85459        "tags": [
85460          "policy_v1beta1"
85461        ],
85462        "x-kubernetes-action": "list",
85463        "x-kubernetes-group-version-kind": {
85464          "group": "policy",
85465          "kind": "PodDisruptionBudget",
85466          "version": "v1beta1"
85467        }
85468      },
85469      "parameters": [
85470        {
85471          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
85472          "in": "query",
85473          "name": "allowWatchBookmarks",
85474          "type": "boolean",
85475          "uniqueItems": true
85476        },
85477        {
85478          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85479          "in": "query",
85480          "name": "continue",
85481          "type": "string",
85482          "uniqueItems": true
85483        },
85484        {
85485          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85486          "in": "query",
85487          "name": "fieldSelector",
85488          "type": "string",
85489          "uniqueItems": true
85490        },
85491        {
85492          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85493          "in": "query",
85494          "name": "labelSelector",
85495          "type": "string",
85496          "uniqueItems": true
85497        },
85498        {
85499          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85500          "in": "query",
85501          "name": "limit",
85502          "type": "integer",
85503          "uniqueItems": true
85504        },
85505        {
85506          "description": "If 'true', then the output is pretty printed.",
85507          "in": "query",
85508          "name": "pretty",
85509          "type": "string",
85510          "uniqueItems": true
85511        },
85512        {
85513          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85514          "in": "query",
85515          "name": "resourceVersion",
85516          "type": "string",
85517          "uniqueItems": true
85518        },
85519        {
85520          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85521          "in": "query",
85522          "name": "resourceVersionMatch",
85523          "type": "string",
85524          "uniqueItems": true
85525        },
85526        {
85527          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85528          "in": "query",
85529          "name": "timeoutSeconds",
85530          "type": "integer",
85531          "uniqueItems": true
85532        },
85533        {
85534          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85535          "in": "query",
85536          "name": "watch",
85537          "type": "boolean",
85538          "uniqueItems": true
85539        }
85540      ]
85541    },
85542    "/apis/policy/v1beta1/podsecuritypolicies": {
85543      "delete": {
85544        "consumes": [
85545          "*/*"
85546        ],
85547        "description": "delete collection of PodSecurityPolicy",
85548        "operationId": "deletePolicyV1beta1CollectionPodSecurityPolicy",
85549        "parameters": [
85550          {
85551            "in": "body",
85552            "name": "body",
85553            "schema": {
85554              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85555            }
85556          },
85557          {
85558            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85559            "in": "query",
85560            "name": "continue",
85561            "type": "string",
85562            "uniqueItems": true
85563          },
85564          {
85565            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85566            "in": "query",
85567            "name": "dryRun",
85568            "type": "string",
85569            "uniqueItems": true
85570          },
85571          {
85572            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85573            "in": "query",
85574            "name": "fieldSelector",
85575            "type": "string",
85576            "uniqueItems": true
85577          },
85578          {
85579            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
85580            "in": "query",
85581            "name": "gracePeriodSeconds",
85582            "type": "integer",
85583            "uniqueItems": true
85584          },
85585          {
85586            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85587            "in": "query",
85588            "name": "labelSelector",
85589            "type": "string",
85590            "uniqueItems": true
85591          },
85592          {
85593            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85594            "in": "query",
85595            "name": "limit",
85596            "type": "integer",
85597            "uniqueItems": true
85598          },
85599          {
85600            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
85601            "in": "query",
85602            "name": "orphanDependents",
85603            "type": "boolean",
85604            "uniqueItems": true
85605          },
85606          {
85607            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
85608            "in": "query",
85609            "name": "propagationPolicy",
85610            "type": "string",
85611            "uniqueItems": true
85612          },
85613          {
85614            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85615            "in": "query",
85616            "name": "resourceVersion",
85617            "type": "string",
85618            "uniqueItems": true
85619          },
85620          {
85621            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85622            "in": "query",
85623            "name": "resourceVersionMatch",
85624            "type": "string",
85625            "uniqueItems": true
85626          },
85627          {
85628            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85629            "in": "query",
85630            "name": "timeoutSeconds",
85631            "type": "integer",
85632            "uniqueItems": true
85633          }
85634        ],
85635        "produces": [
85636          "application/json",
85637          "application/yaml",
85638          "application/vnd.kubernetes.protobuf"
85639        ],
85640        "responses": {
85641          "200": {
85642            "description": "OK",
85643            "schema": {
85644              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85645            }
85646          },
85647          "401": {
85648            "description": "Unauthorized"
85649          }
85650        },
85651        "schemes": [
85652          "https"
85653        ],
85654        "tags": [
85655          "policy_v1beta1"
85656        ],
85657        "x-kubernetes-action": "deletecollection",
85658        "x-kubernetes-group-version-kind": {
85659          "group": "policy",
85660          "kind": "PodSecurityPolicy",
85661          "version": "v1beta1"
85662        }
85663      },
85664      "get": {
85665        "consumes": [
85666          "*/*"
85667        ],
85668        "description": "list or watch objects of kind PodSecurityPolicy",
85669        "operationId": "listPolicyV1beta1PodSecurityPolicy",
85670        "parameters": [
85671          {
85672            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
85673            "in": "query",
85674            "name": "allowWatchBookmarks",
85675            "type": "boolean",
85676            "uniqueItems": true
85677          },
85678          {
85679            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85680            "in": "query",
85681            "name": "continue",
85682            "type": "string",
85683            "uniqueItems": true
85684          },
85685          {
85686            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85687            "in": "query",
85688            "name": "fieldSelector",
85689            "type": "string",
85690            "uniqueItems": true
85691          },
85692          {
85693            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85694            "in": "query",
85695            "name": "labelSelector",
85696            "type": "string",
85697            "uniqueItems": true
85698          },
85699          {
85700            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85701            "in": "query",
85702            "name": "limit",
85703            "type": "integer",
85704            "uniqueItems": true
85705          },
85706          {
85707            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85708            "in": "query",
85709            "name": "resourceVersion",
85710            "type": "string",
85711            "uniqueItems": true
85712          },
85713          {
85714            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85715            "in": "query",
85716            "name": "resourceVersionMatch",
85717            "type": "string",
85718            "uniqueItems": true
85719          },
85720          {
85721            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85722            "in": "query",
85723            "name": "timeoutSeconds",
85724            "type": "integer",
85725            "uniqueItems": true
85726          },
85727          {
85728            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85729            "in": "query",
85730            "name": "watch",
85731            "type": "boolean",
85732            "uniqueItems": true
85733          }
85734        ],
85735        "produces": [
85736          "application/json",
85737          "application/yaml",
85738          "application/vnd.kubernetes.protobuf",
85739          "application/json;stream=watch",
85740          "application/vnd.kubernetes.protobuf;stream=watch"
85741        ],
85742        "responses": {
85743          "200": {
85744            "description": "OK",
85745            "schema": {
85746              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicyList"
85747            }
85748          },
85749          "401": {
85750            "description": "Unauthorized"
85751          }
85752        },
85753        "schemes": [
85754          "https"
85755        ],
85756        "tags": [
85757          "policy_v1beta1"
85758        ],
85759        "x-kubernetes-action": "list",
85760        "x-kubernetes-group-version-kind": {
85761          "group": "policy",
85762          "kind": "PodSecurityPolicy",
85763          "version": "v1beta1"
85764        }
85765      },
85766      "parameters": [
85767        {
85768          "description": "If 'true', then the output is pretty printed.",
85769          "in": "query",
85770          "name": "pretty",
85771          "type": "string",
85772          "uniqueItems": true
85773        }
85774      ],
85775      "post": {
85776        "consumes": [
85777          "*/*"
85778        ],
85779        "description": "create a PodSecurityPolicy",
85780        "operationId": "createPolicyV1beta1PodSecurityPolicy",
85781        "parameters": [
85782          {
85783            "in": "body",
85784            "name": "body",
85785            "required": true,
85786            "schema": {
85787              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85788            }
85789          },
85790          {
85791            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85792            "in": "query",
85793            "name": "dryRun",
85794            "type": "string",
85795            "uniqueItems": true
85796          },
85797          {
85798            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85799            "in": "query",
85800            "name": "fieldManager",
85801            "type": "string",
85802            "uniqueItems": true
85803          }
85804        ],
85805        "produces": [
85806          "application/json",
85807          "application/yaml",
85808          "application/vnd.kubernetes.protobuf"
85809        ],
85810        "responses": {
85811          "200": {
85812            "description": "OK",
85813            "schema": {
85814              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85815            }
85816          },
85817          "201": {
85818            "description": "Created",
85819            "schema": {
85820              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85821            }
85822          },
85823          "202": {
85824            "description": "Accepted",
85825            "schema": {
85826              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85827            }
85828          },
85829          "401": {
85830            "description": "Unauthorized"
85831          }
85832        },
85833        "schemes": [
85834          "https"
85835        ],
85836        "tags": [
85837          "policy_v1beta1"
85838        ],
85839        "x-kubernetes-action": "post",
85840        "x-kubernetes-group-version-kind": {
85841          "group": "policy",
85842          "kind": "PodSecurityPolicy",
85843          "version": "v1beta1"
85844        }
85845      }
85846    },
85847    "/apis/policy/v1beta1/podsecuritypolicies/{name}": {
85848      "delete": {
85849        "consumes": [
85850          "*/*"
85851        ],
85852        "description": "delete a PodSecurityPolicy",
85853        "operationId": "deletePolicyV1beta1PodSecurityPolicy",
85854        "parameters": [
85855          {
85856            "in": "body",
85857            "name": "body",
85858            "schema": {
85859              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85860            }
85861          },
85862          {
85863            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85864            "in": "query",
85865            "name": "dryRun",
85866            "type": "string",
85867            "uniqueItems": true
85868          },
85869          {
85870            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
85871            "in": "query",
85872            "name": "gracePeriodSeconds",
85873            "type": "integer",
85874            "uniqueItems": true
85875          },
85876          {
85877            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
85878            "in": "query",
85879            "name": "orphanDependents",
85880            "type": "boolean",
85881            "uniqueItems": true
85882          },
85883          {
85884            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
85885            "in": "query",
85886            "name": "propagationPolicy",
85887            "type": "string",
85888            "uniqueItems": true
85889          }
85890        ],
85891        "produces": [
85892          "application/json",
85893          "application/yaml",
85894          "application/vnd.kubernetes.protobuf"
85895        ],
85896        "responses": {
85897          "200": {
85898            "description": "OK",
85899            "schema": {
85900              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85901            }
85902          },
85903          "202": {
85904            "description": "Accepted",
85905            "schema": {
85906              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85907            }
85908          },
85909          "401": {
85910            "description": "Unauthorized"
85911          }
85912        },
85913        "schemes": [
85914          "https"
85915        ],
85916        "tags": [
85917          "policy_v1beta1"
85918        ],
85919        "x-kubernetes-action": "delete",
85920        "x-kubernetes-group-version-kind": {
85921          "group": "policy",
85922          "kind": "PodSecurityPolicy",
85923          "version": "v1beta1"
85924        }
85925      },
85926      "get": {
85927        "consumes": [
85928          "*/*"
85929        ],
85930        "description": "read the specified PodSecurityPolicy",
85931        "operationId": "readPolicyV1beta1PodSecurityPolicy",
85932        "produces": [
85933          "application/json",
85934          "application/yaml",
85935          "application/vnd.kubernetes.protobuf"
85936        ],
85937        "responses": {
85938          "200": {
85939            "description": "OK",
85940            "schema": {
85941              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85942            }
85943          },
85944          "401": {
85945            "description": "Unauthorized"
85946          }
85947        },
85948        "schemes": [
85949          "https"
85950        ],
85951        "tags": [
85952          "policy_v1beta1"
85953        ],
85954        "x-kubernetes-action": "get",
85955        "x-kubernetes-group-version-kind": {
85956          "group": "policy",
85957          "kind": "PodSecurityPolicy",
85958          "version": "v1beta1"
85959        }
85960      },
85961      "parameters": [
85962        {
85963          "description": "name of the PodSecurityPolicy",
85964          "in": "path",
85965          "name": "name",
85966          "required": true,
85967          "type": "string",
85968          "uniqueItems": true
85969        },
85970        {
85971          "description": "If 'true', then the output is pretty printed.",
85972          "in": "query",
85973          "name": "pretty",
85974          "type": "string",
85975          "uniqueItems": true
85976        }
85977      ],
85978      "patch": {
85979        "consumes": [
85980          "application/json-patch+json",
85981          "application/merge-patch+json",
85982          "application/strategic-merge-patch+json",
85983          "application/apply-patch+yaml"
85984        ],
85985        "description": "partially update the specified PodSecurityPolicy",
85986        "operationId": "patchPolicyV1beta1PodSecurityPolicy",
85987        "parameters": [
85988          {
85989            "in": "body",
85990            "name": "body",
85991            "required": true,
85992            "schema": {
85993              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85994            }
85995          },
85996          {
85997            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85998            "in": "query",
85999            "name": "dryRun",
86000            "type": "string",
86001            "uniqueItems": true
86002          },
86003          {
86004            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
86005            "in": "query",
86006            "name": "fieldManager",
86007            "type": "string",
86008            "uniqueItems": true
86009          },
86010          {
86011            "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.",
86012            "in": "query",
86013            "name": "force",
86014            "type": "boolean",
86015            "uniqueItems": true
86016          }
86017        ],
86018        "produces": [
86019          "application/json",
86020          "application/yaml",
86021          "application/vnd.kubernetes.protobuf"
86022        ],
86023        "responses": {
86024          "200": {
86025            "description": "OK",
86026            "schema": {
86027              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
86028            }
86029          },
86030          "401": {
86031            "description": "Unauthorized"
86032          }
86033        },
86034        "schemes": [
86035          "https"
86036        ],
86037        "tags": [
86038          "policy_v1beta1"
86039        ],
86040        "x-kubernetes-action": "patch",
86041        "x-kubernetes-group-version-kind": {
86042          "group": "policy",
86043          "kind": "PodSecurityPolicy",
86044          "version": "v1beta1"
86045        }
86046      },
86047      "put": {
86048        "consumes": [
86049          "*/*"
86050        ],
86051        "description": "replace the specified PodSecurityPolicy",
86052        "operationId": "replacePolicyV1beta1PodSecurityPolicy",
86053        "parameters": [
86054          {
86055            "in": "body",
86056            "name": "body",
86057            "required": true,
86058            "schema": {
86059              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
86060            }
86061          },
86062          {
86063            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86064            "in": "query",
86065            "name": "dryRun",
86066            "type": "string",
86067            "uniqueItems": true
86068          },
86069          {
86070            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
86071            "in": "query",
86072            "name": "fieldManager",
86073            "type": "string",
86074            "uniqueItems": true
86075          }
86076        ],
86077        "produces": [
86078          "application/json",
86079          "application/yaml",
86080          "application/vnd.kubernetes.protobuf"
86081        ],
86082        "responses": {
86083          "200": {
86084            "description": "OK",
86085            "schema": {
86086              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
86087            }
86088          },
86089          "201": {
86090            "description": "Created",
86091            "schema": {
86092              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
86093            }
86094          },
86095          "401": {
86096            "description": "Unauthorized"
86097          }
86098        },
86099        "schemes": [
86100          "https"
86101        ],
86102        "tags": [
86103          "policy_v1beta1"
86104        ],
86105        "x-kubernetes-action": "put",
86106        "x-kubernetes-group-version-kind": {
86107          "group": "policy",
86108          "kind": "PodSecurityPolicy",
86109          "version": "v1beta1"
86110        }
86111      }
86112    },
86113    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets": {
86114      "get": {
86115        "consumes": [
86116          "*/*"
86117        ],
86118        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
86119        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudgetList",
86120        "produces": [
86121          "application/json",
86122          "application/yaml",
86123          "application/vnd.kubernetes.protobuf",
86124          "application/json;stream=watch",
86125          "application/vnd.kubernetes.protobuf;stream=watch"
86126        ],
86127        "responses": {
86128          "200": {
86129            "description": "OK",
86130            "schema": {
86131              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86132            }
86133          },
86134          "401": {
86135            "description": "Unauthorized"
86136          }
86137        },
86138        "schemes": [
86139          "https"
86140        ],
86141        "tags": [
86142          "policy_v1beta1"
86143        ],
86144        "x-kubernetes-action": "watchlist",
86145        "x-kubernetes-group-version-kind": {
86146          "group": "policy",
86147          "kind": "PodDisruptionBudget",
86148          "version": "v1beta1"
86149        }
86150      },
86151      "parameters": [
86152        {
86153          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86154          "in": "query",
86155          "name": "allowWatchBookmarks",
86156          "type": "boolean",
86157          "uniqueItems": true
86158        },
86159        {
86160          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86161          "in": "query",
86162          "name": "continue",
86163          "type": "string",
86164          "uniqueItems": true
86165        },
86166        {
86167          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86168          "in": "query",
86169          "name": "fieldSelector",
86170          "type": "string",
86171          "uniqueItems": true
86172        },
86173        {
86174          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86175          "in": "query",
86176          "name": "labelSelector",
86177          "type": "string",
86178          "uniqueItems": true
86179        },
86180        {
86181          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86182          "in": "query",
86183          "name": "limit",
86184          "type": "integer",
86185          "uniqueItems": true
86186        },
86187        {
86188          "description": "object name and auth scope, such as for teams and projects",
86189          "in": "path",
86190          "name": "namespace",
86191          "required": true,
86192          "type": "string",
86193          "uniqueItems": true
86194        },
86195        {
86196          "description": "If 'true', then the output is pretty printed.",
86197          "in": "query",
86198          "name": "pretty",
86199          "type": "string",
86200          "uniqueItems": true
86201        },
86202        {
86203          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86204          "in": "query",
86205          "name": "resourceVersion",
86206          "type": "string",
86207          "uniqueItems": true
86208        },
86209        {
86210          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86211          "in": "query",
86212          "name": "resourceVersionMatch",
86213          "type": "string",
86214          "uniqueItems": true
86215        },
86216        {
86217          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86218          "in": "query",
86219          "name": "timeoutSeconds",
86220          "type": "integer",
86221          "uniqueItems": true
86222        },
86223        {
86224          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86225          "in": "query",
86226          "name": "watch",
86227          "type": "boolean",
86228          "uniqueItems": true
86229        }
86230      ]
86231    },
86232    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": {
86233      "get": {
86234        "consumes": [
86235          "*/*"
86236        ],
86237        "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.",
86238        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudget",
86239        "produces": [
86240          "application/json",
86241          "application/yaml",
86242          "application/vnd.kubernetes.protobuf",
86243          "application/json;stream=watch",
86244          "application/vnd.kubernetes.protobuf;stream=watch"
86245        ],
86246        "responses": {
86247          "200": {
86248            "description": "OK",
86249            "schema": {
86250              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86251            }
86252          },
86253          "401": {
86254            "description": "Unauthorized"
86255          }
86256        },
86257        "schemes": [
86258          "https"
86259        ],
86260        "tags": [
86261          "policy_v1beta1"
86262        ],
86263        "x-kubernetes-action": "watch",
86264        "x-kubernetes-group-version-kind": {
86265          "group": "policy",
86266          "kind": "PodDisruptionBudget",
86267          "version": "v1beta1"
86268        }
86269      },
86270      "parameters": [
86271        {
86272          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86273          "in": "query",
86274          "name": "allowWatchBookmarks",
86275          "type": "boolean",
86276          "uniqueItems": true
86277        },
86278        {
86279          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86280          "in": "query",
86281          "name": "continue",
86282          "type": "string",
86283          "uniqueItems": true
86284        },
86285        {
86286          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86287          "in": "query",
86288          "name": "fieldSelector",
86289          "type": "string",
86290          "uniqueItems": true
86291        },
86292        {
86293          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86294          "in": "query",
86295          "name": "labelSelector",
86296          "type": "string",
86297          "uniqueItems": true
86298        },
86299        {
86300          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86301          "in": "query",
86302          "name": "limit",
86303          "type": "integer",
86304          "uniqueItems": true
86305        },
86306        {
86307          "description": "name of the PodDisruptionBudget",
86308          "in": "path",
86309          "name": "name",
86310          "required": true,
86311          "type": "string",
86312          "uniqueItems": true
86313        },
86314        {
86315          "description": "object name and auth scope, such as for teams and projects",
86316          "in": "path",
86317          "name": "namespace",
86318          "required": true,
86319          "type": "string",
86320          "uniqueItems": true
86321        },
86322        {
86323          "description": "If 'true', then the output is pretty printed.",
86324          "in": "query",
86325          "name": "pretty",
86326          "type": "string",
86327          "uniqueItems": true
86328        },
86329        {
86330          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86331          "in": "query",
86332          "name": "resourceVersion",
86333          "type": "string",
86334          "uniqueItems": true
86335        },
86336        {
86337          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86338          "in": "query",
86339          "name": "resourceVersionMatch",
86340          "type": "string",
86341          "uniqueItems": true
86342        },
86343        {
86344          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86345          "in": "query",
86346          "name": "timeoutSeconds",
86347          "type": "integer",
86348          "uniqueItems": true
86349        },
86350        {
86351          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86352          "in": "query",
86353          "name": "watch",
86354          "type": "boolean",
86355          "uniqueItems": true
86356        }
86357      ]
86358    },
86359    "/apis/policy/v1beta1/watch/poddisruptionbudgets": {
86360      "get": {
86361        "consumes": [
86362          "*/*"
86363        ],
86364        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
86365        "operationId": "watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces",
86366        "produces": [
86367          "application/json",
86368          "application/yaml",
86369          "application/vnd.kubernetes.protobuf",
86370          "application/json;stream=watch",
86371          "application/vnd.kubernetes.protobuf;stream=watch"
86372        ],
86373        "responses": {
86374          "200": {
86375            "description": "OK",
86376            "schema": {
86377              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86378            }
86379          },
86380          "401": {
86381            "description": "Unauthorized"
86382          }
86383        },
86384        "schemes": [
86385          "https"
86386        ],
86387        "tags": [
86388          "policy_v1beta1"
86389        ],
86390        "x-kubernetes-action": "watchlist",
86391        "x-kubernetes-group-version-kind": {
86392          "group": "policy",
86393          "kind": "PodDisruptionBudget",
86394          "version": "v1beta1"
86395        }
86396      },
86397      "parameters": [
86398        {
86399          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86400          "in": "query",
86401          "name": "allowWatchBookmarks",
86402          "type": "boolean",
86403          "uniqueItems": true
86404        },
86405        {
86406          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86407          "in": "query",
86408          "name": "continue",
86409          "type": "string",
86410          "uniqueItems": true
86411        },
86412        {
86413          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86414          "in": "query",
86415          "name": "fieldSelector",
86416          "type": "string",
86417          "uniqueItems": true
86418        },
86419        {
86420          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86421          "in": "query",
86422          "name": "labelSelector",
86423          "type": "string",
86424          "uniqueItems": true
86425        },
86426        {
86427          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86428          "in": "query",
86429          "name": "limit",
86430          "type": "integer",
86431          "uniqueItems": true
86432        },
86433        {
86434          "description": "If 'true', then the output is pretty printed.",
86435          "in": "query",
86436          "name": "pretty",
86437          "type": "string",
86438          "uniqueItems": true
86439        },
86440        {
86441          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86442          "in": "query",
86443          "name": "resourceVersion",
86444          "type": "string",
86445          "uniqueItems": true
86446        },
86447        {
86448          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86449          "in": "query",
86450          "name": "resourceVersionMatch",
86451          "type": "string",
86452          "uniqueItems": true
86453        },
86454        {
86455          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86456          "in": "query",
86457          "name": "timeoutSeconds",
86458          "type": "integer",
86459          "uniqueItems": true
86460        },
86461        {
86462          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86463          "in": "query",
86464          "name": "watch",
86465          "type": "boolean",
86466          "uniqueItems": true
86467        }
86468      ]
86469    },
86470    "/apis/policy/v1beta1/watch/podsecuritypolicies": {
86471      "get": {
86472        "consumes": [
86473          "*/*"
86474        ],
86475        "description": "watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
86476        "operationId": "watchPolicyV1beta1PodSecurityPolicyList",
86477        "produces": [
86478          "application/json",
86479          "application/yaml",
86480          "application/vnd.kubernetes.protobuf",
86481          "application/json;stream=watch",
86482          "application/vnd.kubernetes.protobuf;stream=watch"
86483        ],
86484        "responses": {
86485          "200": {
86486            "description": "OK",
86487            "schema": {
86488              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86489            }
86490          },
86491          "401": {
86492            "description": "Unauthorized"
86493          }
86494        },
86495        "schemes": [
86496          "https"
86497        ],
86498        "tags": [
86499          "policy_v1beta1"
86500        ],
86501        "x-kubernetes-action": "watchlist",
86502        "x-kubernetes-group-version-kind": {
86503          "group": "policy",
86504          "kind": "PodSecurityPolicy",
86505          "version": "v1beta1"
86506        }
86507      },
86508      "parameters": [
86509        {
86510          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86511          "in": "query",
86512          "name": "allowWatchBookmarks",
86513          "type": "boolean",
86514          "uniqueItems": true
86515        },
86516        {
86517          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86518          "in": "query",
86519          "name": "continue",
86520          "type": "string",
86521          "uniqueItems": true
86522        },
86523        {
86524          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86525          "in": "query",
86526          "name": "fieldSelector",
86527          "type": "string",
86528          "uniqueItems": true
86529        },
86530        {
86531          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86532          "in": "query",
86533          "name": "labelSelector",
86534          "type": "string",
86535          "uniqueItems": true
86536        },
86537        {
86538          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86539          "in": "query",
86540          "name": "limit",
86541          "type": "integer",
86542          "uniqueItems": true
86543        },
86544        {
86545          "description": "If 'true', then the output is pretty printed.",
86546          "in": "query",
86547          "name": "pretty",
86548          "type": "string",
86549          "uniqueItems": true
86550        },
86551        {
86552          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86553          "in": "query",
86554          "name": "resourceVersion",
86555          "type": "string",
86556          "uniqueItems": true
86557        },
86558        {
86559          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86560          "in": "query",
86561          "name": "resourceVersionMatch",
86562          "type": "string",
86563          "uniqueItems": true
86564        },
86565        {
86566          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86567          "in": "query",
86568          "name": "timeoutSeconds",
86569          "type": "integer",
86570          "uniqueItems": true
86571        },
86572        {
86573          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86574          "in": "query",
86575          "name": "watch",
86576          "type": "boolean",
86577          "uniqueItems": true
86578        }
86579      ]
86580    },
86581    "/apis/policy/v1beta1/watch/podsecuritypolicies/{name}": {
86582      "get": {
86583        "consumes": [
86584          "*/*"
86585        ],
86586        "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.",
86587        "operationId": "watchPolicyV1beta1PodSecurityPolicy",
86588        "produces": [
86589          "application/json",
86590          "application/yaml",
86591          "application/vnd.kubernetes.protobuf",
86592          "application/json;stream=watch",
86593          "application/vnd.kubernetes.protobuf;stream=watch"
86594        ],
86595        "responses": {
86596          "200": {
86597            "description": "OK",
86598            "schema": {
86599              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86600            }
86601          },
86602          "401": {
86603            "description": "Unauthorized"
86604          }
86605        },
86606        "schemes": [
86607          "https"
86608        ],
86609        "tags": [
86610          "policy_v1beta1"
86611        ],
86612        "x-kubernetes-action": "watch",
86613        "x-kubernetes-group-version-kind": {
86614          "group": "policy",
86615          "kind": "PodSecurityPolicy",
86616          "version": "v1beta1"
86617        }
86618      },
86619      "parameters": [
86620        {
86621          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86622          "in": "query",
86623          "name": "allowWatchBookmarks",
86624          "type": "boolean",
86625          "uniqueItems": true
86626        },
86627        {
86628          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86629          "in": "query",
86630          "name": "continue",
86631          "type": "string",
86632          "uniqueItems": true
86633        },
86634        {
86635          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86636          "in": "query",
86637          "name": "fieldSelector",
86638          "type": "string",
86639          "uniqueItems": true
86640        },
86641        {
86642          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86643          "in": "query",
86644          "name": "labelSelector",
86645          "type": "string",
86646          "uniqueItems": true
86647        },
86648        {
86649          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86650          "in": "query",
86651          "name": "limit",
86652          "type": "integer",
86653          "uniqueItems": true
86654        },
86655        {
86656          "description": "name of the PodSecurityPolicy",
86657          "in": "path",
86658          "name": "name",
86659          "required": true,
86660          "type": "string",
86661          "uniqueItems": true
86662        },
86663        {
86664          "description": "If 'true', then the output is pretty printed.",
86665          "in": "query",
86666          "name": "pretty",
86667          "type": "string",
86668          "uniqueItems": true
86669        },
86670        {
86671          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86672          "in": "query",
86673          "name": "resourceVersion",
86674          "type": "string",
86675          "uniqueItems": true
86676        },
86677        {
86678          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86679          "in": "query",
86680          "name": "resourceVersionMatch",
86681          "type": "string",
86682          "uniqueItems": true
86683        },
86684        {
86685          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86686          "in": "query",
86687          "name": "timeoutSeconds",
86688          "type": "integer",
86689          "uniqueItems": true
86690        },
86691        {
86692          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86693          "in": "query",
86694          "name": "watch",
86695          "type": "boolean",
86696          "uniqueItems": true
86697        }
86698      ]
86699    },
86700    "/apis/rbac.authorization.k8s.io/": {
86701      "get": {
86702        "consumes": [
86703          "application/json",
86704          "application/yaml",
86705          "application/vnd.kubernetes.protobuf"
86706        ],
86707        "description": "get information of a group",
86708        "operationId": "getRbacAuthorizationAPIGroup",
86709        "produces": [
86710          "application/json",
86711          "application/yaml",
86712          "application/vnd.kubernetes.protobuf"
86713        ],
86714        "responses": {
86715          "200": {
86716            "description": "OK",
86717            "schema": {
86718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
86719            }
86720          },
86721          "401": {
86722            "description": "Unauthorized"
86723          }
86724        },
86725        "schemes": [
86726          "https"
86727        ],
86728        "tags": [
86729          "rbacAuthorization"
86730        ]
86731      }
86732    },
86733    "/apis/rbac.authorization.k8s.io/v1/": {
86734      "get": {
86735        "consumes": [
86736          "application/json",
86737          "application/yaml",
86738          "application/vnd.kubernetes.protobuf"
86739        ],
86740        "description": "get available resources",
86741        "operationId": "getRbacAuthorizationV1APIResources",
86742        "produces": [
86743          "application/json",
86744          "application/yaml",
86745          "application/vnd.kubernetes.protobuf"
86746        ],
86747        "responses": {
86748          "200": {
86749            "description": "OK",
86750            "schema": {
86751              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
86752            }
86753          },
86754          "401": {
86755            "description": "Unauthorized"
86756          }
86757        },
86758        "schemes": [
86759          "https"
86760        ],
86761        "tags": [
86762          "rbacAuthorization_v1"
86763        ]
86764      }
86765    },
86766    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings": {
86767      "delete": {
86768        "consumes": [
86769          "*/*"
86770        ],
86771        "description": "delete collection of ClusterRoleBinding",
86772        "operationId": "deleteRbacAuthorizationV1CollectionClusterRoleBinding",
86773        "parameters": [
86774          {
86775            "in": "body",
86776            "name": "body",
86777            "schema": {
86778              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
86779            }
86780          },
86781          {
86782            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86783            "in": "query",
86784            "name": "continue",
86785            "type": "string",
86786            "uniqueItems": true
86787          },
86788          {
86789            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86790            "in": "query",
86791            "name": "dryRun",
86792            "type": "string",
86793            "uniqueItems": true
86794          },
86795          {
86796            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86797            "in": "query",
86798            "name": "fieldSelector",
86799            "type": "string",
86800            "uniqueItems": true
86801          },
86802          {
86803            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
86804            "in": "query",
86805            "name": "gracePeriodSeconds",
86806            "type": "integer",
86807            "uniqueItems": true
86808          },
86809          {
86810            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86811            "in": "query",
86812            "name": "labelSelector",
86813            "type": "string",
86814            "uniqueItems": true
86815          },
86816          {
86817            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86818            "in": "query",
86819            "name": "limit",
86820            "type": "integer",
86821            "uniqueItems": true
86822          },
86823          {
86824            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
86825            "in": "query",
86826            "name": "orphanDependents",
86827            "type": "boolean",
86828            "uniqueItems": true
86829          },
86830          {
86831            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
86832            "in": "query",
86833            "name": "propagationPolicy",
86834            "type": "string",
86835            "uniqueItems": true
86836          },
86837          {
86838            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86839            "in": "query",
86840            "name": "resourceVersion",
86841            "type": "string",
86842            "uniqueItems": true
86843          },
86844          {
86845            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86846            "in": "query",
86847            "name": "resourceVersionMatch",
86848            "type": "string",
86849            "uniqueItems": true
86850          },
86851          {
86852            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86853            "in": "query",
86854            "name": "timeoutSeconds",
86855            "type": "integer",
86856            "uniqueItems": true
86857          }
86858        ],
86859        "produces": [
86860          "application/json",
86861          "application/yaml",
86862          "application/vnd.kubernetes.protobuf"
86863        ],
86864        "responses": {
86865          "200": {
86866            "description": "OK",
86867            "schema": {
86868              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
86869            }
86870          },
86871          "401": {
86872            "description": "Unauthorized"
86873          }
86874        },
86875        "schemes": [
86876          "https"
86877        ],
86878        "tags": [
86879          "rbacAuthorization_v1"
86880        ],
86881        "x-kubernetes-action": "deletecollection",
86882        "x-kubernetes-group-version-kind": {
86883          "group": "rbac.authorization.k8s.io",
86884          "kind": "ClusterRoleBinding",
86885          "version": "v1"
86886        }
86887      },
86888      "get": {
86889        "consumes": [
86890          "*/*"
86891        ],
86892        "description": "list or watch objects of kind ClusterRoleBinding",
86893        "operationId": "listRbacAuthorizationV1ClusterRoleBinding",
86894        "parameters": [
86895          {
86896            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86897            "in": "query",
86898            "name": "allowWatchBookmarks",
86899            "type": "boolean",
86900            "uniqueItems": true
86901          },
86902          {
86903            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86904            "in": "query",
86905            "name": "continue",
86906            "type": "string",
86907            "uniqueItems": true
86908          },
86909          {
86910            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86911            "in": "query",
86912            "name": "fieldSelector",
86913            "type": "string",
86914            "uniqueItems": true
86915          },
86916          {
86917            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86918            "in": "query",
86919            "name": "labelSelector",
86920            "type": "string",
86921            "uniqueItems": true
86922          },
86923          {
86924            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86925            "in": "query",
86926            "name": "limit",
86927            "type": "integer",
86928            "uniqueItems": true
86929          },
86930          {
86931            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86932            "in": "query",
86933            "name": "resourceVersion",
86934            "type": "string",
86935            "uniqueItems": true
86936          },
86937          {
86938            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86939            "in": "query",
86940            "name": "resourceVersionMatch",
86941            "type": "string",
86942            "uniqueItems": true
86943          },
86944          {
86945            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86946            "in": "query",
86947            "name": "timeoutSeconds",
86948            "type": "integer",
86949            "uniqueItems": true
86950          },
86951          {
86952            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86953            "in": "query",
86954            "name": "watch",
86955            "type": "boolean",
86956            "uniqueItems": true
86957          }
86958        ],
86959        "produces": [
86960          "application/json",
86961          "application/yaml",
86962          "application/vnd.kubernetes.protobuf",
86963          "application/json;stream=watch",
86964          "application/vnd.kubernetes.protobuf;stream=watch"
86965        ],
86966        "responses": {
86967          "200": {
86968            "description": "OK",
86969            "schema": {
86970              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBindingList"
86971            }
86972          },
86973          "401": {
86974            "description": "Unauthorized"
86975          }
86976        },
86977        "schemes": [
86978          "https"
86979        ],
86980        "tags": [
86981          "rbacAuthorization_v1"
86982        ],
86983        "x-kubernetes-action": "list",
86984        "x-kubernetes-group-version-kind": {
86985          "group": "rbac.authorization.k8s.io",
86986          "kind": "ClusterRoleBinding",
86987          "version": "v1"
86988        }
86989      },
86990      "parameters": [
86991        {
86992          "description": "If 'true', then the output is pretty printed.",
86993          "in": "query",
86994          "name": "pretty",
86995          "type": "string",
86996          "uniqueItems": true
86997        }
86998      ],
86999      "post": {
87000        "consumes": [
87001          "*/*"
87002        ],
87003        "description": "create a ClusterRoleBinding",
87004        "operationId": "createRbacAuthorizationV1ClusterRoleBinding",
87005        "parameters": [
87006          {
87007            "in": "body",
87008            "name": "body",
87009            "required": true,
87010            "schema": {
87011              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87012            }
87013          },
87014          {
87015            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87016            "in": "query",
87017            "name": "dryRun",
87018            "type": "string",
87019            "uniqueItems": true
87020          },
87021          {
87022            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87023            "in": "query",
87024            "name": "fieldManager",
87025            "type": "string",
87026            "uniqueItems": true
87027          }
87028        ],
87029        "produces": [
87030          "application/json",
87031          "application/yaml",
87032          "application/vnd.kubernetes.protobuf"
87033        ],
87034        "responses": {
87035          "200": {
87036            "description": "OK",
87037            "schema": {
87038              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87039            }
87040          },
87041          "201": {
87042            "description": "Created",
87043            "schema": {
87044              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87045            }
87046          },
87047          "202": {
87048            "description": "Accepted",
87049            "schema": {
87050              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87051            }
87052          },
87053          "401": {
87054            "description": "Unauthorized"
87055          }
87056        },
87057        "schemes": [
87058          "https"
87059        ],
87060        "tags": [
87061          "rbacAuthorization_v1"
87062        ],
87063        "x-kubernetes-action": "post",
87064        "x-kubernetes-group-version-kind": {
87065          "group": "rbac.authorization.k8s.io",
87066          "kind": "ClusterRoleBinding",
87067          "version": "v1"
87068        }
87069      }
87070    },
87071    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}": {
87072      "delete": {
87073        "consumes": [
87074          "*/*"
87075        ],
87076        "description": "delete a ClusterRoleBinding",
87077        "operationId": "deleteRbacAuthorizationV1ClusterRoleBinding",
87078        "parameters": [
87079          {
87080            "in": "body",
87081            "name": "body",
87082            "schema": {
87083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87084            }
87085          },
87086          {
87087            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87088            "in": "query",
87089            "name": "dryRun",
87090            "type": "string",
87091            "uniqueItems": true
87092          },
87093          {
87094            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87095            "in": "query",
87096            "name": "gracePeriodSeconds",
87097            "type": "integer",
87098            "uniqueItems": true
87099          },
87100          {
87101            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87102            "in": "query",
87103            "name": "orphanDependents",
87104            "type": "boolean",
87105            "uniqueItems": true
87106          },
87107          {
87108            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87109            "in": "query",
87110            "name": "propagationPolicy",
87111            "type": "string",
87112            "uniqueItems": true
87113          }
87114        ],
87115        "produces": [
87116          "application/json",
87117          "application/yaml",
87118          "application/vnd.kubernetes.protobuf"
87119        ],
87120        "responses": {
87121          "200": {
87122            "description": "OK",
87123            "schema": {
87124              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87125            }
87126          },
87127          "202": {
87128            "description": "Accepted",
87129            "schema": {
87130              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87131            }
87132          },
87133          "401": {
87134            "description": "Unauthorized"
87135          }
87136        },
87137        "schemes": [
87138          "https"
87139        ],
87140        "tags": [
87141          "rbacAuthorization_v1"
87142        ],
87143        "x-kubernetes-action": "delete",
87144        "x-kubernetes-group-version-kind": {
87145          "group": "rbac.authorization.k8s.io",
87146          "kind": "ClusterRoleBinding",
87147          "version": "v1"
87148        }
87149      },
87150      "get": {
87151        "consumes": [
87152          "*/*"
87153        ],
87154        "description": "read the specified ClusterRoleBinding",
87155        "operationId": "readRbacAuthorizationV1ClusterRoleBinding",
87156        "produces": [
87157          "application/json",
87158          "application/yaml",
87159          "application/vnd.kubernetes.protobuf"
87160        ],
87161        "responses": {
87162          "200": {
87163            "description": "OK",
87164            "schema": {
87165              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87166            }
87167          },
87168          "401": {
87169            "description": "Unauthorized"
87170          }
87171        },
87172        "schemes": [
87173          "https"
87174        ],
87175        "tags": [
87176          "rbacAuthorization_v1"
87177        ],
87178        "x-kubernetes-action": "get",
87179        "x-kubernetes-group-version-kind": {
87180          "group": "rbac.authorization.k8s.io",
87181          "kind": "ClusterRoleBinding",
87182          "version": "v1"
87183        }
87184      },
87185      "parameters": [
87186        {
87187          "description": "name of the ClusterRoleBinding",
87188          "in": "path",
87189          "name": "name",
87190          "required": true,
87191          "type": "string",
87192          "uniqueItems": true
87193        },
87194        {
87195          "description": "If 'true', then the output is pretty printed.",
87196          "in": "query",
87197          "name": "pretty",
87198          "type": "string",
87199          "uniqueItems": true
87200        }
87201      ],
87202      "patch": {
87203        "consumes": [
87204          "application/json-patch+json",
87205          "application/merge-patch+json",
87206          "application/strategic-merge-patch+json",
87207          "application/apply-patch+yaml"
87208        ],
87209        "description": "partially update the specified ClusterRoleBinding",
87210        "operationId": "patchRbacAuthorizationV1ClusterRoleBinding",
87211        "parameters": [
87212          {
87213            "in": "body",
87214            "name": "body",
87215            "required": true,
87216            "schema": {
87217              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
87218            }
87219          },
87220          {
87221            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87222            "in": "query",
87223            "name": "dryRun",
87224            "type": "string",
87225            "uniqueItems": true
87226          },
87227          {
87228            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
87229            "in": "query",
87230            "name": "fieldManager",
87231            "type": "string",
87232            "uniqueItems": true
87233          },
87234          {
87235            "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.",
87236            "in": "query",
87237            "name": "force",
87238            "type": "boolean",
87239            "uniqueItems": true
87240          }
87241        ],
87242        "produces": [
87243          "application/json",
87244          "application/yaml",
87245          "application/vnd.kubernetes.protobuf"
87246        ],
87247        "responses": {
87248          "200": {
87249            "description": "OK",
87250            "schema": {
87251              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87252            }
87253          },
87254          "401": {
87255            "description": "Unauthorized"
87256          }
87257        },
87258        "schemes": [
87259          "https"
87260        ],
87261        "tags": [
87262          "rbacAuthorization_v1"
87263        ],
87264        "x-kubernetes-action": "patch",
87265        "x-kubernetes-group-version-kind": {
87266          "group": "rbac.authorization.k8s.io",
87267          "kind": "ClusterRoleBinding",
87268          "version": "v1"
87269        }
87270      },
87271      "put": {
87272        "consumes": [
87273          "*/*"
87274        ],
87275        "description": "replace the specified ClusterRoleBinding",
87276        "operationId": "replaceRbacAuthorizationV1ClusterRoleBinding",
87277        "parameters": [
87278          {
87279            "in": "body",
87280            "name": "body",
87281            "required": true,
87282            "schema": {
87283              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87284            }
87285          },
87286          {
87287            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87288            "in": "query",
87289            "name": "dryRun",
87290            "type": "string",
87291            "uniqueItems": true
87292          },
87293          {
87294            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87295            "in": "query",
87296            "name": "fieldManager",
87297            "type": "string",
87298            "uniqueItems": true
87299          }
87300        ],
87301        "produces": [
87302          "application/json",
87303          "application/yaml",
87304          "application/vnd.kubernetes.protobuf"
87305        ],
87306        "responses": {
87307          "200": {
87308            "description": "OK",
87309            "schema": {
87310              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87311            }
87312          },
87313          "201": {
87314            "description": "Created",
87315            "schema": {
87316              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87317            }
87318          },
87319          "401": {
87320            "description": "Unauthorized"
87321          }
87322        },
87323        "schemes": [
87324          "https"
87325        ],
87326        "tags": [
87327          "rbacAuthorization_v1"
87328        ],
87329        "x-kubernetes-action": "put",
87330        "x-kubernetes-group-version-kind": {
87331          "group": "rbac.authorization.k8s.io",
87332          "kind": "ClusterRoleBinding",
87333          "version": "v1"
87334        }
87335      }
87336    },
87337    "/apis/rbac.authorization.k8s.io/v1/clusterroles": {
87338      "delete": {
87339        "consumes": [
87340          "*/*"
87341        ],
87342        "description": "delete collection of ClusterRole",
87343        "operationId": "deleteRbacAuthorizationV1CollectionClusterRole",
87344        "parameters": [
87345          {
87346            "in": "body",
87347            "name": "body",
87348            "schema": {
87349              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87350            }
87351          },
87352          {
87353            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87354            "in": "query",
87355            "name": "continue",
87356            "type": "string",
87357            "uniqueItems": true
87358          },
87359          {
87360            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87361            "in": "query",
87362            "name": "dryRun",
87363            "type": "string",
87364            "uniqueItems": true
87365          },
87366          {
87367            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87368            "in": "query",
87369            "name": "fieldSelector",
87370            "type": "string",
87371            "uniqueItems": true
87372          },
87373          {
87374            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87375            "in": "query",
87376            "name": "gracePeriodSeconds",
87377            "type": "integer",
87378            "uniqueItems": true
87379          },
87380          {
87381            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87382            "in": "query",
87383            "name": "labelSelector",
87384            "type": "string",
87385            "uniqueItems": true
87386          },
87387          {
87388            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87389            "in": "query",
87390            "name": "limit",
87391            "type": "integer",
87392            "uniqueItems": true
87393          },
87394          {
87395            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87396            "in": "query",
87397            "name": "orphanDependents",
87398            "type": "boolean",
87399            "uniqueItems": true
87400          },
87401          {
87402            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87403            "in": "query",
87404            "name": "propagationPolicy",
87405            "type": "string",
87406            "uniqueItems": true
87407          },
87408          {
87409            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87410            "in": "query",
87411            "name": "resourceVersion",
87412            "type": "string",
87413            "uniqueItems": true
87414          },
87415          {
87416            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87417            "in": "query",
87418            "name": "resourceVersionMatch",
87419            "type": "string",
87420            "uniqueItems": true
87421          },
87422          {
87423            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87424            "in": "query",
87425            "name": "timeoutSeconds",
87426            "type": "integer",
87427            "uniqueItems": true
87428          }
87429        ],
87430        "produces": [
87431          "application/json",
87432          "application/yaml",
87433          "application/vnd.kubernetes.protobuf"
87434        ],
87435        "responses": {
87436          "200": {
87437            "description": "OK",
87438            "schema": {
87439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87440            }
87441          },
87442          "401": {
87443            "description": "Unauthorized"
87444          }
87445        },
87446        "schemes": [
87447          "https"
87448        ],
87449        "tags": [
87450          "rbacAuthorization_v1"
87451        ],
87452        "x-kubernetes-action": "deletecollection",
87453        "x-kubernetes-group-version-kind": {
87454          "group": "rbac.authorization.k8s.io",
87455          "kind": "ClusterRole",
87456          "version": "v1"
87457        }
87458      },
87459      "get": {
87460        "consumes": [
87461          "*/*"
87462        ],
87463        "description": "list or watch objects of kind ClusterRole",
87464        "operationId": "listRbacAuthorizationV1ClusterRole",
87465        "parameters": [
87466          {
87467            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
87468            "in": "query",
87469            "name": "allowWatchBookmarks",
87470            "type": "boolean",
87471            "uniqueItems": true
87472          },
87473          {
87474            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87475            "in": "query",
87476            "name": "continue",
87477            "type": "string",
87478            "uniqueItems": true
87479          },
87480          {
87481            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87482            "in": "query",
87483            "name": "fieldSelector",
87484            "type": "string",
87485            "uniqueItems": true
87486          },
87487          {
87488            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87489            "in": "query",
87490            "name": "labelSelector",
87491            "type": "string",
87492            "uniqueItems": true
87493          },
87494          {
87495            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87496            "in": "query",
87497            "name": "limit",
87498            "type": "integer",
87499            "uniqueItems": true
87500          },
87501          {
87502            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87503            "in": "query",
87504            "name": "resourceVersion",
87505            "type": "string",
87506            "uniqueItems": true
87507          },
87508          {
87509            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87510            "in": "query",
87511            "name": "resourceVersionMatch",
87512            "type": "string",
87513            "uniqueItems": true
87514          },
87515          {
87516            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87517            "in": "query",
87518            "name": "timeoutSeconds",
87519            "type": "integer",
87520            "uniqueItems": true
87521          },
87522          {
87523            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87524            "in": "query",
87525            "name": "watch",
87526            "type": "boolean",
87527            "uniqueItems": true
87528          }
87529        ],
87530        "produces": [
87531          "application/json",
87532          "application/yaml",
87533          "application/vnd.kubernetes.protobuf",
87534          "application/json;stream=watch",
87535          "application/vnd.kubernetes.protobuf;stream=watch"
87536        ],
87537        "responses": {
87538          "200": {
87539            "description": "OK",
87540            "schema": {
87541              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleList"
87542            }
87543          },
87544          "401": {
87545            "description": "Unauthorized"
87546          }
87547        },
87548        "schemes": [
87549          "https"
87550        ],
87551        "tags": [
87552          "rbacAuthorization_v1"
87553        ],
87554        "x-kubernetes-action": "list",
87555        "x-kubernetes-group-version-kind": {
87556          "group": "rbac.authorization.k8s.io",
87557          "kind": "ClusterRole",
87558          "version": "v1"
87559        }
87560      },
87561      "parameters": [
87562        {
87563          "description": "If 'true', then the output is pretty printed.",
87564          "in": "query",
87565          "name": "pretty",
87566          "type": "string",
87567          "uniqueItems": true
87568        }
87569      ],
87570      "post": {
87571        "consumes": [
87572          "*/*"
87573        ],
87574        "description": "create a ClusterRole",
87575        "operationId": "createRbacAuthorizationV1ClusterRole",
87576        "parameters": [
87577          {
87578            "in": "body",
87579            "name": "body",
87580            "required": true,
87581            "schema": {
87582              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87583            }
87584          },
87585          {
87586            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87587            "in": "query",
87588            "name": "dryRun",
87589            "type": "string",
87590            "uniqueItems": true
87591          },
87592          {
87593            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87594            "in": "query",
87595            "name": "fieldManager",
87596            "type": "string",
87597            "uniqueItems": true
87598          }
87599        ],
87600        "produces": [
87601          "application/json",
87602          "application/yaml",
87603          "application/vnd.kubernetes.protobuf"
87604        ],
87605        "responses": {
87606          "200": {
87607            "description": "OK",
87608            "schema": {
87609              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87610            }
87611          },
87612          "201": {
87613            "description": "Created",
87614            "schema": {
87615              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87616            }
87617          },
87618          "202": {
87619            "description": "Accepted",
87620            "schema": {
87621              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87622            }
87623          },
87624          "401": {
87625            "description": "Unauthorized"
87626          }
87627        },
87628        "schemes": [
87629          "https"
87630        ],
87631        "tags": [
87632          "rbacAuthorization_v1"
87633        ],
87634        "x-kubernetes-action": "post",
87635        "x-kubernetes-group-version-kind": {
87636          "group": "rbac.authorization.k8s.io",
87637          "kind": "ClusterRole",
87638          "version": "v1"
87639        }
87640      }
87641    },
87642    "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}": {
87643      "delete": {
87644        "consumes": [
87645          "*/*"
87646        ],
87647        "description": "delete a ClusterRole",
87648        "operationId": "deleteRbacAuthorizationV1ClusterRole",
87649        "parameters": [
87650          {
87651            "in": "body",
87652            "name": "body",
87653            "schema": {
87654              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87655            }
87656          },
87657          {
87658            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87659            "in": "query",
87660            "name": "dryRun",
87661            "type": "string",
87662            "uniqueItems": true
87663          },
87664          {
87665            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87666            "in": "query",
87667            "name": "gracePeriodSeconds",
87668            "type": "integer",
87669            "uniqueItems": true
87670          },
87671          {
87672            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87673            "in": "query",
87674            "name": "orphanDependents",
87675            "type": "boolean",
87676            "uniqueItems": true
87677          },
87678          {
87679            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87680            "in": "query",
87681            "name": "propagationPolicy",
87682            "type": "string",
87683            "uniqueItems": true
87684          }
87685        ],
87686        "produces": [
87687          "application/json",
87688          "application/yaml",
87689          "application/vnd.kubernetes.protobuf"
87690        ],
87691        "responses": {
87692          "200": {
87693            "description": "OK",
87694            "schema": {
87695              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87696            }
87697          },
87698          "202": {
87699            "description": "Accepted",
87700            "schema": {
87701              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87702            }
87703          },
87704          "401": {
87705            "description": "Unauthorized"
87706          }
87707        },
87708        "schemes": [
87709          "https"
87710        ],
87711        "tags": [
87712          "rbacAuthorization_v1"
87713        ],
87714        "x-kubernetes-action": "delete",
87715        "x-kubernetes-group-version-kind": {
87716          "group": "rbac.authorization.k8s.io",
87717          "kind": "ClusterRole",
87718          "version": "v1"
87719        }
87720      },
87721      "get": {
87722        "consumes": [
87723          "*/*"
87724        ],
87725        "description": "read the specified ClusterRole",
87726        "operationId": "readRbacAuthorizationV1ClusterRole",
87727        "produces": [
87728          "application/json",
87729          "application/yaml",
87730          "application/vnd.kubernetes.protobuf"
87731        ],
87732        "responses": {
87733          "200": {
87734            "description": "OK",
87735            "schema": {
87736              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87737            }
87738          },
87739          "401": {
87740            "description": "Unauthorized"
87741          }
87742        },
87743        "schemes": [
87744          "https"
87745        ],
87746        "tags": [
87747          "rbacAuthorization_v1"
87748        ],
87749        "x-kubernetes-action": "get",
87750        "x-kubernetes-group-version-kind": {
87751          "group": "rbac.authorization.k8s.io",
87752          "kind": "ClusterRole",
87753          "version": "v1"
87754        }
87755      },
87756      "parameters": [
87757        {
87758          "description": "name of the ClusterRole",
87759          "in": "path",
87760          "name": "name",
87761          "required": true,
87762          "type": "string",
87763          "uniqueItems": true
87764        },
87765        {
87766          "description": "If 'true', then the output is pretty printed.",
87767          "in": "query",
87768          "name": "pretty",
87769          "type": "string",
87770          "uniqueItems": true
87771        }
87772      ],
87773      "patch": {
87774        "consumes": [
87775          "application/json-patch+json",
87776          "application/merge-patch+json",
87777          "application/strategic-merge-patch+json",
87778          "application/apply-patch+yaml"
87779        ],
87780        "description": "partially update the specified ClusterRole",
87781        "operationId": "patchRbacAuthorizationV1ClusterRole",
87782        "parameters": [
87783          {
87784            "in": "body",
87785            "name": "body",
87786            "required": true,
87787            "schema": {
87788              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
87789            }
87790          },
87791          {
87792            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87793            "in": "query",
87794            "name": "dryRun",
87795            "type": "string",
87796            "uniqueItems": true
87797          },
87798          {
87799            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
87800            "in": "query",
87801            "name": "fieldManager",
87802            "type": "string",
87803            "uniqueItems": true
87804          },
87805          {
87806            "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.",
87807            "in": "query",
87808            "name": "force",
87809            "type": "boolean",
87810            "uniqueItems": true
87811          }
87812        ],
87813        "produces": [
87814          "application/json",
87815          "application/yaml",
87816          "application/vnd.kubernetes.protobuf"
87817        ],
87818        "responses": {
87819          "200": {
87820            "description": "OK",
87821            "schema": {
87822              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87823            }
87824          },
87825          "401": {
87826            "description": "Unauthorized"
87827          }
87828        },
87829        "schemes": [
87830          "https"
87831        ],
87832        "tags": [
87833          "rbacAuthorization_v1"
87834        ],
87835        "x-kubernetes-action": "patch",
87836        "x-kubernetes-group-version-kind": {
87837          "group": "rbac.authorization.k8s.io",
87838          "kind": "ClusterRole",
87839          "version": "v1"
87840        }
87841      },
87842      "put": {
87843        "consumes": [
87844          "*/*"
87845        ],
87846        "description": "replace the specified ClusterRole",
87847        "operationId": "replaceRbacAuthorizationV1ClusterRole",
87848        "parameters": [
87849          {
87850            "in": "body",
87851            "name": "body",
87852            "required": true,
87853            "schema": {
87854              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87855            }
87856          },
87857          {
87858            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87859            "in": "query",
87860            "name": "dryRun",
87861            "type": "string",
87862            "uniqueItems": true
87863          },
87864          {
87865            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87866            "in": "query",
87867            "name": "fieldManager",
87868            "type": "string",
87869            "uniqueItems": true
87870          }
87871        ],
87872        "produces": [
87873          "application/json",
87874          "application/yaml",
87875          "application/vnd.kubernetes.protobuf"
87876        ],
87877        "responses": {
87878          "200": {
87879            "description": "OK",
87880            "schema": {
87881              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87882            }
87883          },
87884          "201": {
87885            "description": "Created",
87886            "schema": {
87887              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87888            }
87889          },
87890          "401": {
87891            "description": "Unauthorized"
87892          }
87893        },
87894        "schemes": [
87895          "https"
87896        ],
87897        "tags": [
87898          "rbacAuthorization_v1"
87899        ],
87900        "x-kubernetes-action": "put",
87901        "x-kubernetes-group-version-kind": {
87902          "group": "rbac.authorization.k8s.io",
87903          "kind": "ClusterRole",
87904          "version": "v1"
87905        }
87906      }
87907    },
87908    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings": {
87909      "delete": {
87910        "consumes": [
87911          "*/*"
87912        ],
87913        "description": "delete collection of RoleBinding",
87914        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRoleBinding",
87915        "parameters": [
87916          {
87917            "in": "body",
87918            "name": "body",
87919            "schema": {
87920              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87921            }
87922          },
87923          {
87924            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87925            "in": "query",
87926            "name": "continue",
87927            "type": "string",
87928            "uniqueItems": true
87929          },
87930          {
87931            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87932            "in": "query",
87933            "name": "dryRun",
87934            "type": "string",
87935            "uniqueItems": true
87936          },
87937          {
87938            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87939            "in": "query",
87940            "name": "fieldSelector",
87941            "type": "string",
87942            "uniqueItems": true
87943          },
87944          {
87945            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87946            "in": "query",
87947            "name": "gracePeriodSeconds",
87948            "type": "integer",
87949            "uniqueItems": true
87950          },
87951          {
87952            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87953            "in": "query",
87954            "name": "labelSelector",
87955            "type": "string",
87956            "uniqueItems": true
87957          },
87958          {
87959            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87960            "in": "query",
87961            "name": "limit",
87962            "type": "integer",
87963            "uniqueItems": true
87964          },
87965          {
87966            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87967            "in": "query",
87968            "name": "orphanDependents",
87969            "type": "boolean",
87970            "uniqueItems": true
87971          },
87972          {
87973            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87974            "in": "query",
87975            "name": "propagationPolicy",
87976            "type": "string",
87977            "uniqueItems": true
87978          },
87979          {
87980            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87981            "in": "query",
87982            "name": "resourceVersion",
87983            "type": "string",
87984            "uniqueItems": true
87985          },
87986          {
87987            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87988            "in": "query",
87989            "name": "resourceVersionMatch",
87990            "type": "string",
87991            "uniqueItems": true
87992          },
87993          {
87994            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87995            "in": "query",
87996            "name": "timeoutSeconds",
87997            "type": "integer",
87998            "uniqueItems": true
87999          }
88000        ],
88001        "produces": [
88002          "application/json",
88003          "application/yaml",
88004          "application/vnd.kubernetes.protobuf"
88005        ],
88006        "responses": {
88007          "200": {
88008            "description": "OK",
88009            "schema": {
88010              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88011            }
88012          },
88013          "401": {
88014            "description": "Unauthorized"
88015          }
88016        },
88017        "schemes": [
88018          "https"
88019        ],
88020        "tags": [
88021          "rbacAuthorization_v1"
88022        ],
88023        "x-kubernetes-action": "deletecollection",
88024        "x-kubernetes-group-version-kind": {
88025          "group": "rbac.authorization.k8s.io",
88026          "kind": "RoleBinding",
88027          "version": "v1"
88028        }
88029      },
88030      "get": {
88031        "consumes": [
88032          "*/*"
88033        ],
88034        "description": "list or watch objects of kind RoleBinding",
88035        "operationId": "listRbacAuthorizationV1NamespacedRoleBinding",
88036        "parameters": [
88037          {
88038            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
88039            "in": "query",
88040            "name": "allowWatchBookmarks",
88041            "type": "boolean",
88042            "uniqueItems": true
88043          },
88044          {
88045            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88046            "in": "query",
88047            "name": "continue",
88048            "type": "string",
88049            "uniqueItems": true
88050          },
88051          {
88052            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88053            "in": "query",
88054            "name": "fieldSelector",
88055            "type": "string",
88056            "uniqueItems": true
88057          },
88058          {
88059            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88060            "in": "query",
88061            "name": "labelSelector",
88062            "type": "string",
88063            "uniqueItems": true
88064          },
88065          {
88066            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88067            "in": "query",
88068            "name": "limit",
88069            "type": "integer",
88070            "uniqueItems": true
88071          },
88072          {
88073            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88074            "in": "query",
88075            "name": "resourceVersion",
88076            "type": "string",
88077            "uniqueItems": true
88078          },
88079          {
88080            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88081            "in": "query",
88082            "name": "resourceVersionMatch",
88083            "type": "string",
88084            "uniqueItems": true
88085          },
88086          {
88087            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88088            "in": "query",
88089            "name": "timeoutSeconds",
88090            "type": "integer",
88091            "uniqueItems": true
88092          },
88093          {
88094            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88095            "in": "query",
88096            "name": "watch",
88097            "type": "boolean",
88098            "uniqueItems": true
88099          }
88100        ],
88101        "produces": [
88102          "application/json",
88103          "application/yaml",
88104          "application/vnd.kubernetes.protobuf",
88105          "application/json;stream=watch",
88106          "application/vnd.kubernetes.protobuf;stream=watch"
88107        ],
88108        "responses": {
88109          "200": {
88110            "description": "OK",
88111            "schema": {
88112              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
88113            }
88114          },
88115          "401": {
88116            "description": "Unauthorized"
88117          }
88118        },
88119        "schemes": [
88120          "https"
88121        ],
88122        "tags": [
88123          "rbacAuthorization_v1"
88124        ],
88125        "x-kubernetes-action": "list",
88126        "x-kubernetes-group-version-kind": {
88127          "group": "rbac.authorization.k8s.io",
88128          "kind": "RoleBinding",
88129          "version": "v1"
88130        }
88131      },
88132      "parameters": [
88133        {
88134          "description": "object name and auth scope, such as for teams and projects",
88135          "in": "path",
88136          "name": "namespace",
88137          "required": true,
88138          "type": "string",
88139          "uniqueItems": true
88140        },
88141        {
88142          "description": "If 'true', then the output is pretty printed.",
88143          "in": "query",
88144          "name": "pretty",
88145          "type": "string",
88146          "uniqueItems": true
88147        }
88148      ],
88149      "post": {
88150        "consumes": [
88151          "*/*"
88152        ],
88153        "description": "create a RoleBinding",
88154        "operationId": "createRbacAuthorizationV1NamespacedRoleBinding",
88155        "parameters": [
88156          {
88157            "in": "body",
88158            "name": "body",
88159            "required": true,
88160            "schema": {
88161              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88162            }
88163          },
88164          {
88165            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88166            "in": "query",
88167            "name": "dryRun",
88168            "type": "string",
88169            "uniqueItems": true
88170          },
88171          {
88172            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88173            "in": "query",
88174            "name": "fieldManager",
88175            "type": "string",
88176            "uniqueItems": true
88177          }
88178        ],
88179        "produces": [
88180          "application/json",
88181          "application/yaml",
88182          "application/vnd.kubernetes.protobuf"
88183        ],
88184        "responses": {
88185          "200": {
88186            "description": "OK",
88187            "schema": {
88188              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88189            }
88190          },
88191          "201": {
88192            "description": "Created",
88193            "schema": {
88194              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88195            }
88196          },
88197          "202": {
88198            "description": "Accepted",
88199            "schema": {
88200              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88201            }
88202          },
88203          "401": {
88204            "description": "Unauthorized"
88205          }
88206        },
88207        "schemes": [
88208          "https"
88209        ],
88210        "tags": [
88211          "rbacAuthorization_v1"
88212        ],
88213        "x-kubernetes-action": "post",
88214        "x-kubernetes-group-version-kind": {
88215          "group": "rbac.authorization.k8s.io",
88216          "kind": "RoleBinding",
88217          "version": "v1"
88218        }
88219      }
88220    },
88221    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}": {
88222      "delete": {
88223        "consumes": [
88224          "*/*"
88225        ],
88226        "description": "delete a RoleBinding",
88227        "operationId": "deleteRbacAuthorizationV1NamespacedRoleBinding",
88228        "parameters": [
88229          {
88230            "in": "body",
88231            "name": "body",
88232            "schema": {
88233              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88234            }
88235          },
88236          {
88237            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88238            "in": "query",
88239            "name": "dryRun",
88240            "type": "string",
88241            "uniqueItems": true
88242          },
88243          {
88244            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
88245            "in": "query",
88246            "name": "gracePeriodSeconds",
88247            "type": "integer",
88248            "uniqueItems": true
88249          },
88250          {
88251            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
88252            "in": "query",
88253            "name": "orphanDependents",
88254            "type": "boolean",
88255            "uniqueItems": true
88256          },
88257          {
88258            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
88259            "in": "query",
88260            "name": "propagationPolicy",
88261            "type": "string",
88262            "uniqueItems": true
88263          }
88264        ],
88265        "produces": [
88266          "application/json",
88267          "application/yaml",
88268          "application/vnd.kubernetes.protobuf"
88269        ],
88270        "responses": {
88271          "200": {
88272            "description": "OK",
88273            "schema": {
88274              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88275            }
88276          },
88277          "202": {
88278            "description": "Accepted",
88279            "schema": {
88280              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88281            }
88282          },
88283          "401": {
88284            "description": "Unauthorized"
88285          }
88286        },
88287        "schemes": [
88288          "https"
88289        ],
88290        "tags": [
88291          "rbacAuthorization_v1"
88292        ],
88293        "x-kubernetes-action": "delete",
88294        "x-kubernetes-group-version-kind": {
88295          "group": "rbac.authorization.k8s.io",
88296          "kind": "RoleBinding",
88297          "version": "v1"
88298        }
88299      },
88300      "get": {
88301        "consumes": [
88302          "*/*"
88303        ],
88304        "description": "read the specified RoleBinding",
88305        "operationId": "readRbacAuthorizationV1NamespacedRoleBinding",
88306        "produces": [
88307          "application/json",
88308          "application/yaml",
88309          "application/vnd.kubernetes.protobuf"
88310        ],
88311        "responses": {
88312          "200": {
88313            "description": "OK",
88314            "schema": {
88315              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88316            }
88317          },
88318          "401": {
88319            "description": "Unauthorized"
88320          }
88321        },
88322        "schemes": [
88323          "https"
88324        ],
88325        "tags": [
88326          "rbacAuthorization_v1"
88327        ],
88328        "x-kubernetes-action": "get",
88329        "x-kubernetes-group-version-kind": {
88330          "group": "rbac.authorization.k8s.io",
88331          "kind": "RoleBinding",
88332          "version": "v1"
88333        }
88334      },
88335      "parameters": [
88336        {
88337          "description": "name of the RoleBinding",
88338          "in": "path",
88339          "name": "name",
88340          "required": true,
88341          "type": "string",
88342          "uniqueItems": true
88343        },
88344        {
88345          "description": "object name and auth scope, such as for teams and projects",
88346          "in": "path",
88347          "name": "namespace",
88348          "required": true,
88349          "type": "string",
88350          "uniqueItems": true
88351        },
88352        {
88353          "description": "If 'true', then the output is pretty printed.",
88354          "in": "query",
88355          "name": "pretty",
88356          "type": "string",
88357          "uniqueItems": true
88358        }
88359      ],
88360      "patch": {
88361        "consumes": [
88362          "application/json-patch+json",
88363          "application/merge-patch+json",
88364          "application/strategic-merge-patch+json",
88365          "application/apply-patch+yaml"
88366        ],
88367        "description": "partially update the specified RoleBinding",
88368        "operationId": "patchRbacAuthorizationV1NamespacedRoleBinding",
88369        "parameters": [
88370          {
88371            "in": "body",
88372            "name": "body",
88373            "required": true,
88374            "schema": {
88375              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
88376            }
88377          },
88378          {
88379            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88380            "in": "query",
88381            "name": "dryRun",
88382            "type": "string",
88383            "uniqueItems": true
88384          },
88385          {
88386            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
88387            "in": "query",
88388            "name": "fieldManager",
88389            "type": "string",
88390            "uniqueItems": true
88391          },
88392          {
88393            "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.",
88394            "in": "query",
88395            "name": "force",
88396            "type": "boolean",
88397            "uniqueItems": true
88398          }
88399        ],
88400        "produces": [
88401          "application/json",
88402          "application/yaml",
88403          "application/vnd.kubernetes.protobuf"
88404        ],
88405        "responses": {
88406          "200": {
88407            "description": "OK",
88408            "schema": {
88409              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88410            }
88411          },
88412          "401": {
88413            "description": "Unauthorized"
88414          }
88415        },
88416        "schemes": [
88417          "https"
88418        ],
88419        "tags": [
88420          "rbacAuthorization_v1"
88421        ],
88422        "x-kubernetes-action": "patch",
88423        "x-kubernetes-group-version-kind": {
88424          "group": "rbac.authorization.k8s.io",
88425          "kind": "RoleBinding",
88426          "version": "v1"
88427        }
88428      },
88429      "put": {
88430        "consumes": [
88431          "*/*"
88432        ],
88433        "description": "replace the specified RoleBinding",
88434        "operationId": "replaceRbacAuthorizationV1NamespacedRoleBinding",
88435        "parameters": [
88436          {
88437            "in": "body",
88438            "name": "body",
88439            "required": true,
88440            "schema": {
88441              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88442            }
88443          },
88444          {
88445            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88446            "in": "query",
88447            "name": "dryRun",
88448            "type": "string",
88449            "uniqueItems": true
88450          },
88451          {
88452            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88453            "in": "query",
88454            "name": "fieldManager",
88455            "type": "string",
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.rbac.v1.RoleBinding"
88469            }
88470          },
88471          "201": {
88472            "description": "Created",
88473            "schema": {
88474              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88475            }
88476          },
88477          "401": {
88478            "description": "Unauthorized"
88479          }
88480        },
88481        "schemes": [
88482          "https"
88483        ],
88484        "tags": [
88485          "rbacAuthorization_v1"
88486        ],
88487        "x-kubernetes-action": "put",
88488        "x-kubernetes-group-version-kind": {
88489          "group": "rbac.authorization.k8s.io",
88490          "kind": "RoleBinding",
88491          "version": "v1"
88492        }
88493      }
88494    },
88495    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles": {
88496      "delete": {
88497        "consumes": [
88498          "*/*"
88499        ],
88500        "description": "delete collection of Role",
88501        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRole",
88502        "parameters": [
88503          {
88504            "in": "body",
88505            "name": "body",
88506            "schema": {
88507              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88508            }
88509          },
88510          {
88511            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88512            "in": "query",
88513            "name": "continue",
88514            "type": "string",
88515            "uniqueItems": true
88516          },
88517          {
88518            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88519            "in": "query",
88520            "name": "dryRun",
88521            "type": "string",
88522            "uniqueItems": true
88523          },
88524          {
88525            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88526            "in": "query",
88527            "name": "fieldSelector",
88528            "type": "string",
88529            "uniqueItems": true
88530          },
88531          {
88532            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
88533            "in": "query",
88534            "name": "gracePeriodSeconds",
88535            "type": "integer",
88536            "uniqueItems": true
88537          },
88538          {
88539            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88540            "in": "query",
88541            "name": "labelSelector",
88542            "type": "string",
88543            "uniqueItems": true
88544          },
88545          {
88546            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88547            "in": "query",
88548            "name": "limit",
88549            "type": "integer",
88550            "uniqueItems": true
88551          },
88552          {
88553            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
88554            "in": "query",
88555            "name": "orphanDependents",
88556            "type": "boolean",
88557            "uniqueItems": true
88558          },
88559          {
88560            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
88561            "in": "query",
88562            "name": "propagationPolicy",
88563            "type": "string",
88564            "uniqueItems": true
88565          },
88566          {
88567            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88568            "in": "query",
88569            "name": "resourceVersion",
88570            "type": "string",
88571            "uniqueItems": true
88572          },
88573          {
88574            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88575            "in": "query",
88576            "name": "resourceVersionMatch",
88577            "type": "string",
88578            "uniqueItems": true
88579          },
88580          {
88581            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88582            "in": "query",
88583            "name": "timeoutSeconds",
88584            "type": "integer",
88585            "uniqueItems": true
88586          }
88587        ],
88588        "produces": [
88589          "application/json",
88590          "application/yaml",
88591          "application/vnd.kubernetes.protobuf"
88592        ],
88593        "responses": {
88594          "200": {
88595            "description": "OK",
88596            "schema": {
88597              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88598            }
88599          },
88600          "401": {
88601            "description": "Unauthorized"
88602          }
88603        },
88604        "schemes": [
88605          "https"
88606        ],
88607        "tags": [
88608          "rbacAuthorization_v1"
88609        ],
88610        "x-kubernetes-action": "deletecollection",
88611        "x-kubernetes-group-version-kind": {
88612          "group": "rbac.authorization.k8s.io",
88613          "kind": "Role",
88614          "version": "v1"
88615        }
88616      },
88617      "get": {
88618        "consumes": [
88619          "*/*"
88620        ],
88621        "description": "list or watch objects of kind Role",
88622        "operationId": "listRbacAuthorizationV1NamespacedRole",
88623        "parameters": [
88624          {
88625            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
88626            "in": "query",
88627            "name": "allowWatchBookmarks",
88628            "type": "boolean",
88629            "uniqueItems": true
88630          },
88631          {
88632            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88633            "in": "query",
88634            "name": "continue",
88635            "type": "string",
88636            "uniqueItems": true
88637          },
88638          {
88639            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88640            "in": "query",
88641            "name": "fieldSelector",
88642            "type": "string",
88643            "uniqueItems": true
88644          },
88645          {
88646            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88647            "in": "query",
88648            "name": "labelSelector",
88649            "type": "string",
88650            "uniqueItems": true
88651          },
88652          {
88653            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88654            "in": "query",
88655            "name": "limit",
88656            "type": "integer",
88657            "uniqueItems": true
88658          },
88659          {
88660            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88661            "in": "query",
88662            "name": "resourceVersion",
88663            "type": "string",
88664            "uniqueItems": true
88665          },
88666          {
88667            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88668            "in": "query",
88669            "name": "resourceVersionMatch",
88670            "type": "string",
88671            "uniqueItems": true
88672          },
88673          {
88674            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88675            "in": "query",
88676            "name": "timeoutSeconds",
88677            "type": "integer",
88678            "uniqueItems": true
88679          },
88680          {
88681            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88682            "in": "query",
88683            "name": "watch",
88684            "type": "boolean",
88685            "uniqueItems": true
88686          }
88687        ],
88688        "produces": [
88689          "application/json",
88690          "application/yaml",
88691          "application/vnd.kubernetes.protobuf",
88692          "application/json;stream=watch",
88693          "application/vnd.kubernetes.protobuf;stream=watch"
88694        ],
88695        "responses": {
88696          "200": {
88697            "description": "OK",
88698            "schema": {
88699              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
88700            }
88701          },
88702          "401": {
88703            "description": "Unauthorized"
88704          }
88705        },
88706        "schemes": [
88707          "https"
88708        ],
88709        "tags": [
88710          "rbacAuthorization_v1"
88711        ],
88712        "x-kubernetes-action": "list",
88713        "x-kubernetes-group-version-kind": {
88714          "group": "rbac.authorization.k8s.io",
88715          "kind": "Role",
88716          "version": "v1"
88717        }
88718      },
88719      "parameters": [
88720        {
88721          "description": "object name and auth scope, such as for teams and projects",
88722          "in": "path",
88723          "name": "namespace",
88724          "required": true,
88725          "type": "string",
88726          "uniqueItems": true
88727        },
88728        {
88729          "description": "If 'true', then the output is pretty printed.",
88730          "in": "query",
88731          "name": "pretty",
88732          "type": "string",
88733          "uniqueItems": true
88734        }
88735      ],
88736      "post": {
88737        "consumes": [
88738          "*/*"
88739        ],
88740        "description": "create a Role",
88741        "operationId": "createRbacAuthorizationV1NamespacedRole",
88742        "parameters": [
88743          {
88744            "in": "body",
88745            "name": "body",
88746            "required": true,
88747            "schema": {
88748              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88749            }
88750          },
88751          {
88752            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88753            "in": "query",
88754            "name": "dryRun",
88755            "type": "string",
88756            "uniqueItems": true
88757          },
88758          {
88759            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88760            "in": "query",
88761            "name": "fieldManager",
88762            "type": "string",
88763            "uniqueItems": true
88764          }
88765        ],
88766        "produces": [
88767          "application/json",
88768          "application/yaml",
88769          "application/vnd.kubernetes.protobuf"
88770        ],
88771        "responses": {
88772          "200": {
88773            "description": "OK",
88774            "schema": {
88775              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88776            }
88777          },
88778          "201": {
88779            "description": "Created",
88780            "schema": {
88781              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88782            }
88783          },
88784          "202": {
88785            "description": "Accepted",
88786            "schema": {
88787              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88788            }
88789          },
88790          "401": {
88791            "description": "Unauthorized"
88792          }
88793        },
88794        "schemes": [
88795          "https"
88796        ],
88797        "tags": [
88798          "rbacAuthorization_v1"
88799        ],
88800        "x-kubernetes-action": "post",
88801        "x-kubernetes-group-version-kind": {
88802          "group": "rbac.authorization.k8s.io",
88803          "kind": "Role",
88804          "version": "v1"
88805        }
88806      }
88807    },
88808    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}": {
88809      "delete": {
88810        "consumes": [
88811          "*/*"
88812        ],
88813        "description": "delete a Role",
88814        "operationId": "deleteRbacAuthorizationV1NamespacedRole",
88815        "parameters": [
88816          {
88817            "in": "body",
88818            "name": "body",
88819            "schema": {
88820              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88821            }
88822          },
88823          {
88824            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88825            "in": "query",
88826            "name": "dryRun",
88827            "type": "string",
88828            "uniqueItems": true
88829          },
88830          {
88831            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
88832            "in": "query",
88833            "name": "gracePeriodSeconds",
88834            "type": "integer",
88835            "uniqueItems": true
88836          },
88837          {
88838            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
88839            "in": "query",
88840            "name": "orphanDependents",
88841            "type": "boolean",
88842            "uniqueItems": true
88843          },
88844          {
88845            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
88846            "in": "query",
88847            "name": "propagationPolicy",
88848            "type": "string",
88849            "uniqueItems": true
88850          }
88851        ],
88852        "produces": [
88853          "application/json",
88854          "application/yaml",
88855          "application/vnd.kubernetes.protobuf"
88856        ],
88857        "responses": {
88858          "200": {
88859            "description": "OK",
88860            "schema": {
88861              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88862            }
88863          },
88864          "202": {
88865            "description": "Accepted",
88866            "schema": {
88867              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88868            }
88869          },
88870          "401": {
88871            "description": "Unauthorized"
88872          }
88873        },
88874        "schemes": [
88875          "https"
88876        ],
88877        "tags": [
88878          "rbacAuthorization_v1"
88879        ],
88880        "x-kubernetes-action": "delete",
88881        "x-kubernetes-group-version-kind": {
88882          "group": "rbac.authorization.k8s.io",
88883          "kind": "Role",
88884          "version": "v1"
88885        }
88886      },
88887      "get": {
88888        "consumes": [
88889          "*/*"
88890        ],
88891        "description": "read the specified Role",
88892        "operationId": "readRbacAuthorizationV1NamespacedRole",
88893        "produces": [
88894          "application/json",
88895          "application/yaml",
88896          "application/vnd.kubernetes.protobuf"
88897        ],
88898        "responses": {
88899          "200": {
88900            "description": "OK",
88901            "schema": {
88902              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88903            }
88904          },
88905          "401": {
88906            "description": "Unauthorized"
88907          }
88908        },
88909        "schemes": [
88910          "https"
88911        ],
88912        "tags": [
88913          "rbacAuthorization_v1"
88914        ],
88915        "x-kubernetes-action": "get",
88916        "x-kubernetes-group-version-kind": {
88917          "group": "rbac.authorization.k8s.io",
88918          "kind": "Role",
88919          "version": "v1"
88920        }
88921      },
88922      "parameters": [
88923        {
88924          "description": "name of the Role",
88925          "in": "path",
88926          "name": "name",
88927          "required": true,
88928          "type": "string",
88929          "uniqueItems": true
88930        },
88931        {
88932          "description": "object name and auth scope, such as for teams and projects",
88933          "in": "path",
88934          "name": "namespace",
88935          "required": true,
88936          "type": "string",
88937          "uniqueItems": true
88938        },
88939        {
88940          "description": "If 'true', then the output is pretty printed.",
88941          "in": "query",
88942          "name": "pretty",
88943          "type": "string",
88944          "uniqueItems": true
88945        }
88946      ],
88947      "patch": {
88948        "consumes": [
88949          "application/json-patch+json",
88950          "application/merge-patch+json",
88951          "application/strategic-merge-patch+json",
88952          "application/apply-patch+yaml"
88953        ],
88954        "description": "partially update the specified Role",
88955        "operationId": "patchRbacAuthorizationV1NamespacedRole",
88956        "parameters": [
88957          {
88958            "in": "body",
88959            "name": "body",
88960            "required": true,
88961            "schema": {
88962              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
88963            }
88964          },
88965          {
88966            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88967            "in": "query",
88968            "name": "dryRun",
88969            "type": "string",
88970            "uniqueItems": true
88971          },
88972          {
88973            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
88974            "in": "query",
88975            "name": "fieldManager",
88976            "type": "string",
88977            "uniqueItems": true
88978          },
88979          {
88980            "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.",
88981            "in": "query",
88982            "name": "force",
88983            "type": "boolean",
88984            "uniqueItems": true
88985          }
88986        ],
88987        "produces": [
88988          "application/json",
88989          "application/yaml",
88990          "application/vnd.kubernetes.protobuf"
88991        ],
88992        "responses": {
88993          "200": {
88994            "description": "OK",
88995            "schema": {
88996              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88997            }
88998          },
88999          "401": {
89000            "description": "Unauthorized"
89001          }
89002        },
89003        "schemes": [
89004          "https"
89005        ],
89006        "tags": [
89007          "rbacAuthorization_v1"
89008        ],
89009        "x-kubernetes-action": "patch",
89010        "x-kubernetes-group-version-kind": {
89011          "group": "rbac.authorization.k8s.io",
89012          "kind": "Role",
89013          "version": "v1"
89014        }
89015      },
89016      "put": {
89017        "consumes": [
89018          "*/*"
89019        ],
89020        "description": "replace the specified Role",
89021        "operationId": "replaceRbacAuthorizationV1NamespacedRole",
89022        "parameters": [
89023          {
89024            "in": "body",
89025            "name": "body",
89026            "required": true,
89027            "schema": {
89028              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
89029            }
89030          },
89031          {
89032            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89033            "in": "query",
89034            "name": "dryRun",
89035            "type": "string",
89036            "uniqueItems": true
89037          },
89038          {
89039            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
89040            "in": "query",
89041            "name": "fieldManager",
89042            "type": "string",
89043            "uniqueItems": true
89044          }
89045        ],
89046        "produces": [
89047          "application/json",
89048          "application/yaml",
89049          "application/vnd.kubernetes.protobuf"
89050        ],
89051        "responses": {
89052          "200": {
89053            "description": "OK",
89054            "schema": {
89055              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
89056            }
89057          },
89058          "201": {
89059            "description": "Created",
89060            "schema": {
89061              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
89062            }
89063          },
89064          "401": {
89065            "description": "Unauthorized"
89066          }
89067        },
89068        "schemes": [
89069          "https"
89070        ],
89071        "tags": [
89072          "rbacAuthorization_v1"
89073        ],
89074        "x-kubernetes-action": "put",
89075        "x-kubernetes-group-version-kind": {
89076          "group": "rbac.authorization.k8s.io",
89077          "kind": "Role",
89078          "version": "v1"
89079        }
89080      }
89081    },
89082    "/apis/rbac.authorization.k8s.io/v1/rolebindings": {
89083      "get": {
89084        "consumes": [
89085          "*/*"
89086        ],
89087        "description": "list or watch objects of kind RoleBinding",
89088        "operationId": "listRbacAuthorizationV1RoleBindingForAllNamespaces",
89089        "produces": [
89090          "application/json",
89091          "application/yaml",
89092          "application/vnd.kubernetes.protobuf",
89093          "application/json;stream=watch",
89094          "application/vnd.kubernetes.protobuf;stream=watch"
89095        ],
89096        "responses": {
89097          "200": {
89098            "description": "OK",
89099            "schema": {
89100              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
89101            }
89102          },
89103          "401": {
89104            "description": "Unauthorized"
89105          }
89106        },
89107        "schemes": [
89108          "https"
89109        ],
89110        "tags": [
89111          "rbacAuthorization_v1"
89112        ],
89113        "x-kubernetes-action": "list",
89114        "x-kubernetes-group-version-kind": {
89115          "group": "rbac.authorization.k8s.io",
89116          "kind": "RoleBinding",
89117          "version": "v1"
89118        }
89119      },
89120      "parameters": [
89121        {
89122          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89123          "in": "query",
89124          "name": "allowWatchBookmarks",
89125          "type": "boolean",
89126          "uniqueItems": true
89127        },
89128        {
89129          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89130          "in": "query",
89131          "name": "continue",
89132          "type": "string",
89133          "uniqueItems": true
89134        },
89135        {
89136          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89137          "in": "query",
89138          "name": "fieldSelector",
89139          "type": "string",
89140          "uniqueItems": true
89141        },
89142        {
89143          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89144          "in": "query",
89145          "name": "labelSelector",
89146          "type": "string",
89147          "uniqueItems": true
89148        },
89149        {
89150          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89151          "in": "query",
89152          "name": "limit",
89153          "type": "integer",
89154          "uniqueItems": true
89155        },
89156        {
89157          "description": "If 'true', then the output is pretty printed.",
89158          "in": "query",
89159          "name": "pretty",
89160          "type": "string",
89161          "uniqueItems": true
89162        },
89163        {
89164          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89165          "in": "query",
89166          "name": "resourceVersion",
89167          "type": "string",
89168          "uniqueItems": true
89169        },
89170        {
89171          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89172          "in": "query",
89173          "name": "resourceVersionMatch",
89174          "type": "string",
89175          "uniqueItems": true
89176        },
89177        {
89178          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89179          "in": "query",
89180          "name": "timeoutSeconds",
89181          "type": "integer",
89182          "uniqueItems": true
89183        },
89184        {
89185          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89186          "in": "query",
89187          "name": "watch",
89188          "type": "boolean",
89189          "uniqueItems": true
89190        }
89191      ]
89192    },
89193    "/apis/rbac.authorization.k8s.io/v1/roles": {
89194      "get": {
89195        "consumes": [
89196          "*/*"
89197        ],
89198        "description": "list or watch objects of kind Role",
89199        "operationId": "listRbacAuthorizationV1RoleForAllNamespaces",
89200        "produces": [
89201          "application/json",
89202          "application/yaml",
89203          "application/vnd.kubernetes.protobuf",
89204          "application/json;stream=watch",
89205          "application/vnd.kubernetes.protobuf;stream=watch"
89206        ],
89207        "responses": {
89208          "200": {
89209            "description": "OK",
89210            "schema": {
89211              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
89212            }
89213          },
89214          "401": {
89215            "description": "Unauthorized"
89216          }
89217        },
89218        "schemes": [
89219          "https"
89220        ],
89221        "tags": [
89222          "rbacAuthorization_v1"
89223        ],
89224        "x-kubernetes-action": "list",
89225        "x-kubernetes-group-version-kind": {
89226          "group": "rbac.authorization.k8s.io",
89227          "kind": "Role",
89228          "version": "v1"
89229        }
89230      },
89231      "parameters": [
89232        {
89233          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89234          "in": "query",
89235          "name": "allowWatchBookmarks",
89236          "type": "boolean",
89237          "uniqueItems": true
89238        },
89239        {
89240          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89241          "in": "query",
89242          "name": "continue",
89243          "type": "string",
89244          "uniqueItems": true
89245        },
89246        {
89247          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89248          "in": "query",
89249          "name": "fieldSelector",
89250          "type": "string",
89251          "uniqueItems": true
89252        },
89253        {
89254          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89255          "in": "query",
89256          "name": "labelSelector",
89257          "type": "string",
89258          "uniqueItems": true
89259        },
89260        {
89261          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89262          "in": "query",
89263          "name": "limit",
89264          "type": "integer",
89265          "uniqueItems": true
89266        },
89267        {
89268          "description": "If 'true', then the output is pretty printed.",
89269          "in": "query",
89270          "name": "pretty",
89271          "type": "string",
89272          "uniqueItems": true
89273        },
89274        {
89275          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89276          "in": "query",
89277          "name": "resourceVersion",
89278          "type": "string",
89279          "uniqueItems": true
89280        },
89281        {
89282          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89283          "in": "query",
89284          "name": "resourceVersionMatch",
89285          "type": "string",
89286          "uniqueItems": true
89287        },
89288        {
89289          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89290          "in": "query",
89291          "name": "timeoutSeconds",
89292          "type": "integer",
89293          "uniqueItems": true
89294        },
89295        {
89296          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89297          "in": "query",
89298          "name": "watch",
89299          "type": "boolean",
89300          "uniqueItems": true
89301        }
89302      ]
89303    },
89304    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings": {
89305      "get": {
89306        "consumes": [
89307          "*/*"
89308        ],
89309        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
89310        "operationId": "watchRbacAuthorizationV1ClusterRoleBindingList",
89311        "produces": [
89312          "application/json",
89313          "application/yaml",
89314          "application/vnd.kubernetes.protobuf",
89315          "application/json;stream=watch",
89316          "application/vnd.kubernetes.protobuf;stream=watch"
89317        ],
89318        "responses": {
89319          "200": {
89320            "description": "OK",
89321            "schema": {
89322              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89323            }
89324          },
89325          "401": {
89326            "description": "Unauthorized"
89327          }
89328        },
89329        "schemes": [
89330          "https"
89331        ],
89332        "tags": [
89333          "rbacAuthorization_v1"
89334        ],
89335        "x-kubernetes-action": "watchlist",
89336        "x-kubernetes-group-version-kind": {
89337          "group": "rbac.authorization.k8s.io",
89338          "kind": "ClusterRoleBinding",
89339          "version": "v1"
89340        }
89341      },
89342      "parameters": [
89343        {
89344          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89345          "in": "query",
89346          "name": "allowWatchBookmarks",
89347          "type": "boolean",
89348          "uniqueItems": true
89349        },
89350        {
89351          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89352          "in": "query",
89353          "name": "continue",
89354          "type": "string",
89355          "uniqueItems": true
89356        },
89357        {
89358          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89359          "in": "query",
89360          "name": "fieldSelector",
89361          "type": "string",
89362          "uniqueItems": true
89363        },
89364        {
89365          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89366          "in": "query",
89367          "name": "labelSelector",
89368          "type": "string",
89369          "uniqueItems": true
89370        },
89371        {
89372          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89373          "in": "query",
89374          "name": "limit",
89375          "type": "integer",
89376          "uniqueItems": true
89377        },
89378        {
89379          "description": "If 'true', then the output is pretty printed.",
89380          "in": "query",
89381          "name": "pretty",
89382          "type": "string",
89383          "uniqueItems": true
89384        },
89385        {
89386          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89387          "in": "query",
89388          "name": "resourceVersion",
89389          "type": "string",
89390          "uniqueItems": true
89391        },
89392        {
89393          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89394          "in": "query",
89395          "name": "resourceVersionMatch",
89396          "type": "string",
89397          "uniqueItems": true
89398        },
89399        {
89400          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89401          "in": "query",
89402          "name": "timeoutSeconds",
89403          "type": "integer",
89404          "uniqueItems": true
89405        },
89406        {
89407          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89408          "in": "query",
89409          "name": "watch",
89410          "type": "boolean",
89411          "uniqueItems": true
89412        }
89413      ]
89414    },
89415    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}": {
89416      "get": {
89417        "consumes": [
89418          "*/*"
89419        ],
89420        "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.",
89421        "operationId": "watchRbacAuthorizationV1ClusterRoleBinding",
89422        "produces": [
89423          "application/json",
89424          "application/yaml",
89425          "application/vnd.kubernetes.protobuf",
89426          "application/json;stream=watch",
89427          "application/vnd.kubernetes.protobuf;stream=watch"
89428        ],
89429        "responses": {
89430          "200": {
89431            "description": "OK",
89432            "schema": {
89433              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89434            }
89435          },
89436          "401": {
89437            "description": "Unauthorized"
89438          }
89439        },
89440        "schemes": [
89441          "https"
89442        ],
89443        "tags": [
89444          "rbacAuthorization_v1"
89445        ],
89446        "x-kubernetes-action": "watch",
89447        "x-kubernetes-group-version-kind": {
89448          "group": "rbac.authorization.k8s.io",
89449          "kind": "ClusterRoleBinding",
89450          "version": "v1"
89451        }
89452      },
89453      "parameters": [
89454        {
89455          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89456          "in": "query",
89457          "name": "allowWatchBookmarks",
89458          "type": "boolean",
89459          "uniqueItems": true
89460        },
89461        {
89462          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89463          "in": "query",
89464          "name": "continue",
89465          "type": "string",
89466          "uniqueItems": true
89467        },
89468        {
89469          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89470          "in": "query",
89471          "name": "fieldSelector",
89472          "type": "string",
89473          "uniqueItems": true
89474        },
89475        {
89476          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89477          "in": "query",
89478          "name": "labelSelector",
89479          "type": "string",
89480          "uniqueItems": true
89481        },
89482        {
89483          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89484          "in": "query",
89485          "name": "limit",
89486          "type": "integer",
89487          "uniqueItems": true
89488        },
89489        {
89490          "description": "name of the ClusterRoleBinding",
89491          "in": "path",
89492          "name": "name",
89493          "required": true,
89494          "type": "string",
89495          "uniqueItems": true
89496        },
89497        {
89498          "description": "If 'true', then the output is pretty printed.",
89499          "in": "query",
89500          "name": "pretty",
89501          "type": "string",
89502          "uniqueItems": true
89503        },
89504        {
89505          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89506          "in": "query",
89507          "name": "resourceVersion",
89508          "type": "string",
89509          "uniqueItems": true
89510        },
89511        {
89512          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89513          "in": "query",
89514          "name": "resourceVersionMatch",
89515          "type": "string",
89516          "uniqueItems": true
89517        },
89518        {
89519          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89520          "in": "query",
89521          "name": "timeoutSeconds",
89522          "type": "integer",
89523          "uniqueItems": true
89524        },
89525        {
89526          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89527          "in": "query",
89528          "name": "watch",
89529          "type": "boolean",
89530          "uniqueItems": true
89531        }
89532      ]
89533    },
89534    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles": {
89535      "get": {
89536        "consumes": [
89537          "*/*"
89538        ],
89539        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
89540        "operationId": "watchRbacAuthorizationV1ClusterRoleList",
89541        "produces": [
89542          "application/json",
89543          "application/yaml",
89544          "application/vnd.kubernetes.protobuf",
89545          "application/json;stream=watch",
89546          "application/vnd.kubernetes.protobuf;stream=watch"
89547        ],
89548        "responses": {
89549          "200": {
89550            "description": "OK",
89551            "schema": {
89552              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89553            }
89554          },
89555          "401": {
89556            "description": "Unauthorized"
89557          }
89558        },
89559        "schemes": [
89560          "https"
89561        ],
89562        "tags": [
89563          "rbacAuthorization_v1"
89564        ],
89565        "x-kubernetes-action": "watchlist",
89566        "x-kubernetes-group-version-kind": {
89567          "group": "rbac.authorization.k8s.io",
89568          "kind": "ClusterRole",
89569          "version": "v1"
89570        }
89571      },
89572      "parameters": [
89573        {
89574          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89575          "in": "query",
89576          "name": "allowWatchBookmarks",
89577          "type": "boolean",
89578          "uniqueItems": true
89579        },
89580        {
89581          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89582          "in": "query",
89583          "name": "continue",
89584          "type": "string",
89585          "uniqueItems": true
89586        },
89587        {
89588          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89589          "in": "query",
89590          "name": "fieldSelector",
89591          "type": "string",
89592          "uniqueItems": true
89593        },
89594        {
89595          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89596          "in": "query",
89597          "name": "labelSelector",
89598          "type": "string",
89599          "uniqueItems": true
89600        },
89601        {
89602          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89603          "in": "query",
89604          "name": "limit",
89605          "type": "integer",
89606          "uniqueItems": true
89607        },
89608        {
89609          "description": "If 'true', then the output is pretty printed.",
89610          "in": "query",
89611          "name": "pretty",
89612          "type": "string",
89613          "uniqueItems": true
89614        },
89615        {
89616          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89617          "in": "query",
89618          "name": "resourceVersion",
89619          "type": "string",
89620          "uniqueItems": true
89621        },
89622        {
89623          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89624          "in": "query",
89625          "name": "resourceVersionMatch",
89626          "type": "string",
89627          "uniqueItems": true
89628        },
89629        {
89630          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89631          "in": "query",
89632          "name": "timeoutSeconds",
89633          "type": "integer",
89634          "uniqueItems": true
89635        },
89636        {
89637          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89638          "in": "query",
89639          "name": "watch",
89640          "type": "boolean",
89641          "uniqueItems": true
89642        }
89643      ]
89644    },
89645    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}": {
89646      "get": {
89647        "consumes": [
89648          "*/*"
89649        ],
89650        "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.",
89651        "operationId": "watchRbacAuthorizationV1ClusterRole",
89652        "produces": [
89653          "application/json",
89654          "application/yaml",
89655          "application/vnd.kubernetes.protobuf",
89656          "application/json;stream=watch",
89657          "application/vnd.kubernetes.protobuf;stream=watch"
89658        ],
89659        "responses": {
89660          "200": {
89661            "description": "OK",
89662            "schema": {
89663              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89664            }
89665          },
89666          "401": {
89667            "description": "Unauthorized"
89668          }
89669        },
89670        "schemes": [
89671          "https"
89672        ],
89673        "tags": [
89674          "rbacAuthorization_v1"
89675        ],
89676        "x-kubernetes-action": "watch",
89677        "x-kubernetes-group-version-kind": {
89678          "group": "rbac.authorization.k8s.io",
89679          "kind": "ClusterRole",
89680          "version": "v1"
89681        }
89682      },
89683      "parameters": [
89684        {
89685          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89686          "in": "query",
89687          "name": "allowWatchBookmarks",
89688          "type": "boolean",
89689          "uniqueItems": true
89690        },
89691        {
89692          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89693          "in": "query",
89694          "name": "continue",
89695          "type": "string",
89696          "uniqueItems": true
89697        },
89698        {
89699          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89700          "in": "query",
89701          "name": "fieldSelector",
89702          "type": "string",
89703          "uniqueItems": true
89704        },
89705        {
89706          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89707          "in": "query",
89708          "name": "labelSelector",
89709          "type": "string",
89710          "uniqueItems": true
89711        },
89712        {
89713          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89714          "in": "query",
89715          "name": "limit",
89716          "type": "integer",
89717          "uniqueItems": true
89718        },
89719        {
89720          "description": "name of the ClusterRole",
89721          "in": "path",
89722          "name": "name",
89723          "required": true,
89724          "type": "string",
89725          "uniqueItems": true
89726        },
89727        {
89728          "description": "If 'true', then the output is pretty printed.",
89729          "in": "query",
89730          "name": "pretty",
89731          "type": "string",
89732          "uniqueItems": true
89733        },
89734        {
89735          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89736          "in": "query",
89737          "name": "resourceVersion",
89738          "type": "string",
89739          "uniqueItems": true
89740        },
89741        {
89742          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89743          "in": "query",
89744          "name": "resourceVersionMatch",
89745          "type": "string",
89746          "uniqueItems": true
89747        },
89748        {
89749          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89750          "in": "query",
89751          "name": "timeoutSeconds",
89752          "type": "integer",
89753          "uniqueItems": true
89754        },
89755        {
89756          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89757          "in": "query",
89758          "name": "watch",
89759          "type": "boolean",
89760          "uniqueItems": true
89761        }
89762      ]
89763    },
89764    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings": {
89765      "get": {
89766        "consumes": [
89767          "*/*"
89768        ],
89769        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
89770        "operationId": "watchRbacAuthorizationV1NamespacedRoleBindingList",
89771        "produces": [
89772          "application/json",
89773          "application/yaml",
89774          "application/vnd.kubernetes.protobuf",
89775          "application/json;stream=watch",
89776          "application/vnd.kubernetes.protobuf;stream=watch"
89777        ],
89778        "responses": {
89779          "200": {
89780            "description": "OK",
89781            "schema": {
89782              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89783            }
89784          },
89785          "401": {
89786            "description": "Unauthorized"
89787          }
89788        },
89789        "schemes": [
89790          "https"
89791        ],
89792        "tags": [
89793          "rbacAuthorization_v1"
89794        ],
89795        "x-kubernetes-action": "watchlist",
89796        "x-kubernetes-group-version-kind": {
89797          "group": "rbac.authorization.k8s.io",
89798          "kind": "RoleBinding",
89799          "version": "v1"
89800        }
89801      },
89802      "parameters": [
89803        {
89804          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89805          "in": "query",
89806          "name": "allowWatchBookmarks",
89807          "type": "boolean",
89808          "uniqueItems": true
89809        },
89810        {
89811          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89812          "in": "query",
89813          "name": "continue",
89814          "type": "string",
89815          "uniqueItems": true
89816        },
89817        {
89818          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89819          "in": "query",
89820          "name": "fieldSelector",
89821          "type": "string",
89822          "uniqueItems": true
89823        },
89824        {
89825          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89826          "in": "query",
89827          "name": "labelSelector",
89828          "type": "string",
89829          "uniqueItems": true
89830        },
89831        {
89832          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89833          "in": "query",
89834          "name": "limit",
89835          "type": "integer",
89836          "uniqueItems": true
89837        },
89838        {
89839          "description": "object name and auth scope, such as for teams and projects",
89840          "in": "path",
89841          "name": "namespace",
89842          "required": true,
89843          "type": "string",
89844          "uniqueItems": true
89845        },
89846        {
89847          "description": "If 'true', then the output is pretty printed.",
89848          "in": "query",
89849          "name": "pretty",
89850          "type": "string",
89851          "uniqueItems": true
89852        },
89853        {
89854          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89855          "in": "query",
89856          "name": "resourceVersion",
89857          "type": "string",
89858          "uniqueItems": true
89859        },
89860        {
89861          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89862          "in": "query",
89863          "name": "resourceVersionMatch",
89864          "type": "string",
89865          "uniqueItems": true
89866        },
89867        {
89868          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89869          "in": "query",
89870          "name": "timeoutSeconds",
89871          "type": "integer",
89872          "uniqueItems": true
89873        },
89874        {
89875          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89876          "in": "query",
89877          "name": "watch",
89878          "type": "boolean",
89879          "uniqueItems": true
89880        }
89881      ]
89882    },
89883    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}": {
89884      "get": {
89885        "consumes": [
89886          "*/*"
89887        ],
89888        "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.",
89889        "operationId": "watchRbacAuthorizationV1NamespacedRoleBinding",
89890        "produces": [
89891          "application/json",
89892          "application/yaml",
89893          "application/vnd.kubernetes.protobuf",
89894          "application/json;stream=watch",
89895          "application/vnd.kubernetes.protobuf;stream=watch"
89896        ],
89897        "responses": {
89898          "200": {
89899            "description": "OK",
89900            "schema": {
89901              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89902            }
89903          },
89904          "401": {
89905            "description": "Unauthorized"
89906          }
89907        },
89908        "schemes": [
89909          "https"
89910        ],
89911        "tags": [
89912          "rbacAuthorization_v1"
89913        ],
89914        "x-kubernetes-action": "watch",
89915        "x-kubernetes-group-version-kind": {
89916          "group": "rbac.authorization.k8s.io",
89917          "kind": "RoleBinding",
89918          "version": "v1"
89919        }
89920      },
89921      "parameters": [
89922        {
89923          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89924          "in": "query",
89925          "name": "allowWatchBookmarks",
89926          "type": "boolean",
89927          "uniqueItems": true
89928        },
89929        {
89930          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89931          "in": "query",
89932          "name": "continue",
89933          "type": "string",
89934          "uniqueItems": true
89935        },
89936        {
89937          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89938          "in": "query",
89939          "name": "fieldSelector",
89940          "type": "string",
89941          "uniqueItems": true
89942        },
89943        {
89944          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89945          "in": "query",
89946          "name": "labelSelector",
89947          "type": "string",
89948          "uniqueItems": true
89949        },
89950        {
89951          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89952          "in": "query",
89953          "name": "limit",
89954          "type": "integer",
89955          "uniqueItems": true
89956        },
89957        {
89958          "description": "name of the RoleBinding",
89959          "in": "path",
89960          "name": "name",
89961          "required": true,
89962          "type": "string",
89963          "uniqueItems": true
89964        },
89965        {
89966          "description": "object name and auth scope, such as for teams and projects",
89967          "in": "path",
89968          "name": "namespace",
89969          "required": true,
89970          "type": "string",
89971          "uniqueItems": true
89972        },
89973        {
89974          "description": "If 'true', then the output is pretty printed.",
89975          "in": "query",
89976          "name": "pretty",
89977          "type": "string",
89978          "uniqueItems": true
89979        },
89980        {
89981          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89982          "in": "query",
89983          "name": "resourceVersion",
89984          "type": "string",
89985          "uniqueItems": true
89986        },
89987        {
89988          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89989          "in": "query",
89990          "name": "resourceVersionMatch",
89991          "type": "string",
89992          "uniqueItems": true
89993        },
89994        {
89995          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89996          "in": "query",
89997          "name": "timeoutSeconds",
89998          "type": "integer",
89999          "uniqueItems": true
90000        },
90001        {
90002          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90003          "in": "query",
90004          "name": "watch",
90005          "type": "boolean",
90006          "uniqueItems": true
90007        }
90008      ]
90009    },
90010    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles": {
90011      "get": {
90012        "consumes": [
90013          "*/*"
90014        ],
90015        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
90016        "operationId": "watchRbacAuthorizationV1NamespacedRoleList",
90017        "produces": [
90018          "application/json",
90019          "application/yaml",
90020          "application/vnd.kubernetes.protobuf",
90021          "application/json;stream=watch",
90022          "application/vnd.kubernetes.protobuf;stream=watch"
90023        ],
90024        "responses": {
90025          "200": {
90026            "description": "OK",
90027            "schema": {
90028              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90029            }
90030          },
90031          "401": {
90032            "description": "Unauthorized"
90033          }
90034        },
90035        "schemes": [
90036          "https"
90037        ],
90038        "tags": [
90039          "rbacAuthorization_v1"
90040        ],
90041        "x-kubernetes-action": "watchlist",
90042        "x-kubernetes-group-version-kind": {
90043          "group": "rbac.authorization.k8s.io",
90044          "kind": "Role",
90045          "version": "v1"
90046        }
90047      },
90048      "parameters": [
90049        {
90050          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90051          "in": "query",
90052          "name": "allowWatchBookmarks",
90053          "type": "boolean",
90054          "uniqueItems": true
90055        },
90056        {
90057          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90058          "in": "query",
90059          "name": "continue",
90060          "type": "string",
90061          "uniqueItems": true
90062        },
90063        {
90064          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90065          "in": "query",
90066          "name": "fieldSelector",
90067          "type": "string",
90068          "uniqueItems": true
90069        },
90070        {
90071          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90072          "in": "query",
90073          "name": "labelSelector",
90074          "type": "string",
90075          "uniqueItems": true
90076        },
90077        {
90078          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90079          "in": "query",
90080          "name": "limit",
90081          "type": "integer",
90082          "uniqueItems": true
90083        },
90084        {
90085          "description": "object name and auth scope, such as for teams and projects",
90086          "in": "path",
90087          "name": "namespace",
90088          "required": true,
90089          "type": "string",
90090          "uniqueItems": true
90091        },
90092        {
90093          "description": "If 'true', then the output is pretty printed.",
90094          "in": "query",
90095          "name": "pretty",
90096          "type": "string",
90097          "uniqueItems": true
90098        },
90099        {
90100          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90101          "in": "query",
90102          "name": "resourceVersion",
90103          "type": "string",
90104          "uniqueItems": true
90105        },
90106        {
90107          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90108          "in": "query",
90109          "name": "resourceVersionMatch",
90110          "type": "string",
90111          "uniqueItems": true
90112        },
90113        {
90114          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90115          "in": "query",
90116          "name": "timeoutSeconds",
90117          "type": "integer",
90118          "uniqueItems": true
90119        },
90120        {
90121          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90122          "in": "query",
90123          "name": "watch",
90124          "type": "boolean",
90125          "uniqueItems": true
90126        }
90127      ]
90128    },
90129    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}": {
90130      "get": {
90131        "consumes": [
90132          "*/*"
90133        ],
90134        "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.",
90135        "operationId": "watchRbacAuthorizationV1NamespacedRole",
90136        "produces": [
90137          "application/json",
90138          "application/yaml",
90139          "application/vnd.kubernetes.protobuf",
90140          "application/json;stream=watch",
90141          "application/vnd.kubernetes.protobuf;stream=watch"
90142        ],
90143        "responses": {
90144          "200": {
90145            "description": "OK",
90146            "schema": {
90147              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90148            }
90149          },
90150          "401": {
90151            "description": "Unauthorized"
90152          }
90153        },
90154        "schemes": [
90155          "https"
90156        ],
90157        "tags": [
90158          "rbacAuthorization_v1"
90159        ],
90160        "x-kubernetes-action": "watch",
90161        "x-kubernetes-group-version-kind": {
90162          "group": "rbac.authorization.k8s.io",
90163          "kind": "Role",
90164          "version": "v1"
90165        }
90166      },
90167      "parameters": [
90168        {
90169          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90170          "in": "query",
90171          "name": "allowWatchBookmarks",
90172          "type": "boolean",
90173          "uniqueItems": true
90174        },
90175        {
90176          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90177          "in": "query",
90178          "name": "continue",
90179          "type": "string",
90180          "uniqueItems": true
90181        },
90182        {
90183          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90184          "in": "query",
90185          "name": "fieldSelector",
90186          "type": "string",
90187          "uniqueItems": true
90188        },
90189        {
90190          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90191          "in": "query",
90192          "name": "labelSelector",
90193          "type": "string",
90194          "uniqueItems": true
90195        },
90196        {
90197          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90198          "in": "query",
90199          "name": "limit",
90200          "type": "integer",
90201          "uniqueItems": true
90202        },
90203        {
90204          "description": "name of the Role",
90205          "in": "path",
90206          "name": "name",
90207          "required": true,
90208          "type": "string",
90209          "uniqueItems": true
90210        },
90211        {
90212          "description": "object name and auth scope, such as for teams and projects",
90213          "in": "path",
90214          "name": "namespace",
90215          "required": true,
90216          "type": "string",
90217          "uniqueItems": true
90218        },
90219        {
90220          "description": "If 'true', then the output is pretty printed.",
90221          "in": "query",
90222          "name": "pretty",
90223          "type": "string",
90224          "uniqueItems": true
90225        },
90226        {
90227          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90228          "in": "query",
90229          "name": "resourceVersion",
90230          "type": "string",
90231          "uniqueItems": true
90232        },
90233        {
90234          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90235          "in": "query",
90236          "name": "resourceVersionMatch",
90237          "type": "string",
90238          "uniqueItems": true
90239        },
90240        {
90241          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90242          "in": "query",
90243          "name": "timeoutSeconds",
90244          "type": "integer",
90245          "uniqueItems": true
90246        },
90247        {
90248          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90249          "in": "query",
90250          "name": "watch",
90251          "type": "boolean",
90252          "uniqueItems": true
90253        }
90254      ]
90255    },
90256    "/apis/rbac.authorization.k8s.io/v1/watch/rolebindings": {
90257      "get": {
90258        "consumes": [
90259          "*/*"
90260        ],
90261        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
90262        "operationId": "watchRbacAuthorizationV1RoleBindingListForAllNamespaces",
90263        "produces": [
90264          "application/json",
90265          "application/yaml",
90266          "application/vnd.kubernetes.protobuf",
90267          "application/json;stream=watch",
90268          "application/vnd.kubernetes.protobuf;stream=watch"
90269        ],
90270        "responses": {
90271          "200": {
90272            "description": "OK",
90273            "schema": {
90274              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90275            }
90276          },
90277          "401": {
90278            "description": "Unauthorized"
90279          }
90280        },
90281        "schemes": [
90282          "https"
90283        ],
90284        "tags": [
90285          "rbacAuthorization_v1"
90286        ],
90287        "x-kubernetes-action": "watchlist",
90288        "x-kubernetes-group-version-kind": {
90289          "group": "rbac.authorization.k8s.io",
90290          "kind": "RoleBinding",
90291          "version": "v1"
90292        }
90293      },
90294      "parameters": [
90295        {
90296          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90297          "in": "query",
90298          "name": "allowWatchBookmarks",
90299          "type": "boolean",
90300          "uniqueItems": true
90301        },
90302        {
90303          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90304          "in": "query",
90305          "name": "continue",
90306          "type": "string",
90307          "uniqueItems": true
90308        },
90309        {
90310          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90311          "in": "query",
90312          "name": "fieldSelector",
90313          "type": "string",
90314          "uniqueItems": true
90315        },
90316        {
90317          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90318          "in": "query",
90319          "name": "labelSelector",
90320          "type": "string",
90321          "uniqueItems": true
90322        },
90323        {
90324          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90325          "in": "query",
90326          "name": "limit",
90327          "type": "integer",
90328          "uniqueItems": true
90329        },
90330        {
90331          "description": "If 'true', then the output is pretty printed.",
90332          "in": "query",
90333          "name": "pretty",
90334          "type": "string",
90335          "uniqueItems": true
90336        },
90337        {
90338          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90339          "in": "query",
90340          "name": "resourceVersion",
90341          "type": "string",
90342          "uniqueItems": true
90343        },
90344        {
90345          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90346          "in": "query",
90347          "name": "resourceVersionMatch",
90348          "type": "string",
90349          "uniqueItems": true
90350        },
90351        {
90352          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90353          "in": "query",
90354          "name": "timeoutSeconds",
90355          "type": "integer",
90356          "uniqueItems": true
90357        },
90358        {
90359          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90360          "in": "query",
90361          "name": "watch",
90362          "type": "boolean",
90363          "uniqueItems": true
90364        }
90365      ]
90366    },
90367    "/apis/rbac.authorization.k8s.io/v1/watch/roles": {
90368      "get": {
90369        "consumes": [
90370          "*/*"
90371        ],
90372        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
90373        "operationId": "watchRbacAuthorizationV1RoleListForAllNamespaces",
90374        "produces": [
90375          "application/json",
90376          "application/yaml",
90377          "application/vnd.kubernetes.protobuf",
90378          "application/json;stream=watch",
90379          "application/vnd.kubernetes.protobuf;stream=watch"
90380        ],
90381        "responses": {
90382          "200": {
90383            "description": "OK",
90384            "schema": {
90385              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90386            }
90387          },
90388          "401": {
90389            "description": "Unauthorized"
90390          }
90391        },
90392        "schemes": [
90393          "https"
90394        ],
90395        "tags": [
90396          "rbacAuthorization_v1"
90397        ],
90398        "x-kubernetes-action": "watchlist",
90399        "x-kubernetes-group-version-kind": {
90400          "group": "rbac.authorization.k8s.io",
90401          "kind": "Role",
90402          "version": "v1"
90403        }
90404      },
90405      "parameters": [
90406        {
90407          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90408          "in": "query",
90409          "name": "allowWatchBookmarks",
90410          "type": "boolean",
90411          "uniqueItems": true
90412        },
90413        {
90414          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90415          "in": "query",
90416          "name": "continue",
90417          "type": "string",
90418          "uniqueItems": true
90419        },
90420        {
90421          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90422          "in": "query",
90423          "name": "fieldSelector",
90424          "type": "string",
90425          "uniqueItems": true
90426        },
90427        {
90428          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90429          "in": "query",
90430          "name": "labelSelector",
90431          "type": "string",
90432          "uniqueItems": true
90433        },
90434        {
90435          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90436          "in": "query",
90437          "name": "limit",
90438          "type": "integer",
90439          "uniqueItems": true
90440        },
90441        {
90442          "description": "If 'true', then the output is pretty printed.",
90443          "in": "query",
90444          "name": "pretty",
90445          "type": "string",
90446          "uniqueItems": true
90447        },
90448        {
90449          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90450          "in": "query",
90451          "name": "resourceVersion",
90452          "type": "string",
90453          "uniqueItems": true
90454        },
90455        {
90456          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90457          "in": "query",
90458          "name": "resourceVersionMatch",
90459          "type": "string",
90460          "uniqueItems": true
90461        },
90462        {
90463          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90464          "in": "query",
90465          "name": "timeoutSeconds",
90466          "type": "integer",
90467          "uniqueItems": true
90468        },
90469        {
90470          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90471          "in": "query",
90472          "name": "watch",
90473          "type": "boolean",
90474          "uniqueItems": true
90475        }
90476      ]
90477    },
90478    "/apis/rbac.authorization.k8s.io/v1alpha1/": {
90479      "get": {
90480        "consumes": [
90481          "application/json",
90482          "application/yaml",
90483          "application/vnd.kubernetes.protobuf"
90484        ],
90485        "description": "get available resources",
90486        "operationId": "getRbacAuthorizationV1alpha1APIResources",
90487        "produces": [
90488          "application/json",
90489          "application/yaml",
90490          "application/vnd.kubernetes.protobuf"
90491        ],
90492        "responses": {
90493          "200": {
90494            "description": "OK",
90495            "schema": {
90496              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
90497            }
90498          },
90499          "401": {
90500            "description": "Unauthorized"
90501          }
90502        },
90503        "schemes": [
90504          "https"
90505        ],
90506        "tags": [
90507          "rbacAuthorization_v1alpha1"
90508        ]
90509      }
90510    },
90511    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings": {
90512      "delete": {
90513        "consumes": [
90514          "*/*"
90515        ],
90516        "description": "delete collection of ClusterRoleBinding",
90517        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding",
90518        "parameters": [
90519          {
90520            "in": "body",
90521            "name": "body",
90522            "schema": {
90523              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
90524            }
90525          },
90526          {
90527            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90528            "in": "query",
90529            "name": "continue",
90530            "type": "string",
90531            "uniqueItems": true
90532          },
90533          {
90534            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90535            "in": "query",
90536            "name": "dryRun",
90537            "type": "string",
90538            "uniqueItems": true
90539          },
90540          {
90541            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90542            "in": "query",
90543            "name": "fieldSelector",
90544            "type": "string",
90545            "uniqueItems": true
90546          },
90547          {
90548            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
90549            "in": "query",
90550            "name": "gracePeriodSeconds",
90551            "type": "integer",
90552            "uniqueItems": true
90553          },
90554          {
90555            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90556            "in": "query",
90557            "name": "labelSelector",
90558            "type": "string",
90559            "uniqueItems": true
90560          },
90561          {
90562            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90563            "in": "query",
90564            "name": "limit",
90565            "type": "integer",
90566            "uniqueItems": true
90567          },
90568          {
90569            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
90570            "in": "query",
90571            "name": "orphanDependents",
90572            "type": "boolean",
90573            "uniqueItems": true
90574          },
90575          {
90576            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
90577            "in": "query",
90578            "name": "propagationPolicy",
90579            "type": "string",
90580            "uniqueItems": true
90581          },
90582          {
90583            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90584            "in": "query",
90585            "name": "resourceVersion",
90586            "type": "string",
90587            "uniqueItems": true
90588          },
90589          {
90590            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90591            "in": "query",
90592            "name": "resourceVersionMatch",
90593            "type": "string",
90594            "uniqueItems": true
90595          },
90596          {
90597            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90598            "in": "query",
90599            "name": "timeoutSeconds",
90600            "type": "integer",
90601            "uniqueItems": true
90602          }
90603        ],
90604        "produces": [
90605          "application/json",
90606          "application/yaml",
90607          "application/vnd.kubernetes.protobuf"
90608        ],
90609        "responses": {
90610          "200": {
90611            "description": "OK",
90612            "schema": {
90613              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90614            }
90615          },
90616          "401": {
90617            "description": "Unauthorized"
90618          }
90619        },
90620        "schemes": [
90621          "https"
90622        ],
90623        "tags": [
90624          "rbacAuthorization_v1alpha1"
90625        ],
90626        "x-kubernetes-action": "deletecollection",
90627        "x-kubernetes-group-version-kind": {
90628          "group": "rbac.authorization.k8s.io",
90629          "kind": "ClusterRoleBinding",
90630          "version": "v1alpha1"
90631        }
90632      },
90633      "get": {
90634        "consumes": [
90635          "*/*"
90636        ],
90637        "description": "list or watch objects of kind ClusterRoleBinding",
90638        "operationId": "listRbacAuthorizationV1alpha1ClusterRoleBinding",
90639        "parameters": [
90640          {
90641            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90642            "in": "query",
90643            "name": "allowWatchBookmarks",
90644            "type": "boolean",
90645            "uniqueItems": true
90646          },
90647          {
90648            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90649            "in": "query",
90650            "name": "continue",
90651            "type": "string",
90652            "uniqueItems": true
90653          },
90654          {
90655            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90656            "in": "query",
90657            "name": "fieldSelector",
90658            "type": "string",
90659            "uniqueItems": true
90660          },
90661          {
90662            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90663            "in": "query",
90664            "name": "labelSelector",
90665            "type": "string",
90666            "uniqueItems": true
90667          },
90668          {
90669            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90670            "in": "query",
90671            "name": "limit",
90672            "type": "integer",
90673            "uniqueItems": true
90674          },
90675          {
90676            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90677            "in": "query",
90678            "name": "resourceVersion",
90679            "type": "string",
90680            "uniqueItems": true
90681          },
90682          {
90683            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90684            "in": "query",
90685            "name": "resourceVersionMatch",
90686            "type": "string",
90687            "uniqueItems": true
90688          },
90689          {
90690            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90691            "in": "query",
90692            "name": "timeoutSeconds",
90693            "type": "integer",
90694            "uniqueItems": true
90695          },
90696          {
90697            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90698            "in": "query",
90699            "name": "watch",
90700            "type": "boolean",
90701            "uniqueItems": true
90702          }
90703        ],
90704        "produces": [
90705          "application/json",
90706          "application/yaml",
90707          "application/vnd.kubernetes.protobuf",
90708          "application/json;stream=watch",
90709          "application/vnd.kubernetes.protobuf;stream=watch"
90710        ],
90711        "responses": {
90712          "200": {
90713            "description": "OK",
90714            "schema": {
90715              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList"
90716            }
90717          },
90718          "401": {
90719            "description": "Unauthorized"
90720          }
90721        },
90722        "schemes": [
90723          "https"
90724        ],
90725        "tags": [
90726          "rbacAuthorization_v1alpha1"
90727        ],
90728        "x-kubernetes-action": "list",
90729        "x-kubernetes-group-version-kind": {
90730          "group": "rbac.authorization.k8s.io",
90731          "kind": "ClusterRoleBinding",
90732          "version": "v1alpha1"
90733        }
90734      },
90735      "parameters": [
90736        {
90737          "description": "If 'true', then the output is pretty printed.",
90738          "in": "query",
90739          "name": "pretty",
90740          "type": "string",
90741          "uniqueItems": true
90742        }
90743      ],
90744      "post": {
90745        "consumes": [
90746          "*/*"
90747        ],
90748        "description": "create a ClusterRoleBinding",
90749        "operationId": "createRbacAuthorizationV1alpha1ClusterRoleBinding",
90750        "parameters": [
90751          {
90752            "in": "body",
90753            "name": "body",
90754            "required": true,
90755            "schema": {
90756              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90757            }
90758          },
90759          {
90760            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90761            "in": "query",
90762            "name": "dryRun",
90763            "type": "string",
90764            "uniqueItems": true
90765          },
90766          {
90767            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
90768            "in": "query",
90769            "name": "fieldManager",
90770            "type": "string",
90771            "uniqueItems": true
90772          }
90773        ],
90774        "produces": [
90775          "application/json",
90776          "application/yaml",
90777          "application/vnd.kubernetes.protobuf"
90778        ],
90779        "responses": {
90780          "200": {
90781            "description": "OK",
90782            "schema": {
90783              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90784            }
90785          },
90786          "201": {
90787            "description": "Created",
90788            "schema": {
90789              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90790            }
90791          },
90792          "202": {
90793            "description": "Accepted",
90794            "schema": {
90795              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90796            }
90797          },
90798          "401": {
90799            "description": "Unauthorized"
90800          }
90801        },
90802        "schemes": [
90803          "https"
90804        ],
90805        "tags": [
90806          "rbacAuthorization_v1alpha1"
90807        ],
90808        "x-kubernetes-action": "post",
90809        "x-kubernetes-group-version-kind": {
90810          "group": "rbac.authorization.k8s.io",
90811          "kind": "ClusterRoleBinding",
90812          "version": "v1alpha1"
90813        }
90814      }
90815    },
90816    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}": {
90817      "delete": {
90818        "consumes": [
90819          "*/*"
90820        ],
90821        "description": "delete a ClusterRoleBinding",
90822        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRoleBinding",
90823        "parameters": [
90824          {
90825            "in": "body",
90826            "name": "body",
90827            "schema": {
90828              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
90829            }
90830          },
90831          {
90832            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90833            "in": "query",
90834            "name": "dryRun",
90835            "type": "string",
90836            "uniqueItems": true
90837          },
90838          {
90839            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
90840            "in": "query",
90841            "name": "gracePeriodSeconds",
90842            "type": "integer",
90843            "uniqueItems": true
90844          },
90845          {
90846            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
90847            "in": "query",
90848            "name": "orphanDependents",
90849            "type": "boolean",
90850            "uniqueItems": true
90851          },
90852          {
90853            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
90854            "in": "query",
90855            "name": "propagationPolicy",
90856            "type": "string",
90857            "uniqueItems": true
90858          }
90859        ],
90860        "produces": [
90861          "application/json",
90862          "application/yaml",
90863          "application/vnd.kubernetes.protobuf"
90864        ],
90865        "responses": {
90866          "200": {
90867            "description": "OK",
90868            "schema": {
90869              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90870            }
90871          },
90872          "202": {
90873            "description": "Accepted",
90874            "schema": {
90875              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90876            }
90877          },
90878          "401": {
90879            "description": "Unauthorized"
90880          }
90881        },
90882        "schemes": [
90883          "https"
90884        ],
90885        "tags": [
90886          "rbacAuthorization_v1alpha1"
90887        ],
90888        "x-kubernetes-action": "delete",
90889        "x-kubernetes-group-version-kind": {
90890          "group": "rbac.authorization.k8s.io",
90891          "kind": "ClusterRoleBinding",
90892          "version": "v1alpha1"
90893        }
90894      },
90895      "get": {
90896        "consumes": [
90897          "*/*"
90898        ],
90899        "description": "read the specified ClusterRoleBinding",
90900        "operationId": "readRbacAuthorizationV1alpha1ClusterRoleBinding",
90901        "produces": [
90902          "application/json",
90903          "application/yaml",
90904          "application/vnd.kubernetes.protobuf"
90905        ],
90906        "responses": {
90907          "200": {
90908            "description": "OK",
90909            "schema": {
90910              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90911            }
90912          },
90913          "401": {
90914            "description": "Unauthorized"
90915          }
90916        },
90917        "schemes": [
90918          "https"
90919        ],
90920        "tags": [
90921          "rbacAuthorization_v1alpha1"
90922        ],
90923        "x-kubernetes-action": "get",
90924        "x-kubernetes-group-version-kind": {
90925          "group": "rbac.authorization.k8s.io",
90926          "kind": "ClusterRoleBinding",
90927          "version": "v1alpha1"
90928        }
90929      },
90930      "parameters": [
90931        {
90932          "description": "name of the ClusterRoleBinding",
90933          "in": "path",
90934          "name": "name",
90935          "required": true,
90936          "type": "string",
90937          "uniqueItems": true
90938        },
90939        {
90940          "description": "If 'true', then the output is pretty printed.",
90941          "in": "query",
90942          "name": "pretty",
90943          "type": "string",
90944          "uniqueItems": true
90945        }
90946      ],
90947      "patch": {
90948        "consumes": [
90949          "application/json-patch+json",
90950          "application/merge-patch+json",
90951          "application/strategic-merge-patch+json",
90952          "application/apply-patch+yaml"
90953        ],
90954        "description": "partially update the specified ClusterRoleBinding",
90955        "operationId": "patchRbacAuthorizationV1alpha1ClusterRoleBinding",
90956        "parameters": [
90957          {
90958            "in": "body",
90959            "name": "body",
90960            "required": true,
90961            "schema": {
90962              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
90963            }
90964          },
90965          {
90966            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90967            "in": "query",
90968            "name": "dryRun",
90969            "type": "string",
90970            "uniqueItems": true
90971          },
90972          {
90973            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
90974            "in": "query",
90975            "name": "fieldManager",
90976            "type": "string",
90977            "uniqueItems": true
90978          },
90979          {
90980            "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.",
90981            "in": "query",
90982            "name": "force",
90983            "type": "boolean",
90984            "uniqueItems": true
90985          }
90986        ],
90987        "produces": [
90988          "application/json",
90989          "application/yaml",
90990          "application/vnd.kubernetes.protobuf"
90991        ],
90992        "responses": {
90993          "200": {
90994            "description": "OK",
90995            "schema": {
90996              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90997            }
90998          },
90999          "401": {
91000            "description": "Unauthorized"
91001          }
91002        },
91003        "schemes": [
91004          "https"
91005        ],
91006        "tags": [
91007          "rbacAuthorization_v1alpha1"
91008        ],
91009        "x-kubernetes-action": "patch",
91010        "x-kubernetes-group-version-kind": {
91011          "group": "rbac.authorization.k8s.io",
91012          "kind": "ClusterRoleBinding",
91013          "version": "v1alpha1"
91014        }
91015      },
91016      "put": {
91017        "consumes": [
91018          "*/*"
91019        ],
91020        "description": "replace the specified ClusterRoleBinding",
91021        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRoleBinding",
91022        "parameters": [
91023          {
91024            "in": "body",
91025            "name": "body",
91026            "required": true,
91027            "schema": {
91028              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
91029            }
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": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91040            "in": "query",
91041            "name": "fieldManager",
91042            "type": "string",
91043            "uniqueItems": true
91044          }
91045        ],
91046        "produces": [
91047          "application/json",
91048          "application/yaml",
91049          "application/vnd.kubernetes.protobuf"
91050        ],
91051        "responses": {
91052          "200": {
91053            "description": "OK",
91054            "schema": {
91055              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
91056            }
91057          },
91058          "201": {
91059            "description": "Created",
91060            "schema": {
91061              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
91062            }
91063          },
91064          "401": {
91065            "description": "Unauthorized"
91066          }
91067        },
91068        "schemes": [
91069          "https"
91070        ],
91071        "tags": [
91072          "rbacAuthorization_v1alpha1"
91073        ],
91074        "x-kubernetes-action": "put",
91075        "x-kubernetes-group-version-kind": {
91076          "group": "rbac.authorization.k8s.io",
91077          "kind": "ClusterRoleBinding",
91078          "version": "v1alpha1"
91079        }
91080      }
91081    },
91082    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles": {
91083      "delete": {
91084        "consumes": [
91085          "*/*"
91086        ],
91087        "description": "delete collection of ClusterRole",
91088        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRole",
91089        "parameters": [
91090          {
91091            "in": "body",
91092            "name": "body",
91093            "schema": {
91094              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91095            }
91096          },
91097          {
91098            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91099            "in": "query",
91100            "name": "continue",
91101            "type": "string",
91102            "uniqueItems": true
91103          },
91104          {
91105            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91106            "in": "query",
91107            "name": "dryRun",
91108            "type": "string",
91109            "uniqueItems": true
91110          },
91111          {
91112            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91113            "in": "query",
91114            "name": "fieldSelector",
91115            "type": "string",
91116            "uniqueItems": true
91117          },
91118          {
91119            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91120            "in": "query",
91121            "name": "gracePeriodSeconds",
91122            "type": "integer",
91123            "uniqueItems": true
91124          },
91125          {
91126            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91127            "in": "query",
91128            "name": "labelSelector",
91129            "type": "string",
91130            "uniqueItems": true
91131          },
91132          {
91133            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91134            "in": "query",
91135            "name": "limit",
91136            "type": "integer",
91137            "uniqueItems": true
91138          },
91139          {
91140            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91141            "in": "query",
91142            "name": "orphanDependents",
91143            "type": "boolean",
91144            "uniqueItems": true
91145          },
91146          {
91147            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
91148            "in": "query",
91149            "name": "propagationPolicy",
91150            "type": "string",
91151            "uniqueItems": true
91152          },
91153          {
91154            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91155            "in": "query",
91156            "name": "resourceVersion",
91157            "type": "string",
91158            "uniqueItems": true
91159          },
91160          {
91161            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91162            "in": "query",
91163            "name": "resourceVersionMatch",
91164            "type": "string",
91165            "uniqueItems": true
91166          },
91167          {
91168            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91169            "in": "query",
91170            "name": "timeoutSeconds",
91171            "type": "integer",
91172            "uniqueItems": true
91173          }
91174        ],
91175        "produces": [
91176          "application/json",
91177          "application/yaml",
91178          "application/vnd.kubernetes.protobuf"
91179        ],
91180        "responses": {
91181          "200": {
91182            "description": "OK",
91183            "schema": {
91184              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91185            }
91186          },
91187          "401": {
91188            "description": "Unauthorized"
91189          }
91190        },
91191        "schemes": [
91192          "https"
91193        ],
91194        "tags": [
91195          "rbacAuthorization_v1alpha1"
91196        ],
91197        "x-kubernetes-action": "deletecollection",
91198        "x-kubernetes-group-version-kind": {
91199          "group": "rbac.authorization.k8s.io",
91200          "kind": "ClusterRole",
91201          "version": "v1alpha1"
91202        }
91203      },
91204      "get": {
91205        "consumes": [
91206          "*/*"
91207        ],
91208        "description": "list or watch objects of kind ClusterRole",
91209        "operationId": "listRbacAuthorizationV1alpha1ClusterRole",
91210        "parameters": [
91211          {
91212            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
91213            "in": "query",
91214            "name": "allowWatchBookmarks",
91215            "type": "boolean",
91216            "uniqueItems": true
91217          },
91218          {
91219            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91220            "in": "query",
91221            "name": "continue",
91222            "type": "string",
91223            "uniqueItems": true
91224          },
91225          {
91226            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91227            "in": "query",
91228            "name": "fieldSelector",
91229            "type": "string",
91230            "uniqueItems": true
91231          },
91232          {
91233            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91234            "in": "query",
91235            "name": "labelSelector",
91236            "type": "string",
91237            "uniqueItems": true
91238          },
91239          {
91240            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91241            "in": "query",
91242            "name": "limit",
91243            "type": "integer",
91244            "uniqueItems": true
91245          },
91246          {
91247            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91248            "in": "query",
91249            "name": "resourceVersion",
91250            "type": "string",
91251            "uniqueItems": true
91252          },
91253          {
91254            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91255            "in": "query",
91256            "name": "resourceVersionMatch",
91257            "type": "string",
91258            "uniqueItems": true
91259          },
91260          {
91261            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91262            "in": "query",
91263            "name": "timeoutSeconds",
91264            "type": "integer",
91265            "uniqueItems": true
91266          },
91267          {
91268            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91269            "in": "query",
91270            "name": "watch",
91271            "type": "boolean",
91272            "uniqueItems": true
91273          }
91274        ],
91275        "produces": [
91276          "application/json",
91277          "application/yaml",
91278          "application/vnd.kubernetes.protobuf",
91279          "application/json;stream=watch",
91280          "application/vnd.kubernetes.protobuf;stream=watch"
91281        ],
91282        "responses": {
91283          "200": {
91284            "description": "OK",
91285            "schema": {
91286              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleList"
91287            }
91288          },
91289          "401": {
91290            "description": "Unauthorized"
91291          }
91292        },
91293        "schemes": [
91294          "https"
91295        ],
91296        "tags": [
91297          "rbacAuthorization_v1alpha1"
91298        ],
91299        "x-kubernetes-action": "list",
91300        "x-kubernetes-group-version-kind": {
91301          "group": "rbac.authorization.k8s.io",
91302          "kind": "ClusterRole",
91303          "version": "v1alpha1"
91304        }
91305      },
91306      "parameters": [
91307        {
91308          "description": "If 'true', then the output is pretty printed.",
91309          "in": "query",
91310          "name": "pretty",
91311          "type": "string",
91312          "uniqueItems": true
91313        }
91314      ],
91315      "post": {
91316        "consumes": [
91317          "*/*"
91318        ],
91319        "description": "create a ClusterRole",
91320        "operationId": "createRbacAuthorizationV1alpha1ClusterRole",
91321        "parameters": [
91322          {
91323            "in": "body",
91324            "name": "body",
91325            "required": true,
91326            "schema": {
91327              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
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": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91339            "in": "query",
91340            "name": "fieldManager",
91341            "type": "string",
91342            "uniqueItems": true
91343          }
91344        ],
91345        "produces": [
91346          "application/json",
91347          "application/yaml",
91348          "application/vnd.kubernetes.protobuf"
91349        ],
91350        "responses": {
91351          "200": {
91352            "description": "OK",
91353            "schema": {
91354              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91355            }
91356          },
91357          "201": {
91358            "description": "Created",
91359            "schema": {
91360              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91361            }
91362          },
91363          "202": {
91364            "description": "Accepted",
91365            "schema": {
91366              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91367            }
91368          },
91369          "401": {
91370            "description": "Unauthorized"
91371          }
91372        },
91373        "schemes": [
91374          "https"
91375        ],
91376        "tags": [
91377          "rbacAuthorization_v1alpha1"
91378        ],
91379        "x-kubernetes-action": "post",
91380        "x-kubernetes-group-version-kind": {
91381          "group": "rbac.authorization.k8s.io",
91382          "kind": "ClusterRole",
91383          "version": "v1alpha1"
91384        }
91385      }
91386    },
91387    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}": {
91388      "delete": {
91389        "consumes": [
91390          "*/*"
91391        ],
91392        "description": "delete a ClusterRole",
91393        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRole",
91394        "parameters": [
91395          {
91396            "in": "body",
91397            "name": "body",
91398            "schema": {
91399              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91400            }
91401          },
91402          {
91403            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91404            "in": "query",
91405            "name": "dryRun",
91406            "type": "string",
91407            "uniqueItems": true
91408          },
91409          {
91410            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91411            "in": "query",
91412            "name": "gracePeriodSeconds",
91413            "type": "integer",
91414            "uniqueItems": true
91415          },
91416          {
91417            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91418            "in": "query",
91419            "name": "orphanDependents",
91420            "type": "boolean",
91421            "uniqueItems": true
91422          },
91423          {
91424            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
91425            "in": "query",
91426            "name": "propagationPolicy",
91427            "type": "string",
91428            "uniqueItems": true
91429          }
91430        ],
91431        "produces": [
91432          "application/json",
91433          "application/yaml",
91434          "application/vnd.kubernetes.protobuf"
91435        ],
91436        "responses": {
91437          "200": {
91438            "description": "OK",
91439            "schema": {
91440              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91441            }
91442          },
91443          "202": {
91444            "description": "Accepted",
91445            "schema": {
91446              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91447            }
91448          },
91449          "401": {
91450            "description": "Unauthorized"
91451          }
91452        },
91453        "schemes": [
91454          "https"
91455        ],
91456        "tags": [
91457          "rbacAuthorization_v1alpha1"
91458        ],
91459        "x-kubernetes-action": "delete",
91460        "x-kubernetes-group-version-kind": {
91461          "group": "rbac.authorization.k8s.io",
91462          "kind": "ClusterRole",
91463          "version": "v1alpha1"
91464        }
91465      },
91466      "get": {
91467        "consumes": [
91468          "*/*"
91469        ],
91470        "description": "read the specified ClusterRole",
91471        "operationId": "readRbacAuthorizationV1alpha1ClusterRole",
91472        "produces": [
91473          "application/json",
91474          "application/yaml",
91475          "application/vnd.kubernetes.protobuf"
91476        ],
91477        "responses": {
91478          "200": {
91479            "description": "OK",
91480            "schema": {
91481              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91482            }
91483          },
91484          "401": {
91485            "description": "Unauthorized"
91486          }
91487        },
91488        "schemes": [
91489          "https"
91490        ],
91491        "tags": [
91492          "rbacAuthorization_v1alpha1"
91493        ],
91494        "x-kubernetes-action": "get",
91495        "x-kubernetes-group-version-kind": {
91496          "group": "rbac.authorization.k8s.io",
91497          "kind": "ClusterRole",
91498          "version": "v1alpha1"
91499        }
91500      },
91501      "parameters": [
91502        {
91503          "description": "name of the ClusterRole",
91504          "in": "path",
91505          "name": "name",
91506          "required": true,
91507          "type": "string",
91508          "uniqueItems": true
91509        },
91510        {
91511          "description": "If 'true', then the output is pretty printed.",
91512          "in": "query",
91513          "name": "pretty",
91514          "type": "string",
91515          "uniqueItems": true
91516        }
91517      ],
91518      "patch": {
91519        "consumes": [
91520          "application/json-patch+json",
91521          "application/merge-patch+json",
91522          "application/strategic-merge-patch+json",
91523          "application/apply-patch+yaml"
91524        ],
91525        "description": "partially update the specified ClusterRole",
91526        "operationId": "patchRbacAuthorizationV1alpha1ClusterRole",
91527        "parameters": [
91528          {
91529            "in": "body",
91530            "name": "body",
91531            "required": true,
91532            "schema": {
91533              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
91534            }
91535          },
91536          {
91537            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91538            "in": "query",
91539            "name": "dryRun",
91540            "type": "string",
91541            "uniqueItems": true
91542          },
91543          {
91544            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
91545            "in": "query",
91546            "name": "fieldManager",
91547            "type": "string",
91548            "uniqueItems": true
91549          },
91550          {
91551            "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.",
91552            "in": "query",
91553            "name": "force",
91554            "type": "boolean",
91555            "uniqueItems": true
91556          }
91557        ],
91558        "produces": [
91559          "application/json",
91560          "application/yaml",
91561          "application/vnd.kubernetes.protobuf"
91562        ],
91563        "responses": {
91564          "200": {
91565            "description": "OK",
91566            "schema": {
91567              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91568            }
91569          },
91570          "401": {
91571            "description": "Unauthorized"
91572          }
91573        },
91574        "schemes": [
91575          "https"
91576        ],
91577        "tags": [
91578          "rbacAuthorization_v1alpha1"
91579        ],
91580        "x-kubernetes-action": "patch",
91581        "x-kubernetes-group-version-kind": {
91582          "group": "rbac.authorization.k8s.io",
91583          "kind": "ClusterRole",
91584          "version": "v1alpha1"
91585        }
91586      },
91587      "put": {
91588        "consumes": [
91589          "*/*"
91590        ],
91591        "description": "replace the specified ClusterRole",
91592        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRole",
91593        "parameters": [
91594          {
91595            "in": "body",
91596            "name": "body",
91597            "required": true,
91598            "schema": {
91599              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91600            }
91601          },
91602          {
91603            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91604            "in": "query",
91605            "name": "dryRun",
91606            "type": "string",
91607            "uniqueItems": true
91608          },
91609          {
91610            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91611            "in": "query",
91612            "name": "fieldManager",
91613            "type": "string",
91614            "uniqueItems": true
91615          }
91616        ],
91617        "produces": [
91618          "application/json",
91619          "application/yaml",
91620          "application/vnd.kubernetes.protobuf"
91621        ],
91622        "responses": {
91623          "200": {
91624            "description": "OK",
91625            "schema": {
91626              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91627            }
91628          },
91629          "201": {
91630            "description": "Created",
91631            "schema": {
91632              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91633            }
91634          },
91635          "401": {
91636            "description": "Unauthorized"
91637          }
91638        },
91639        "schemes": [
91640          "https"
91641        ],
91642        "tags": [
91643          "rbacAuthorization_v1alpha1"
91644        ],
91645        "x-kubernetes-action": "put",
91646        "x-kubernetes-group-version-kind": {
91647          "group": "rbac.authorization.k8s.io",
91648          "kind": "ClusterRole",
91649          "version": "v1alpha1"
91650        }
91651      }
91652    },
91653    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings": {
91654      "delete": {
91655        "consumes": [
91656          "*/*"
91657        ],
91658        "description": "delete collection of RoleBinding",
91659        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding",
91660        "parameters": [
91661          {
91662            "in": "body",
91663            "name": "body",
91664            "schema": {
91665              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91666            }
91667          },
91668          {
91669            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91670            "in": "query",
91671            "name": "continue",
91672            "type": "string",
91673            "uniqueItems": true
91674          },
91675          {
91676            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91677            "in": "query",
91678            "name": "dryRun",
91679            "type": "string",
91680            "uniqueItems": true
91681          },
91682          {
91683            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91684            "in": "query",
91685            "name": "fieldSelector",
91686            "type": "string",
91687            "uniqueItems": true
91688          },
91689          {
91690            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91691            "in": "query",
91692            "name": "gracePeriodSeconds",
91693            "type": "integer",
91694            "uniqueItems": true
91695          },
91696          {
91697            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91698            "in": "query",
91699            "name": "labelSelector",
91700            "type": "string",
91701            "uniqueItems": true
91702          },
91703          {
91704            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91705            "in": "query",
91706            "name": "limit",
91707            "type": "integer",
91708            "uniqueItems": true
91709          },
91710          {
91711            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91712            "in": "query",
91713            "name": "orphanDependents",
91714            "type": "boolean",
91715            "uniqueItems": true
91716          },
91717          {
91718            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
91719            "in": "query",
91720            "name": "propagationPolicy",
91721            "type": "string",
91722            "uniqueItems": true
91723          },
91724          {
91725            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91726            "in": "query",
91727            "name": "resourceVersion",
91728            "type": "string",
91729            "uniqueItems": true
91730          },
91731          {
91732            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91733            "in": "query",
91734            "name": "resourceVersionMatch",
91735            "type": "string",
91736            "uniqueItems": true
91737          },
91738          {
91739            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91740            "in": "query",
91741            "name": "timeoutSeconds",
91742            "type": "integer",
91743            "uniqueItems": true
91744          }
91745        ],
91746        "produces": [
91747          "application/json",
91748          "application/yaml",
91749          "application/vnd.kubernetes.protobuf"
91750        ],
91751        "responses": {
91752          "200": {
91753            "description": "OK",
91754            "schema": {
91755              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91756            }
91757          },
91758          "401": {
91759            "description": "Unauthorized"
91760          }
91761        },
91762        "schemes": [
91763          "https"
91764        ],
91765        "tags": [
91766          "rbacAuthorization_v1alpha1"
91767        ],
91768        "x-kubernetes-action": "deletecollection",
91769        "x-kubernetes-group-version-kind": {
91770          "group": "rbac.authorization.k8s.io",
91771          "kind": "RoleBinding",
91772          "version": "v1alpha1"
91773        }
91774      },
91775      "get": {
91776        "consumes": [
91777          "*/*"
91778        ],
91779        "description": "list or watch objects of kind RoleBinding",
91780        "operationId": "listRbacAuthorizationV1alpha1NamespacedRoleBinding",
91781        "parameters": [
91782          {
91783            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
91784            "in": "query",
91785            "name": "allowWatchBookmarks",
91786            "type": "boolean",
91787            "uniqueItems": true
91788          },
91789          {
91790            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91791            "in": "query",
91792            "name": "continue",
91793            "type": "string",
91794            "uniqueItems": true
91795          },
91796          {
91797            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91798            "in": "query",
91799            "name": "fieldSelector",
91800            "type": "string",
91801            "uniqueItems": true
91802          },
91803          {
91804            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91805            "in": "query",
91806            "name": "labelSelector",
91807            "type": "string",
91808            "uniqueItems": true
91809          },
91810          {
91811            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91812            "in": "query",
91813            "name": "limit",
91814            "type": "integer",
91815            "uniqueItems": true
91816          },
91817          {
91818            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91819            "in": "query",
91820            "name": "resourceVersion",
91821            "type": "string",
91822            "uniqueItems": true
91823          },
91824          {
91825            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91826            "in": "query",
91827            "name": "resourceVersionMatch",
91828            "type": "string",
91829            "uniqueItems": true
91830          },
91831          {
91832            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91833            "in": "query",
91834            "name": "timeoutSeconds",
91835            "type": "integer",
91836            "uniqueItems": true
91837          },
91838          {
91839            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91840            "in": "query",
91841            "name": "watch",
91842            "type": "boolean",
91843            "uniqueItems": true
91844          }
91845        ],
91846        "produces": [
91847          "application/json",
91848          "application/yaml",
91849          "application/vnd.kubernetes.protobuf",
91850          "application/json;stream=watch",
91851          "application/vnd.kubernetes.protobuf;stream=watch"
91852        ],
91853        "responses": {
91854          "200": {
91855            "description": "OK",
91856            "schema": {
91857              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
91858            }
91859          },
91860          "401": {
91861            "description": "Unauthorized"
91862          }
91863        },
91864        "schemes": [
91865          "https"
91866        ],
91867        "tags": [
91868          "rbacAuthorization_v1alpha1"
91869        ],
91870        "x-kubernetes-action": "list",
91871        "x-kubernetes-group-version-kind": {
91872          "group": "rbac.authorization.k8s.io",
91873          "kind": "RoleBinding",
91874          "version": "v1alpha1"
91875        }
91876      },
91877      "parameters": [
91878        {
91879          "description": "object name and auth scope, such as for teams and projects",
91880          "in": "path",
91881          "name": "namespace",
91882          "required": true,
91883          "type": "string",
91884          "uniqueItems": true
91885        },
91886        {
91887          "description": "If 'true', then the output is pretty printed.",
91888          "in": "query",
91889          "name": "pretty",
91890          "type": "string",
91891          "uniqueItems": true
91892        }
91893      ],
91894      "post": {
91895        "consumes": [
91896          "*/*"
91897        ],
91898        "description": "create a RoleBinding",
91899        "operationId": "createRbacAuthorizationV1alpha1NamespacedRoleBinding",
91900        "parameters": [
91901          {
91902            "in": "body",
91903            "name": "body",
91904            "required": true,
91905            "schema": {
91906              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91907            }
91908          },
91909          {
91910            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91911            "in": "query",
91912            "name": "dryRun",
91913            "type": "string",
91914            "uniqueItems": true
91915          },
91916          {
91917            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91918            "in": "query",
91919            "name": "fieldManager",
91920            "type": "string",
91921            "uniqueItems": true
91922          }
91923        ],
91924        "produces": [
91925          "application/json",
91926          "application/yaml",
91927          "application/vnd.kubernetes.protobuf"
91928        ],
91929        "responses": {
91930          "200": {
91931            "description": "OK",
91932            "schema": {
91933              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91934            }
91935          },
91936          "201": {
91937            "description": "Created",
91938            "schema": {
91939              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91940            }
91941          },
91942          "202": {
91943            "description": "Accepted",
91944            "schema": {
91945              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91946            }
91947          },
91948          "401": {
91949            "description": "Unauthorized"
91950          }
91951        },
91952        "schemes": [
91953          "https"
91954        ],
91955        "tags": [
91956          "rbacAuthorization_v1alpha1"
91957        ],
91958        "x-kubernetes-action": "post",
91959        "x-kubernetes-group-version-kind": {
91960          "group": "rbac.authorization.k8s.io",
91961          "kind": "RoleBinding",
91962          "version": "v1alpha1"
91963        }
91964      }
91965    },
91966    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}": {
91967      "delete": {
91968        "consumes": [
91969          "*/*"
91970        ],
91971        "description": "delete a RoleBinding",
91972        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRoleBinding",
91973        "parameters": [
91974          {
91975            "in": "body",
91976            "name": "body",
91977            "schema": {
91978              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91979            }
91980          },
91981          {
91982            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91983            "in": "query",
91984            "name": "dryRun",
91985            "type": "string",
91986            "uniqueItems": true
91987          },
91988          {
91989            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91990            "in": "query",
91991            "name": "gracePeriodSeconds",
91992            "type": "integer",
91993            "uniqueItems": true
91994          },
91995          {
91996            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91997            "in": "query",
91998            "name": "orphanDependents",
91999            "type": "boolean",
92000            "uniqueItems": true
92001          },
92002          {
92003            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
92004            "in": "query",
92005            "name": "propagationPolicy",
92006            "type": "string",
92007            "uniqueItems": true
92008          }
92009        ],
92010        "produces": [
92011          "application/json",
92012          "application/yaml",
92013          "application/vnd.kubernetes.protobuf"
92014        ],
92015        "responses": {
92016          "200": {
92017            "description": "OK",
92018            "schema": {
92019              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92020            }
92021          },
92022          "202": {
92023            "description": "Accepted",
92024            "schema": {
92025              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92026            }
92027          },
92028          "401": {
92029            "description": "Unauthorized"
92030          }
92031        },
92032        "schemes": [
92033          "https"
92034        ],
92035        "tags": [
92036          "rbacAuthorization_v1alpha1"
92037        ],
92038        "x-kubernetes-action": "delete",
92039        "x-kubernetes-group-version-kind": {
92040          "group": "rbac.authorization.k8s.io",
92041          "kind": "RoleBinding",
92042          "version": "v1alpha1"
92043        }
92044      },
92045      "get": {
92046        "consumes": [
92047          "*/*"
92048        ],
92049        "description": "read the specified RoleBinding",
92050        "operationId": "readRbacAuthorizationV1alpha1NamespacedRoleBinding",
92051        "produces": [
92052          "application/json",
92053          "application/yaml",
92054          "application/vnd.kubernetes.protobuf"
92055        ],
92056        "responses": {
92057          "200": {
92058            "description": "OK",
92059            "schema": {
92060              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92061            }
92062          },
92063          "401": {
92064            "description": "Unauthorized"
92065          }
92066        },
92067        "schemes": [
92068          "https"
92069        ],
92070        "tags": [
92071          "rbacAuthorization_v1alpha1"
92072        ],
92073        "x-kubernetes-action": "get",
92074        "x-kubernetes-group-version-kind": {
92075          "group": "rbac.authorization.k8s.io",
92076          "kind": "RoleBinding",
92077          "version": "v1alpha1"
92078        }
92079      },
92080      "parameters": [
92081        {
92082          "description": "name of the RoleBinding",
92083          "in": "path",
92084          "name": "name",
92085          "required": true,
92086          "type": "string",
92087          "uniqueItems": true
92088        },
92089        {
92090          "description": "object name and auth scope, such as for teams and projects",
92091          "in": "path",
92092          "name": "namespace",
92093          "required": true,
92094          "type": "string",
92095          "uniqueItems": true
92096        },
92097        {
92098          "description": "If 'true', then the output is pretty printed.",
92099          "in": "query",
92100          "name": "pretty",
92101          "type": "string",
92102          "uniqueItems": true
92103        }
92104      ],
92105      "patch": {
92106        "consumes": [
92107          "application/json-patch+json",
92108          "application/merge-patch+json",
92109          "application/strategic-merge-patch+json",
92110          "application/apply-patch+yaml"
92111        ],
92112        "description": "partially update the specified RoleBinding",
92113        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRoleBinding",
92114        "parameters": [
92115          {
92116            "in": "body",
92117            "name": "body",
92118            "required": true,
92119            "schema": {
92120              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
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. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
92132            "in": "query",
92133            "name": "fieldManager",
92134            "type": "string",
92135            "uniqueItems": true
92136          },
92137          {
92138            "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.",
92139            "in": "query",
92140            "name": "force",
92141            "type": "boolean",
92142            "uniqueItems": true
92143          }
92144        ],
92145        "produces": [
92146          "application/json",
92147          "application/yaml",
92148          "application/vnd.kubernetes.protobuf"
92149        ],
92150        "responses": {
92151          "200": {
92152            "description": "OK",
92153            "schema": {
92154              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92155            }
92156          },
92157          "401": {
92158            "description": "Unauthorized"
92159          }
92160        },
92161        "schemes": [
92162          "https"
92163        ],
92164        "tags": [
92165          "rbacAuthorization_v1alpha1"
92166        ],
92167        "x-kubernetes-action": "patch",
92168        "x-kubernetes-group-version-kind": {
92169          "group": "rbac.authorization.k8s.io",
92170          "kind": "RoleBinding",
92171          "version": "v1alpha1"
92172        }
92173      },
92174      "put": {
92175        "consumes": [
92176          "*/*"
92177        ],
92178        "description": "replace the specified RoleBinding",
92179        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRoleBinding",
92180        "parameters": [
92181          {
92182            "in": "body",
92183            "name": "body",
92184            "required": true,
92185            "schema": {
92186              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92187            }
92188          },
92189          {
92190            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92191            "in": "query",
92192            "name": "dryRun",
92193            "type": "string",
92194            "uniqueItems": true
92195          },
92196          {
92197            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
92198            "in": "query",
92199            "name": "fieldManager",
92200            "type": "string",
92201            "uniqueItems": true
92202          }
92203        ],
92204        "produces": [
92205          "application/json",
92206          "application/yaml",
92207          "application/vnd.kubernetes.protobuf"
92208        ],
92209        "responses": {
92210          "200": {
92211            "description": "OK",
92212            "schema": {
92213              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92214            }
92215          },
92216          "201": {
92217            "description": "Created",
92218            "schema": {
92219              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92220            }
92221          },
92222          "401": {
92223            "description": "Unauthorized"
92224          }
92225        },
92226        "schemes": [
92227          "https"
92228        ],
92229        "tags": [
92230          "rbacAuthorization_v1alpha1"
92231        ],
92232        "x-kubernetes-action": "put",
92233        "x-kubernetes-group-version-kind": {
92234          "group": "rbac.authorization.k8s.io",
92235          "kind": "RoleBinding",
92236          "version": "v1alpha1"
92237        }
92238      }
92239    },
92240    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles": {
92241      "delete": {
92242        "consumes": [
92243          "*/*"
92244        ],
92245        "description": "delete collection of Role",
92246        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRole",
92247        "parameters": [
92248          {
92249            "in": "body",
92250            "name": "body",
92251            "schema": {
92252              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
92253            }
92254          },
92255          {
92256            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92257            "in": "query",
92258            "name": "continue",
92259            "type": "string",
92260            "uniqueItems": true
92261          },
92262          {
92263            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92264            "in": "query",
92265            "name": "dryRun",
92266            "type": "string",
92267            "uniqueItems": true
92268          },
92269          {
92270            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92271            "in": "query",
92272            "name": "fieldSelector",
92273            "type": "string",
92274            "uniqueItems": true
92275          },
92276          {
92277            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
92278            "in": "query",
92279            "name": "gracePeriodSeconds",
92280            "type": "integer",
92281            "uniqueItems": true
92282          },
92283          {
92284            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92285            "in": "query",
92286            "name": "labelSelector",
92287            "type": "string",
92288            "uniqueItems": true
92289          },
92290          {
92291            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92292            "in": "query",
92293            "name": "limit",
92294            "type": "integer",
92295            "uniqueItems": true
92296          },
92297          {
92298            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
92299            "in": "query",
92300            "name": "orphanDependents",
92301            "type": "boolean",
92302            "uniqueItems": true
92303          },
92304          {
92305            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
92306            "in": "query",
92307            "name": "propagationPolicy",
92308            "type": "string",
92309            "uniqueItems": true
92310          },
92311          {
92312            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92313            "in": "query",
92314            "name": "resourceVersion",
92315            "type": "string",
92316            "uniqueItems": true
92317          },
92318          {
92319            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92320            "in": "query",
92321            "name": "resourceVersionMatch",
92322            "type": "string",
92323            "uniqueItems": true
92324          },
92325          {
92326            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92327            "in": "query",
92328            "name": "timeoutSeconds",
92329            "type": "integer",
92330            "uniqueItems": true
92331          }
92332        ],
92333        "produces": [
92334          "application/json",
92335          "application/yaml",
92336          "application/vnd.kubernetes.protobuf"
92337        ],
92338        "responses": {
92339          "200": {
92340            "description": "OK",
92341            "schema": {
92342              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92343            }
92344          },
92345          "401": {
92346            "description": "Unauthorized"
92347          }
92348        },
92349        "schemes": [
92350          "https"
92351        ],
92352        "tags": [
92353          "rbacAuthorization_v1alpha1"
92354        ],
92355        "x-kubernetes-action": "deletecollection",
92356        "x-kubernetes-group-version-kind": {
92357          "group": "rbac.authorization.k8s.io",
92358          "kind": "Role",
92359          "version": "v1alpha1"
92360        }
92361      },
92362      "get": {
92363        "consumes": [
92364          "*/*"
92365        ],
92366        "description": "list or watch objects of kind Role",
92367        "operationId": "listRbacAuthorizationV1alpha1NamespacedRole",
92368        "parameters": [
92369          {
92370            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
92371            "in": "query",
92372            "name": "allowWatchBookmarks",
92373            "type": "boolean",
92374            "uniqueItems": true
92375          },
92376          {
92377            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92378            "in": "query",
92379            "name": "continue",
92380            "type": "string",
92381            "uniqueItems": true
92382          },
92383          {
92384            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92385            "in": "query",
92386            "name": "fieldSelector",
92387            "type": "string",
92388            "uniqueItems": true
92389          },
92390          {
92391            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92392            "in": "query",
92393            "name": "labelSelector",
92394            "type": "string",
92395            "uniqueItems": true
92396          },
92397          {
92398            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92399            "in": "query",
92400            "name": "limit",
92401            "type": "integer",
92402            "uniqueItems": true
92403          },
92404          {
92405            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92406            "in": "query",
92407            "name": "resourceVersion",
92408            "type": "string",
92409            "uniqueItems": true
92410          },
92411          {
92412            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92413            "in": "query",
92414            "name": "resourceVersionMatch",
92415            "type": "string",
92416            "uniqueItems": true
92417          },
92418          {
92419            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92420            "in": "query",
92421            "name": "timeoutSeconds",
92422            "type": "integer",
92423            "uniqueItems": true
92424          },
92425          {
92426            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92427            "in": "query",
92428            "name": "watch",
92429            "type": "boolean",
92430            "uniqueItems": true
92431          }
92432        ],
92433        "produces": [
92434          "application/json",
92435          "application/yaml",
92436          "application/vnd.kubernetes.protobuf",
92437          "application/json;stream=watch",
92438          "application/vnd.kubernetes.protobuf;stream=watch"
92439        ],
92440        "responses": {
92441          "200": {
92442            "description": "OK",
92443            "schema": {
92444              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
92445            }
92446          },
92447          "401": {
92448            "description": "Unauthorized"
92449          }
92450        },
92451        "schemes": [
92452          "https"
92453        ],
92454        "tags": [
92455          "rbacAuthorization_v1alpha1"
92456        ],
92457        "x-kubernetes-action": "list",
92458        "x-kubernetes-group-version-kind": {
92459          "group": "rbac.authorization.k8s.io",
92460          "kind": "Role",
92461          "version": "v1alpha1"
92462        }
92463      },
92464      "parameters": [
92465        {
92466          "description": "object name and auth scope, such as for teams and projects",
92467          "in": "path",
92468          "name": "namespace",
92469          "required": true,
92470          "type": "string",
92471          "uniqueItems": true
92472        },
92473        {
92474          "description": "If 'true', then the output is pretty printed.",
92475          "in": "query",
92476          "name": "pretty",
92477          "type": "string",
92478          "uniqueItems": true
92479        }
92480      ],
92481      "post": {
92482        "consumes": [
92483          "*/*"
92484        ],
92485        "description": "create a Role",
92486        "operationId": "createRbacAuthorizationV1alpha1NamespacedRole",
92487        "parameters": [
92488          {
92489            "in": "body",
92490            "name": "body",
92491            "required": true,
92492            "schema": {
92493              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92494            }
92495          },
92496          {
92497            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92498            "in": "query",
92499            "name": "dryRun",
92500            "type": "string",
92501            "uniqueItems": true
92502          },
92503          {
92504            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
92505            "in": "query",
92506            "name": "fieldManager",
92507            "type": "string",
92508            "uniqueItems": true
92509          }
92510        ],
92511        "produces": [
92512          "application/json",
92513          "application/yaml",
92514          "application/vnd.kubernetes.protobuf"
92515        ],
92516        "responses": {
92517          "200": {
92518            "description": "OK",
92519            "schema": {
92520              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92521            }
92522          },
92523          "201": {
92524            "description": "Created",
92525            "schema": {
92526              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92527            }
92528          },
92529          "202": {
92530            "description": "Accepted",
92531            "schema": {
92532              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92533            }
92534          },
92535          "401": {
92536            "description": "Unauthorized"
92537          }
92538        },
92539        "schemes": [
92540          "https"
92541        ],
92542        "tags": [
92543          "rbacAuthorization_v1alpha1"
92544        ],
92545        "x-kubernetes-action": "post",
92546        "x-kubernetes-group-version-kind": {
92547          "group": "rbac.authorization.k8s.io",
92548          "kind": "Role",
92549          "version": "v1alpha1"
92550        }
92551      }
92552    },
92553    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}": {
92554      "delete": {
92555        "consumes": [
92556          "*/*"
92557        ],
92558        "description": "delete a Role",
92559        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRole",
92560        "parameters": [
92561          {
92562            "in": "body",
92563            "name": "body",
92564            "schema": {
92565              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
92566            }
92567          },
92568          {
92569            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92570            "in": "query",
92571            "name": "dryRun",
92572            "type": "string",
92573            "uniqueItems": true
92574          },
92575          {
92576            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
92577            "in": "query",
92578            "name": "gracePeriodSeconds",
92579            "type": "integer",
92580            "uniqueItems": true
92581          },
92582          {
92583            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
92584            "in": "query",
92585            "name": "orphanDependents",
92586            "type": "boolean",
92587            "uniqueItems": true
92588          },
92589          {
92590            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
92591            "in": "query",
92592            "name": "propagationPolicy",
92593            "type": "string",
92594            "uniqueItems": true
92595          }
92596        ],
92597        "produces": [
92598          "application/json",
92599          "application/yaml",
92600          "application/vnd.kubernetes.protobuf"
92601        ],
92602        "responses": {
92603          "200": {
92604            "description": "OK",
92605            "schema": {
92606              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92607            }
92608          },
92609          "202": {
92610            "description": "Accepted",
92611            "schema": {
92612              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92613            }
92614          },
92615          "401": {
92616            "description": "Unauthorized"
92617          }
92618        },
92619        "schemes": [
92620          "https"
92621        ],
92622        "tags": [
92623          "rbacAuthorization_v1alpha1"
92624        ],
92625        "x-kubernetes-action": "delete",
92626        "x-kubernetes-group-version-kind": {
92627          "group": "rbac.authorization.k8s.io",
92628          "kind": "Role",
92629          "version": "v1alpha1"
92630        }
92631      },
92632      "get": {
92633        "consumes": [
92634          "*/*"
92635        ],
92636        "description": "read the specified Role",
92637        "operationId": "readRbacAuthorizationV1alpha1NamespacedRole",
92638        "produces": [
92639          "application/json",
92640          "application/yaml",
92641          "application/vnd.kubernetes.protobuf"
92642        ],
92643        "responses": {
92644          "200": {
92645            "description": "OK",
92646            "schema": {
92647              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92648            }
92649          },
92650          "401": {
92651            "description": "Unauthorized"
92652          }
92653        },
92654        "schemes": [
92655          "https"
92656        ],
92657        "tags": [
92658          "rbacAuthorization_v1alpha1"
92659        ],
92660        "x-kubernetes-action": "get",
92661        "x-kubernetes-group-version-kind": {
92662          "group": "rbac.authorization.k8s.io",
92663          "kind": "Role",
92664          "version": "v1alpha1"
92665        }
92666      },
92667      "parameters": [
92668        {
92669          "description": "name of the Role",
92670          "in": "path",
92671          "name": "name",
92672          "required": true,
92673          "type": "string",
92674          "uniqueItems": true
92675        },
92676        {
92677          "description": "object name and auth scope, such as for teams and projects",
92678          "in": "path",
92679          "name": "namespace",
92680          "required": true,
92681          "type": "string",
92682          "uniqueItems": true
92683        },
92684        {
92685          "description": "If 'true', then the output is pretty printed.",
92686          "in": "query",
92687          "name": "pretty",
92688          "type": "string",
92689          "uniqueItems": true
92690        }
92691      ],
92692      "patch": {
92693        "consumes": [
92694          "application/json-patch+json",
92695          "application/merge-patch+json",
92696          "application/strategic-merge-patch+json",
92697          "application/apply-patch+yaml"
92698        ],
92699        "description": "partially update the specified Role",
92700        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRole",
92701        "parameters": [
92702          {
92703            "in": "body",
92704            "name": "body",
92705            "required": true,
92706            "schema": {
92707              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
92708            }
92709          },
92710          {
92711            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92712            "in": "query",
92713            "name": "dryRun",
92714            "type": "string",
92715            "uniqueItems": true
92716          },
92717          {
92718            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
92719            "in": "query",
92720            "name": "fieldManager",
92721            "type": "string",
92722            "uniqueItems": true
92723          },
92724          {
92725            "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.",
92726            "in": "query",
92727            "name": "force",
92728            "type": "boolean",
92729            "uniqueItems": true
92730          }
92731        ],
92732        "produces": [
92733          "application/json",
92734          "application/yaml",
92735          "application/vnd.kubernetes.protobuf"
92736        ],
92737        "responses": {
92738          "200": {
92739            "description": "OK",
92740            "schema": {
92741              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92742            }
92743          },
92744          "401": {
92745            "description": "Unauthorized"
92746          }
92747        },
92748        "schemes": [
92749          "https"
92750        ],
92751        "tags": [
92752          "rbacAuthorization_v1alpha1"
92753        ],
92754        "x-kubernetes-action": "patch",
92755        "x-kubernetes-group-version-kind": {
92756          "group": "rbac.authorization.k8s.io",
92757          "kind": "Role",
92758          "version": "v1alpha1"
92759        }
92760      },
92761      "put": {
92762        "consumes": [
92763          "*/*"
92764        ],
92765        "description": "replace the specified Role",
92766        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRole",
92767        "parameters": [
92768          {
92769            "in": "body",
92770            "name": "body",
92771            "required": true,
92772            "schema": {
92773              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92774            }
92775          },
92776          {
92777            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92778            "in": "query",
92779            "name": "dryRun",
92780            "type": "string",
92781            "uniqueItems": true
92782          },
92783          {
92784            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
92785            "in": "query",
92786            "name": "fieldManager",
92787            "type": "string",
92788            "uniqueItems": true
92789          }
92790        ],
92791        "produces": [
92792          "application/json",
92793          "application/yaml",
92794          "application/vnd.kubernetes.protobuf"
92795        ],
92796        "responses": {
92797          "200": {
92798            "description": "OK",
92799            "schema": {
92800              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92801            }
92802          },
92803          "201": {
92804            "description": "Created",
92805            "schema": {
92806              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92807            }
92808          },
92809          "401": {
92810            "description": "Unauthorized"
92811          }
92812        },
92813        "schemes": [
92814          "https"
92815        ],
92816        "tags": [
92817          "rbacAuthorization_v1alpha1"
92818        ],
92819        "x-kubernetes-action": "put",
92820        "x-kubernetes-group-version-kind": {
92821          "group": "rbac.authorization.k8s.io",
92822          "kind": "Role",
92823          "version": "v1alpha1"
92824        }
92825      }
92826    },
92827    "/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings": {
92828      "get": {
92829        "consumes": [
92830          "*/*"
92831        ],
92832        "description": "list or watch objects of kind RoleBinding",
92833        "operationId": "listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces",
92834        "produces": [
92835          "application/json",
92836          "application/yaml",
92837          "application/vnd.kubernetes.protobuf",
92838          "application/json;stream=watch",
92839          "application/vnd.kubernetes.protobuf;stream=watch"
92840        ],
92841        "responses": {
92842          "200": {
92843            "description": "OK",
92844            "schema": {
92845              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
92846            }
92847          },
92848          "401": {
92849            "description": "Unauthorized"
92850          }
92851        },
92852        "schemes": [
92853          "https"
92854        ],
92855        "tags": [
92856          "rbacAuthorization_v1alpha1"
92857        ],
92858        "x-kubernetes-action": "list",
92859        "x-kubernetes-group-version-kind": {
92860          "group": "rbac.authorization.k8s.io",
92861          "kind": "RoleBinding",
92862          "version": "v1alpha1"
92863        }
92864      },
92865      "parameters": [
92866        {
92867          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
92868          "in": "query",
92869          "name": "allowWatchBookmarks",
92870          "type": "boolean",
92871          "uniqueItems": true
92872        },
92873        {
92874          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92875          "in": "query",
92876          "name": "continue",
92877          "type": "string",
92878          "uniqueItems": true
92879        },
92880        {
92881          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92882          "in": "query",
92883          "name": "fieldSelector",
92884          "type": "string",
92885          "uniqueItems": true
92886        },
92887        {
92888          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92889          "in": "query",
92890          "name": "labelSelector",
92891          "type": "string",
92892          "uniqueItems": true
92893        },
92894        {
92895          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92896          "in": "query",
92897          "name": "limit",
92898          "type": "integer",
92899          "uniqueItems": true
92900        },
92901        {
92902          "description": "If 'true', then the output is pretty printed.",
92903          "in": "query",
92904          "name": "pretty",
92905          "type": "string",
92906          "uniqueItems": true
92907        },
92908        {
92909          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92910          "in": "query",
92911          "name": "resourceVersion",
92912          "type": "string",
92913          "uniqueItems": true
92914        },
92915        {
92916          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92917          "in": "query",
92918          "name": "resourceVersionMatch",
92919          "type": "string",
92920          "uniqueItems": true
92921        },
92922        {
92923          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92924          "in": "query",
92925          "name": "timeoutSeconds",
92926          "type": "integer",
92927          "uniqueItems": true
92928        },
92929        {
92930          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92931          "in": "query",
92932          "name": "watch",
92933          "type": "boolean",
92934          "uniqueItems": true
92935        }
92936      ]
92937    },
92938    "/apis/rbac.authorization.k8s.io/v1alpha1/roles": {
92939      "get": {
92940        "consumes": [
92941          "*/*"
92942        ],
92943        "description": "list or watch objects of kind Role",
92944        "operationId": "listRbacAuthorizationV1alpha1RoleForAllNamespaces",
92945        "produces": [
92946          "application/json",
92947          "application/yaml",
92948          "application/vnd.kubernetes.protobuf",
92949          "application/json;stream=watch",
92950          "application/vnd.kubernetes.protobuf;stream=watch"
92951        ],
92952        "responses": {
92953          "200": {
92954            "description": "OK",
92955            "schema": {
92956              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
92957            }
92958          },
92959          "401": {
92960            "description": "Unauthorized"
92961          }
92962        },
92963        "schemes": [
92964          "https"
92965        ],
92966        "tags": [
92967          "rbacAuthorization_v1alpha1"
92968        ],
92969        "x-kubernetes-action": "list",
92970        "x-kubernetes-group-version-kind": {
92971          "group": "rbac.authorization.k8s.io",
92972          "kind": "Role",
92973          "version": "v1alpha1"
92974        }
92975      },
92976      "parameters": [
92977        {
92978          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
92979          "in": "query",
92980          "name": "allowWatchBookmarks",
92981          "type": "boolean",
92982          "uniqueItems": true
92983        },
92984        {
92985          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92986          "in": "query",
92987          "name": "continue",
92988          "type": "string",
92989          "uniqueItems": true
92990        },
92991        {
92992          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92993          "in": "query",
92994          "name": "fieldSelector",
92995          "type": "string",
92996          "uniqueItems": true
92997        },
92998        {
92999          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93000          "in": "query",
93001          "name": "labelSelector",
93002          "type": "string",
93003          "uniqueItems": true
93004        },
93005        {
93006          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93007          "in": "query",
93008          "name": "limit",
93009          "type": "integer",
93010          "uniqueItems": true
93011        },
93012        {
93013          "description": "If 'true', then the output is pretty printed.",
93014          "in": "query",
93015          "name": "pretty",
93016          "type": "string",
93017          "uniqueItems": true
93018        },
93019        {
93020          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93021          "in": "query",
93022          "name": "resourceVersion",
93023          "type": "string",
93024          "uniqueItems": true
93025        },
93026        {
93027          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93028          "in": "query",
93029          "name": "resourceVersionMatch",
93030          "type": "string",
93031          "uniqueItems": true
93032        },
93033        {
93034          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93035          "in": "query",
93036          "name": "timeoutSeconds",
93037          "type": "integer",
93038          "uniqueItems": true
93039        },
93040        {
93041          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93042          "in": "query",
93043          "name": "watch",
93044          "type": "boolean",
93045          "uniqueItems": true
93046        }
93047      ]
93048    },
93049    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings": {
93050      "get": {
93051        "consumes": [
93052          "*/*"
93053        ],
93054        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
93055        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBindingList",
93056        "produces": [
93057          "application/json",
93058          "application/yaml",
93059          "application/vnd.kubernetes.protobuf",
93060          "application/json;stream=watch",
93061          "application/vnd.kubernetes.protobuf;stream=watch"
93062        ],
93063        "responses": {
93064          "200": {
93065            "description": "OK",
93066            "schema": {
93067              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93068            }
93069          },
93070          "401": {
93071            "description": "Unauthorized"
93072          }
93073        },
93074        "schemes": [
93075          "https"
93076        ],
93077        "tags": [
93078          "rbacAuthorization_v1alpha1"
93079        ],
93080        "x-kubernetes-action": "watchlist",
93081        "x-kubernetes-group-version-kind": {
93082          "group": "rbac.authorization.k8s.io",
93083          "kind": "ClusterRoleBinding",
93084          "version": "v1alpha1"
93085        }
93086      },
93087      "parameters": [
93088        {
93089          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93090          "in": "query",
93091          "name": "allowWatchBookmarks",
93092          "type": "boolean",
93093          "uniqueItems": true
93094        },
93095        {
93096          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93097          "in": "query",
93098          "name": "continue",
93099          "type": "string",
93100          "uniqueItems": true
93101        },
93102        {
93103          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93104          "in": "query",
93105          "name": "fieldSelector",
93106          "type": "string",
93107          "uniqueItems": true
93108        },
93109        {
93110          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93111          "in": "query",
93112          "name": "labelSelector",
93113          "type": "string",
93114          "uniqueItems": true
93115        },
93116        {
93117          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93118          "in": "query",
93119          "name": "limit",
93120          "type": "integer",
93121          "uniqueItems": true
93122        },
93123        {
93124          "description": "If 'true', then the output is pretty printed.",
93125          "in": "query",
93126          "name": "pretty",
93127          "type": "string",
93128          "uniqueItems": true
93129        },
93130        {
93131          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93132          "in": "query",
93133          "name": "resourceVersion",
93134          "type": "string",
93135          "uniqueItems": true
93136        },
93137        {
93138          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93139          "in": "query",
93140          "name": "resourceVersionMatch",
93141          "type": "string",
93142          "uniqueItems": true
93143        },
93144        {
93145          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93146          "in": "query",
93147          "name": "timeoutSeconds",
93148          "type": "integer",
93149          "uniqueItems": true
93150        },
93151        {
93152          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93153          "in": "query",
93154          "name": "watch",
93155          "type": "boolean",
93156          "uniqueItems": true
93157        }
93158      ]
93159    },
93160    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}": {
93161      "get": {
93162        "consumes": [
93163          "*/*"
93164        ],
93165        "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.",
93166        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBinding",
93167        "produces": [
93168          "application/json",
93169          "application/yaml",
93170          "application/vnd.kubernetes.protobuf",
93171          "application/json;stream=watch",
93172          "application/vnd.kubernetes.protobuf;stream=watch"
93173        ],
93174        "responses": {
93175          "200": {
93176            "description": "OK",
93177            "schema": {
93178              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93179            }
93180          },
93181          "401": {
93182            "description": "Unauthorized"
93183          }
93184        },
93185        "schemes": [
93186          "https"
93187        ],
93188        "tags": [
93189          "rbacAuthorization_v1alpha1"
93190        ],
93191        "x-kubernetes-action": "watch",
93192        "x-kubernetes-group-version-kind": {
93193          "group": "rbac.authorization.k8s.io",
93194          "kind": "ClusterRoleBinding",
93195          "version": "v1alpha1"
93196        }
93197      },
93198      "parameters": [
93199        {
93200          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93201          "in": "query",
93202          "name": "allowWatchBookmarks",
93203          "type": "boolean",
93204          "uniqueItems": true
93205        },
93206        {
93207          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93208          "in": "query",
93209          "name": "continue",
93210          "type": "string",
93211          "uniqueItems": true
93212        },
93213        {
93214          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93215          "in": "query",
93216          "name": "fieldSelector",
93217          "type": "string",
93218          "uniqueItems": true
93219        },
93220        {
93221          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93222          "in": "query",
93223          "name": "labelSelector",
93224          "type": "string",
93225          "uniqueItems": true
93226        },
93227        {
93228          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93229          "in": "query",
93230          "name": "limit",
93231          "type": "integer",
93232          "uniqueItems": true
93233        },
93234        {
93235          "description": "name of the ClusterRoleBinding",
93236          "in": "path",
93237          "name": "name",
93238          "required": true,
93239          "type": "string",
93240          "uniqueItems": true
93241        },
93242        {
93243          "description": "If 'true', then the output is pretty printed.",
93244          "in": "query",
93245          "name": "pretty",
93246          "type": "string",
93247          "uniqueItems": true
93248        },
93249        {
93250          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93251          "in": "query",
93252          "name": "resourceVersion",
93253          "type": "string",
93254          "uniqueItems": true
93255        },
93256        {
93257          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93258          "in": "query",
93259          "name": "resourceVersionMatch",
93260          "type": "string",
93261          "uniqueItems": true
93262        },
93263        {
93264          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93265          "in": "query",
93266          "name": "timeoutSeconds",
93267          "type": "integer",
93268          "uniqueItems": true
93269        },
93270        {
93271          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93272          "in": "query",
93273          "name": "watch",
93274          "type": "boolean",
93275          "uniqueItems": true
93276        }
93277      ]
93278    },
93279    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles": {
93280      "get": {
93281        "consumes": [
93282          "*/*"
93283        ],
93284        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
93285        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleList",
93286        "produces": [
93287          "application/json",
93288          "application/yaml",
93289          "application/vnd.kubernetes.protobuf",
93290          "application/json;stream=watch",
93291          "application/vnd.kubernetes.protobuf;stream=watch"
93292        ],
93293        "responses": {
93294          "200": {
93295            "description": "OK",
93296            "schema": {
93297              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93298            }
93299          },
93300          "401": {
93301            "description": "Unauthorized"
93302          }
93303        },
93304        "schemes": [
93305          "https"
93306        ],
93307        "tags": [
93308          "rbacAuthorization_v1alpha1"
93309        ],
93310        "x-kubernetes-action": "watchlist",
93311        "x-kubernetes-group-version-kind": {
93312          "group": "rbac.authorization.k8s.io",
93313          "kind": "ClusterRole",
93314          "version": "v1alpha1"
93315        }
93316      },
93317      "parameters": [
93318        {
93319          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93320          "in": "query",
93321          "name": "allowWatchBookmarks",
93322          "type": "boolean",
93323          "uniqueItems": true
93324        },
93325        {
93326          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93327          "in": "query",
93328          "name": "continue",
93329          "type": "string",
93330          "uniqueItems": true
93331        },
93332        {
93333          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93334          "in": "query",
93335          "name": "fieldSelector",
93336          "type": "string",
93337          "uniqueItems": true
93338        },
93339        {
93340          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93341          "in": "query",
93342          "name": "labelSelector",
93343          "type": "string",
93344          "uniqueItems": true
93345        },
93346        {
93347          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93348          "in": "query",
93349          "name": "limit",
93350          "type": "integer",
93351          "uniqueItems": true
93352        },
93353        {
93354          "description": "If 'true', then the output is pretty printed.",
93355          "in": "query",
93356          "name": "pretty",
93357          "type": "string",
93358          "uniqueItems": true
93359        },
93360        {
93361          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93362          "in": "query",
93363          "name": "resourceVersion",
93364          "type": "string",
93365          "uniqueItems": true
93366        },
93367        {
93368          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93369          "in": "query",
93370          "name": "resourceVersionMatch",
93371          "type": "string",
93372          "uniqueItems": true
93373        },
93374        {
93375          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93376          "in": "query",
93377          "name": "timeoutSeconds",
93378          "type": "integer",
93379          "uniqueItems": true
93380        },
93381        {
93382          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93383          "in": "query",
93384          "name": "watch",
93385          "type": "boolean",
93386          "uniqueItems": true
93387        }
93388      ]
93389    },
93390    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}": {
93391      "get": {
93392        "consumes": [
93393          "*/*"
93394        ],
93395        "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.",
93396        "operationId": "watchRbacAuthorizationV1alpha1ClusterRole",
93397        "produces": [
93398          "application/json",
93399          "application/yaml",
93400          "application/vnd.kubernetes.protobuf",
93401          "application/json;stream=watch",
93402          "application/vnd.kubernetes.protobuf;stream=watch"
93403        ],
93404        "responses": {
93405          "200": {
93406            "description": "OK",
93407            "schema": {
93408              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93409            }
93410          },
93411          "401": {
93412            "description": "Unauthorized"
93413          }
93414        },
93415        "schemes": [
93416          "https"
93417        ],
93418        "tags": [
93419          "rbacAuthorization_v1alpha1"
93420        ],
93421        "x-kubernetes-action": "watch",
93422        "x-kubernetes-group-version-kind": {
93423          "group": "rbac.authorization.k8s.io",
93424          "kind": "ClusterRole",
93425          "version": "v1alpha1"
93426        }
93427      },
93428      "parameters": [
93429        {
93430          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93431          "in": "query",
93432          "name": "allowWatchBookmarks",
93433          "type": "boolean",
93434          "uniqueItems": true
93435        },
93436        {
93437          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93438          "in": "query",
93439          "name": "continue",
93440          "type": "string",
93441          "uniqueItems": true
93442        },
93443        {
93444          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93445          "in": "query",
93446          "name": "fieldSelector",
93447          "type": "string",
93448          "uniqueItems": true
93449        },
93450        {
93451          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93452          "in": "query",
93453          "name": "labelSelector",
93454          "type": "string",
93455          "uniqueItems": true
93456        },
93457        {
93458          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93459          "in": "query",
93460          "name": "limit",
93461          "type": "integer",
93462          "uniqueItems": true
93463        },
93464        {
93465          "description": "name of the ClusterRole",
93466          "in": "path",
93467          "name": "name",
93468          "required": true,
93469          "type": "string",
93470          "uniqueItems": true
93471        },
93472        {
93473          "description": "If 'true', then the output is pretty printed.",
93474          "in": "query",
93475          "name": "pretty",
93476          "type": "string",
93477          "uniqueItems": true
93478        },
93479        {
93480          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93481          "in": "query",
93482          "name": "resourceVersion",
93483          "type": "string",
93484          "uniqueItems": true
93485        },
93486        {
93487          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93488          "in": "query",
93489          "name": "resourceVersionMatch",
93490          "type": "string",
93491          "uniqueItems": true
93492        },
93493        {
93494          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93495          "in": "query",
93496          "name": "timeoutSeconds",
93497          "type": "integer",
93498          "uniqueItems": true
93499        },
93500        {
93501          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93502          "in": "query",
93503          "name": "watch",
93504          "type": "boolean",
93505          "uniqueItems": true
93506        }
93507      ]
93508    },
93509    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings": {
93510      "get": {
93511        "consumes": [
93512          "*/*"
93513        ],
93514        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
93515        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBindingList",
93516        "produces": [
93517          "application/json",
93518          "application/yaml",
93519          "application/vnd.kubernetes.protobuf",
93520          "application/json;stream=watch",
93521          "application/vnd.kubernetes.protobuf;stream=watch"
93522        ],
93523        "responses": {
93524          "200": {
93525            "description": "OK",
93526            "schema": {
93527              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93528            }
93529          },
93530          "401": {
93531            "description": "Unauthorized"
93532          }
93533        },
93534        "schemes": [
93535          "https"
93536        ],
93537        "tags": [
93538          "rbacAuthorization_v1alpha1"
93539        ],
93540        "x-kubernetes-action": "watchlist",
93541        "x-kubernetes-group-version-kind": {
93542          "group": "rbac.authorization.k8s.io",
93543          "kind": "RoleBinding",
93544          "version": "v1alpha1"
93545        }
93546      },
93547      "parameters": [
93548        {
93549          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93550          "in": "query",
93551          "name": "allowWatchBookmarks",
93552          "type": "boolean",
93553          "uniqueItems": true
93554        },
93555        {
93556          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93557          "in": "query",
93558          "name": "continue",
93559          "type": "string",
93560          "uniqueItems": true
93561        },
93562        {
93563          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93564          "in": "query",
93565          "name": "fieldSelector",
93566          "type": "string",
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": "object name and auth scope, such as for teams and projects",
93585          "in": "path",
93586          "name": "namespace",
93587          "required": true,
93588          "type": "string",
93589          "uniqueItems": true
93590        },
93591        {
93592          "description": "If 'true', then the output is pretty printed.",
93593          "in": "query",
93594          "name": "pretty",
93595          "type": "string",
93596          "uniqueItems": true
93597        },
93598        {
93599          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93600          "in": "query",
93601          "name": "resourceVersion",
93602          "type": "string",
93603          "uniqueItems": true
93604        },
93605        {
93606          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93607          "in": "query",
93608          "name": "resourceVersionMatch",
93609          "type": "string",
93610          "uniqueItems": true
93611        },
93612        {
93613          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93614          "in": "query",
93615          "name": "timeoutSeconds",
93616          "type": "integer",
93617          "uniqueItems": true
93618        },
93619        {
93620          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93621          "in": "query",
93622          "name": "watch",
93623          "type": "boolean",
93624          "uniqueItems": true
93625        }
93626      ]
93627    },
93628    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}": {
93629      "get": {
93630        "consumes": [
93631          "*/*"
93632        ],
93633        "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.",
93634        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBinding",
93635        "produces": [
93636          "application/json",
93637          "application/yaml",
93638          "application/vnd.kubernetes.protobuf",
93639          "application/json;stream=watch",
93640          "application/vnd.kubernetes.protobuf;stream=watch"
93641        ],
93642        "responses": {
93643          "200": {
93644            "description": "OK",
93645            "schema": {
93646              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93647            }
93648          },
93649          "401": {
93650            "description": "Unauthorized"
93651          }
93652        },
93653        "schemes": [
93654          "https"
93655        ],
93656        "tags": [
93657          "rbacAuthorization_v1alpha1"
93658        ],
93659        "x-kubernetes-action": "watch",
93660        "x-kubernetes-group-version-kind": {
93661          "group": "rbac.authorization.k8s.io",
93662          "kind": "RoleBinding",
93663          "version": "v1alpha1"
93664        }
93665      },
93666      "parameters": [
93667        {
93668          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93669          "in": "query",
93670          "name": "allowWatchBookmarks",
93671          "type": "boolean",
93672          "uniqueItems": true
93673        },
93674        {
93675          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93676          "in": "query",
93677          "name": "continue",
93678          "type": "string",
93679          "uniqueItems": true
93680        },
93681        {
93682          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93683          "in": "query",
93684          "name": "fieldSelector",
93685          "type": "string",
93686          "uniqueItems": true
93687        },
93688        {
93689          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93690          "in": "query",
93691          "name": "labelSelector",
93692          "type": "string",
93693          "uniqueItems": true
93694        },
93695        {
93696          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93697          "in": "query",
93698          "name": "limit",
93699          "type": "integer",
93700          "uniqueItems": true
93701        },
93702        {
93703          "description": "name of the RoleBinding",
93704          "in": "path",
93705          "name": "name",
93706          "required": true,
93707          "type": "string",
93708          "uniqueItems": true
93709        },
93710        {
93711          "description": "object name and auth scope, such as for teams and projects",
93712          "in": "path",
93713          "name": "namespace",
93714          "required": true,
93715          "type": "string",
93716          "uniqueItems": true
93717        },
93718        {
93719          "description": "If 'true', then the output is pretty printed.",
93720          "in": "query",
93721          "name": "pretty",
93722          "type": "string",
93723          "uniqueItems": true
93724        },
93725        {
93726          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93727          "in": "query",
93728          "name": "resourceVersion",
93729          "type": "string",
93730          "uniqueItems": true
93731        },
93732        {
93733          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93734          "in": "query",
93735          "name": "resourceVersionMatch",
93736          "type": "string",
93737          "uniqueItems": true
93738        },
93739        {
93740          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93741          "in": "query",
93742          "name": "timeoutSeconds",
93743          "type": "integer",
93744          "uniqueItems": true
93745        },
93746        {
93747          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93748          "in": "query",
93749          "name": "watch",
93750          "type": "boolean",
93751          "uniqueItems": true
93752        }
93753      ]
93754    },
93755    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles": {
93756      "get": {
93757        "consumes": [
93758          "*/*"
93759        ],
93760        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
93761        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleList",
93762        "produces": [
93763          "application/json",
93764          "application/yaml",
93765          "application/vnd.kubernetes.protobuf",
93766          "application/json;stream=watch",
93767          "application/vnd.kubernetes.protobuf;stream=watch"
93768        ],
93769        "responses": {
93770          "200": {
93771            "description": "OK",
93772            "schema": {
93773              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93774            }
93775          },
93776          "401": {
93777            "description": "Unauthorized"
93778          }
93779        },
93780        "schemes": [
93781          "https"
93782        ],
93783        "tags": [
93784          "rbacAuthorization_v1alpha1"
93785        ],
93786        "x-kubernetes-action": "watchlist",
93787        "x-kubernetes-group-version-kind": {
93788          "group": "rbac.authorization.k8s.io",
93789          "kind": "Role",
93790          "version": "v1alpha1"
93791        }
93792      },
93793      "parameters": [
93794        {
93795          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93796          "in": "query",
93797          "name": "allowWatchBookmarks",
93798          "type": "boolean",
93799          "uniqueItems": true
93800        },
93801        {
93802          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93803          "in": "query",
93804          "name": "continue",
93805          "type": "string",
93806          "uniqueItems": true
93807        },
93808        {
93809          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93810          "in": "query",
93811          "name": "fieldSelector",
93812          "type": "string",
93813          "uniqueItems": true
93814        },
93815        {
93816          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93817          "in": "query",
93818          "name": "labelSelector",
93819          "type": "string",
93820          "uniqueItems": true
93821        },
93822        {
93823          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93824          "in": "query",
93825          "name": "limit",
93826          "type": "integer",
93827          "uniqueItems": true
93828        },
93829        {
93830          "description": "object name and auth scope, such as for teams and projects",
93831          "in": "path",
93832          "name": "namespace",
93833          "required": true,
93834          "type": "string",
93835          "uniqueItems": true
93836        },
93837        {
93838          "description": "If 'true', then the output is pretty printed.",
93839          "in": "query",
93840          "name": "pretty",
93841          "type": "string",
93842          "uniqueItems": true
93843        },
93844        {
93845          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93846          "in": "query",
93847          "name": "resourceVersion",
93848          "type": "string",
93849          "uniqueItems": true
93850        },
93851        {
93852          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93853          "in": "query",
93854          "name": "resourceVersionMatch",
93855          "type": "string",
93856          "uniqueItems": true
93857        },
93858        {
93859          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93860          "in": "query",
93861          "name": "timeoutSeconds",
93862          "type": "integer",
93863          "uniqueItems": true
93864        },
93865        {
93866          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93867          "in": "query",
93868          "name": "watch",
93869          "type": "boolean",
93870          "uniqueItems": true
93871        }
93872      ]
93873    },
93874    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}": {
93875      "get": {
93876        "consumes": [
93877          "*/*"
93878        ],
93879        "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.",
93880        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRole",
93881        "produces": [
93882          "application/json",
93883          "application/yaml",
93884          "application/vnd.kubernetes.protobuf",
93885          "application/json;stream=watch",
93886          "application/vnd.kubernetes.protobuf;stream=watch"
93887        ],
93888        "responses": {
93889          "200": {
93890            "description": "OK",
93891            "schema": {
93892              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93893            }
93894          },
93895          "401": {
93896            "description": "Unauthorized"
93897          }
93898        },
93899        "schemes": [
93900          "https"
93901        ],
93902        "tags": [
93903          "rbacAuthorization_v1alpha1"
93904        ],
93905        "x-kubernetes-action": "watch",
93906        "x-kubernetes-group-version-kind": {
93907          "group": "rbac.authorization.k8s.io",
93908          "kind": "Role",
93909          "version": "v1alpha1"
93910        }
93911      },
93912      "parameters": [
93913        {
93914          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93915          "in": "query",
93916          "name": "allowWatchBookmarks",
93917          "type": "boolean",
93918          "uniqueItems": true
93919        },
93920        {
93921          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93922          "in": "query",
93923          "name": "continue",
93924          "type": "string",
93925          "uniqueItems": true
93926        },
93927        {
93928          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93929          "in": "query",
93930          "name": "fieldSelector",
93931          "type": "string",
93932          "uniqueItems": true
93933        },
93934        {
93935          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93936          "in": "query",
93937          "name": "labelSelector",
93938          "type": "string",
93939          "uniqueItems": true
93940        },
93941        {
93942          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93943          "in": "query",
93944          "name": "limit",
93945          "type": "integer",
93946          "uniqueItems": true
93947        },
93948        {
93949          "description": "name of the Role",
93950          "in": "path",
93951          "name": "name",
93952          "required": true,
93953          "type": "string",
93954          "uniqueItems": true
93955        },
93956        {
93957          "description": "object name and auth scope, such as for teams and projects",
93958          "in": "path",
93959          "name": "namespace",
93960          "required": true,
93961          "type": "string",
93962          "uniqueItems": true
93963        },
93964        {
93965          "description": "If 'true', then the output is pretty printed.",
93966          "in": "query",
93967          "name": "pretty",
93968          "type": "string",
93969          "uniqueItems": true
93970        },
93971        {
93972          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93973          "in": "query",
93974          "name": "resourceVersion",
93975          "type": "string",
93976          "uniqueItems": true
93977        },
93978        {
93979          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93980          "in": "query",
93981          "name": "resourceVersionMatch",
93982          "type": "string",
93983          "uniqueItems": true
93984        },
93985        {
93986          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93987          "in": "query",
93988          "name": "timeoutSeconds",
93989          "type": "integer",
93990          "uniqueItems": true
93991        },
93992        {
93993          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93994          "in": "query",
93995          "name": "watch",
93996          "type": "boolean",
93997          "uniqueItems": true
93998        }
93999      ]
94000    },
94001    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings": {
94002      "get": {
94003        "consumes": [
94004          "*/*"
94005        ],
94006        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
94007        "operationId": "watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces",
94008        "produces": [
94009          "application/json",
94010          "application/yaml",
94011          "application/vnd.kubernetes.protobuf",
94012          "application/json;stream=watch",
94013          "application/vnd.kubernetes.protobuf;stream=watch"
94014        ],
94015        "responses": {
94016          "200": {
94017            "description": "OK",
94018            "schema": {
94019              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
94020            }
94021          },
94022          "401": {
94023            "description": "Unauthorized"
94024          }
94025        },
94026        "schemes": [
94027          "https"
94028        ],
94029        "tags": [
94030          "rbacAuthorization_v1alpha1"
94031        ],
94032        "x-kubernetes-action": "watchlist",
94033        "x-kubernetes-group-version-kind": {
94034          "group": "rbac.authorization.k8s.io",
94035          "kind": "RoleBinding",
94036          "version": "v1alpha1"
94037        }
94038      },
94039      "parameters": [
94040        {
94041          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94042          "in": "query",
94043          "name": "allowWatchBookmarks",
94044          "type": "boolean",
94045          "uniqueItems": true
94046        },
94047        {
94048          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94049          "in": "query",
94050          "name": "continue",
94051          "type": "string",
94052          "uniqueItems": true
94053        },
94054        {
94055          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94056          "in": "query",
94057          "name": "fieldSelector",
94058          "type": "string",
94059          "uniqueItems": true
94060        },
94061        {
94062          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94063          "in": "query",
94064          "name": "labelSelector",
94065          "type": "string",
94066          "uniqueItems": true
94067        },
94068        {
94069          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94070          "in": "query",
94071          "name": "limit",
94072          "type": "integer",
94073          "uniqueItems": true
94074        },
94075        {
94076          "description": "If 'true', then the output is pretty printed.",
94077          "in": "query",
94078          "name": "pretty",
94079          "type": "string",
94080          "uniqueItems": true
94081        },
94082        {
94083          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94084          "in": "query",
94085          "name": "resourceVersion",
94086          "type": "string",
94087          "uniqueItems": true
94088        },
94089        {
94090          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94091          "in": "query",
94092          "name": "resourceVersionMatch",
94093          "type": "string",
94094          "uniqueItems": true
94095        },
94096        {
94097          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94098          "in": "query",
94099          "name": "timeoutSeconds",
94100          "type": "integer",
94101          "uniqueItems": true
94102        },
94103        {
94104          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94105          "in": "query",
94106          "name": "watch",
94107          "type": "boolean",
94108          "uniqueItems": true
94109        }
94110      ]
94111    },
94112    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles": {
94113      "get": {
94114        "consumes": [
94115          "*/*"
94116        ],
94117        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
94118        "operationId": "watchRbacAuthorizationV1alpha1RoleListForAllNamespaces",
94119        "produces": [
94120          "application/json",
94121          "application/yaml",
94122          "application/vnd.kubernetes.protobuf",
94123          "application/json;stream=watch",
94124          "application/vnd.kubernetes.protobuf;stream=watch"
94125        ],
94126        "responses": {
94127          "200": {
94128            "description": "OK",
94129            "schema": {
94130              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
94131            }
94132          },
94133          "401": {
94134            "description": "Unauthorized"
94135          }
94136        },
94137        "schemes": [
94138          "https"
94139        ],
94140        "tags": [
94141          "rbacAuthorization_v1alpha1"
94142        ],
94143        "x-kubernetes-action": "watchlist",
94144        "x-kubernetes-group-version-kind": {
94145          "group": "rbac.authorization.k8s.io",
94146          "kind": "Role",
94147          "version": "v1alpha1"
94148        }
94149      },
94150      "parameters": [
94151        {
94152          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94153          "in": "query",
94154          "name": "allowWatchBookmarks",
94155          "type": "boolean",
94156          "uniqueItems": true
94157        },
94158        {
94159          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94160          "in": "query",
94161          "name": "continue",
94162          "type": "string",
94163          "uniqueItems": true
94164        },
94165        {
94166          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94167          "in": "query",
94168          "name": "fieldSelector",
94169          "type": "string",
94170          "uniqueItems": true
94171        },
94172        {
94173          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94174          "in": "query",
94175          "name": "labelSelector",
94176          "type": "string",
94177          "uniqueItems": true
94178        },
94179        {
94180          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94181          "in": "query",
94182          "name": "limit",
94183          "type": "integer",
94184          "uniqueItems": true
94185        },
94186        {
94187          "description": "If 'true', then the output is pretty printed.",
94188          "in": "query",
94189          "name": "pretty",
94190          "type": "string",
94191          "uniqueItems": true
94192        },
94193        {
94194          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94195          "in": "query",
94196          "name": "resourceVersion",
94197          "type": "string",
94198          "uniqueItems": true
94199        },
94200        {
94201          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94202          "in": "query",
94203          "name": "resourceVersionMatch",
94204          "type": "string",
94205          "uniqueItems": true
94206        },
94207        {
94208          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94209          "in": "query",
94210          "name": "timeoutSeconds",
94211          "type": "integer",
94212          "uniqueItems": true
94213        },
94214        {
94215          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94216          "in": "query",
94217          "name": "watch",
94218          "type": "boolean",
94219          "uniqueItems": true
94220        }
94221      ]
94222    },
94223    "/apis/rbac.authorization.k8s.io/v1beta1/": {
94224      "get": {
94225        "consumes": [
94226          "application/json",
94227          "application/yaml",
94228          "application/vnd.kubernetes.protobuf"
94229        ],
94230        "description": "get available resources",
94231        "operationId": "getRbacAuthorizationV1beta1APIResources",
94232        "produces": [
94233          "application/json",
94234          "application/yaml",
94235          "application/vnd.kubernetes.protobuf"
94236        ],
94237        "responses": {
94238          "200": {
94239            "description": "OK",
94240            "schema": {
94241              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
94242            }
94243          },
94244          "401": {
94245            "description": "Unauthorized"
94246          }
94247        },
94248        "schemes": [
94249          "https"
94250        ],
94251        "tags": [
94252          "rbacAuthorization_v1beta1"
94253        ]
94254      }
94255    },
94256    "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings": {
94257      "delete": {
94258        "consumes": [
94259          "*/*"
94260        ],
94261        "description": "delete collection of ClusterRoleBinding",
94262        "operationId": "deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding",
94263        "parameters": [
94264          {
94265            "in": "body",
94266            "name": "body",
94267            "schema": {
94268              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94269            }
94270          },
94271          {
94272            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94273            "in": "query",
94274            "name": "continue",
94275            "type": "string",
94276            "uniqueItems": true
94277          },
94278          {
94279            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94280            "in": "query",
94281            "name": "dryRun",
94282            "type": "string",
94283            "uniqueItems": true
94284          },
94285          {
94286            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94287            "in": "query",
94288            "name": "fieldSelector",
94289            "type": "string",
94290            "uniqueItems": true
94291          },
94292          {
94293            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
94294            "in": "query",
94295            "name": "gracePeriodSeconds",
94296            "type": "integer",
94297            "uniqueItems": true
94298          },
94299          {
94300            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94301            "in": "query",
94302            "name": "labelSelector",
94303            "type": "string",
94304            "uniqueItems": true
94305          },
94306          {
94307            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94308            "in": "query",
94309            "name": "limit",
94310            "type": "integer",
94311            "uniqueItems": true
94312          },
94313          {
94314            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
94315            "in": "query",
94316            "name": "orphanDependents",
94317            "type": "boolean",
94318            "uniqueItems": true
94319          },
94320          {
94321            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
94322            "in": "query",
94323            "name": "propagationPolicy",
94324            "type": "string",
94325            "uniqueItems": true
94326          },
94327          {
94328            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94329            "in": "query",
94330            "name": "resourceVersion",
94331            "type": "string",
94332            "uniqueItems": true
94333          },
94334          {
94335            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94336            "in": "query",
94337            "name": "resourceVersionMatch",
94338            "type": "string",
94339            "uniqueItems": true
94340          },
94341          {
94342            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94343            "in": "query",
94344            "name": "timeoutSeconds",
94345            "type": "integer",
94346            "uniqueItems": true
94347          }
94348        ],
94349        "produces": [
94350          "application/json",
94351          "application/yaml",
94352          "application/vnd.kubernetes.protobuf"
94353        ],
94354        "responses": {
94355          "200": {
94356            "description": "OK",
94357            "schema": {
94358              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94359            }
94360          },
94361          "401": {
94362            "description": "Unauthorized"
94363          }
94364        },
94365        "schemes": [
94366          "https"
94367        ],
94368        "tags": [
94369          "rbacAuthorization_v1beta1"
94370        ],
94371        "x-kubernetes-action": "deletecollection",
94372        "x-kubernetes-group-version-kind": {
94373          "group": "rbac.authorization.k8s.io",
94374          "kind": "ClusterRoleBinding",
94375          "version": "v1beta1"
94376        }
94377      },
94378      "get": {
94379        "consumes": [
94380          "*/*"
94381        ],
94382        "description": "list or watch objects of kind ClusterRoleBinding",
94383        "operationId": "listRbacAuthorizationV1beta1ClusterRoleBinding",
94384        "parameters": [
94385          {
94386            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94387            "in": "query",
94388            "name": "allowWatchBookmarks",
94389            "type": "boolean",
94390            "uniqueItems": true
94391          },
94392          {
94393            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94394            "in": "query",
94395            "name": "continue",
94396            "type": "string",
94397            "uniqueItems": true
94398          },
94399          {
94400            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94401            "in": "query",
94402            "name": "fieldSelector",
94403            "type": "string",
94404            "uniqueItems": true
94405          },
94406          {
94407            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94408            "in": "query",
94409            "name": "labelSelector",
94410            "type": "string",
94411            "uniqueItems": true
94412          },
94413          {
94414            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94415            "in": "query",
94416            "name": "limit",
94417            "type": "integer",
94418            "uniqueItems": true
94419          },
94420          {
94421            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94422            "in": "query",
94423            "name": "resourceVersion",
94424            "type": "string",
94425            "uniqueItems": true
94426          },
94427          {
94428            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94429            "in": "query",
94430            "name": "resourceVersionMatch",
94431            "type": "string",
94432            "uniqueItems": true
94433          },
94434          {
94435            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94436            "in": "query",
94437            "name": "timeoutSeconds",
94438            "type": "integer",
94439            "uniqueItems": true
94440          },
94441          {
94442            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94443            "in": "query",
94444            "name": "watch",
94445            "type": "boolean",
94446            "uniqueItems": true
94447          }
94448        ],
94449        "produces": [
94450          "application/json",
94451          "application/yaml",
94452          "application/vnd.kubernetes.protobuf",
94453          "application/json;stream=watch",
94454          "application/vnd.kubernetes.protobuf;stream=watch"
94455        ],
94456        "responses": {
94457          "200": {
94458            "description": "OK",
94459            "schema": {
94460              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBindingList"
94461            }
94462          },
94463          "401": {
94464            "description": "Unauthorized"
94465          }
94466        },
94467        "schemes": [
94468          "https"
94469        ],
94470        "tags": [
94471          "rbacAuthorization_v1beta1"
94472        ],
94473        "x-kubernetes-action": "list",
94474        "x-kubernetes-group-version-kind": {
94475          "group": "rbac.authorization.k8s.io",
94476          "kind": "ClusterRoleBinding",
94477          "version": "v1beta1"
94478        }
94479      },
94480      "parameters": [
94481        {
94482          "description": "If 'true', then the output is pretty printed.",
94483          "in": "query",
94484          "name": "pretty",
94485          "type": "string",
94486          "uniqueItems": true
94487        }
94488      ],
94489      "post": {
94490        "consumes": [
94491          "*/*"
94492        ],
94493        "description": "create a ClusterRoleBinding",
94494        "operationId": "createRbacAuthorizationV1beta1ClusterRoleBinding",
94495        "parameters": [
94496          {
94497            "in": "body",
94498            "name": "body",
94499            "required": true,
94500            "schema": {
94501              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94502            }
94503          },
94504          {
94505            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94506            "in": "query",
94507            "name": "dryRun",
94508            "type": "string",
94509            "uniqueItems": true
94510          },
94511          {
94512            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94513            "in": "query",
94514            "name": "fieldManager",
94515            "type": "string",
94516            "uniqueItems": true
94517          }
94518        ],
94519        "produces": [
94520          "application/json",
94521          "application/yaml",
94522          "application/vnd.kubernetes.protobuf"
94523        ],
94524        "responses": {
94525          "200": {
94526            "description": "OK",
94527            "schema": {
94528              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94529            }
94530          },
94531          "201": {
94532            "description": "Created",
94533            "schema": {
94534              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94535            }
94536          },
94537          "202": {
94538            "description": "Accepted",
94539            "schema": {
94540              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94541            }
94542          },
94543          "401": {
94544            "description": "Unauthorized"
94545          }
94546        },
94547        "schemes": [
94548          "https"
94549        ],
94550        "tags": [
94551          "rbacAuthorization_v1beta1"
94552        ],
94553        "x-kubernetes-action": "post",
94554        "x-kubernetes-group-version-kind": {
94555          "group": "rbac.authorization.k8s.io",
94556          "kind": "ClusterRoleBinding",
94557          "version": "v1beta1"
94558        }
94559      }
94560    },
94561    "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}": {
94562      "delete": {
94563        "consumes": [
94564          "*/*"
94565        ],
94566        "description": "delete a ClusterRoleBinding",
94567        "operationId": "deleteRbacAuthorizationV1beta1ClusterRoleBinding",
94568        "parameters": [
94569          {
94570            "in": "body",
94571            "name": "body",
94572            "schema": {
94573              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94574            }
94575          },
94576          {
94577            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94578            "in": "query",
94579            "name": "dryRun",
94580            "type": "string",
94581            "uniqueItems": true
94582          },
94583          {
94584            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
94585            "in": "query",
94586            "name": "gracePeriodSeconds",
94587            "type": "integer",
94588            "uniqueItems": true
94589          },
94590          {
94591            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
94592            "in": "query",
94593            "name": "orphanDependents",
94594            "type": "boolean",
94595            "uniqueItems": true
94596          },
94597          {
94598            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
94599            "in": "query",
94600            "name": "propagationPolicy",
94601            "type": "string",
94602            "uniqueItems": true
94603          }
94604        ],
94605        "produces": [
94606          "application/json",
94607          "application/yaml",
94608          "application/vnd.kubernetes.protobuf"
94609        ],
94610        "responses": {
94611          "200": {
94612            "description": "OK",
94613            "schema": {
94614              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94615            }
94616          },
94617          "202": {
94618            "description": "Accepted",
94619            "schema": {
94620              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94621            }
94622          },
94623          "401": {
94624            "description": "Unauthorized"
94625          }
94626        },
94627        "schemes": [
94628          "https"
94629        ],
94630        "tags": [
94631          "rbacAuthorization_v1beta1"
94632        ],
94633        "x-kubernetes-action": "delete",
94634        "x-kubernetes-group-version-kind": {
94635          "group": "rbac.authorization.k8s.io",
94636          "kind": "ClusterRoleBinding",
94637          "version": "v1beta1"
94638        }
94639      },
94640      "get": {
94641        "consumes": [
94642          "*/*"
94643        ],
94644        "description": "read the specified ClusterRoleBinding",
94645        "operationId": "readRbacAuthorizationV1beta1ClusterRoleBinding",
94646        "produces": [
94647          "application/json",
94648          "application/yaml",
94649          "application/vnd.kubernetes.protobuf"
94650        ],
94651        "responses": {
94652          "200": {
94653            "description": "OK",
94654            "schema": {
94655              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94656            }
94657          },
94658          "401": {
94659            "description": "Unauthorized"
94660          }
94661        },
94662        "schemes": [
94663          "https"
94664        ],
94665        "tags": [
94666          "rbacAuthorization_v1beta1"
94667        ],
94668        "x-kubernetes-action": "get",
94669        "x-kubernetes-group-version-kind": {
94670          "group": "rbac.authorization.k8s.io",
94671          "kind": "ClusterRoleBinding",
94672          "version": "v1beta1"
94673        }
94674      },
94675      "parameters": [
94676        {
94677          "description": "name of the ClusterRoleBinding",
94678          "in": "path",
94679          "name": "name",
94680          "required": true,
94681          "type": "string",
94682          "uniqueItems": true
94683        },
94684        {
94685          "description": "If 'true', then the output is pretty printed.",
94686          "in": "query",
94687          "name": "pretty",
94688          "type": "string",
94689          "uniqueItems": true
94690        }
94691      ],
94692      "patch": {
94693        "consumes": [
94694          "application/json-patch+json",
94695          "application/merge-patch+json",
94696          "application/strategic-merge-patch+json",
94697          "application/apply-patch+yaml"
94698        ],
94699        "description": "partially update the specified ClusterRoleBinding",
94700        "operationId": "patchRbacAuthorizationV1beta1ClusterRoleBinding",
94701        "parameters": [
94702          {
94703            "in": "body",
94704            "name": "body",
94705            "required": true,
94706            "schema": {
94707              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
94708            }
94709          },
94710          {
94711            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94712            "in": "query",
94713            "name": "dryRun",
94714            "type": "string",
94715            "uniqueItems": true
94716          },
94717          {
94718            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
94719            "in": "query",
94720            "name": "fieldManager",
94721            "type": "string",
94722            "uniqueItems": true
94723          },
94724          {
94725            "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.",
94726            "in": "query",
94727            "name": "force",
94728            "type": "boolean",
94729            "uniqueItems": true
94730          }
94731        ],
94732        "produces": [
94733          "application/json",
94734          "application/yaml",
94735          "application/vnd.kubernetes.protobuf"
94736        ],
94737        "responses": {
94738          "200": {
94739            "description": "OK",
94740            "schema": {
94741              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94742            }
94743          },
94744          "401": {
94745            "description": "Unauthorized"
94746          }
94747        },
94748        "schemes": [
94749          "https"
94750        ],
94751        "tags": [
94752          "rbacAuthorization_v1beta1"
94753        ],
94754        "x-kubernetes-action": "patch",
94755        "x-kubernetes-group-version-kind": {
94756          "group": "rbac.authorization.k8s.io",
94757          "kind": "ClusterRoleBinding",
94758          "version": "v1beta1"
94759        }
94760      },
94761      "put": {
94762        "consumes": [
94763          "*/*"
94764        ],
94765        "description": "replace the specified ClusterRoleBinding",
94766        "operationId": "replaceRbacAuthorizationV1beta1ClusterRoleBinding",
94767        "parameters": [
94768          {
94769            "in": "body",
94770            "name": "body",
94771            "required": true,
94772            "schema": {
94773              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94774            }
94775          },
94776          {
94777            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94778            "in": "query",
94779            "name": "dryRun",
94780            "type": "string",
94781            "uniqueItems": true
94782          },
94783          {
94784            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94785            "in": "query",
94786            "name": "fieldManager",
94787            "type": "string",
94788            "uniqueItems": true
94789          }
94790        ],
94791        "produces": [
94792          "application/json",
94793          "application/yaml",
94794          "application/vnd.kubernetes.protobuf"
94795        ],
94796        "responses": {
94797          "200": {
94798            "description": "OK",
94799            "schema": {
94800              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94801            }
94802          },
94803          "201": {
94804            "description": "Created",
94805            "schema": {
94806              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94807            }
94808          },
94809          "401": {
94810            "description": "Unauthorized"
94811          }
94812        },
94813        "schemes": [
94814          "https"
94815        ],
94816        "tags": [
94817          "rbacAuthorization_v1beta1"
94818        ],
94819        "x-kubernetes-action": "put",
94820        "x-kubernetes-group-version-kind": {
94821          "group": "rbac.authorization.k8s.io",
94822          "kind": "ClusterRoleBinding",
94823          "version": "v1beta1"
94824        }
94825      }
94826    },
94827    "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles": {
94828      "delete": {
94829        "consumes": [
94830          "*/*"
94831        ],
94832        "description": "delete collection of ClusterRole",
94833        "operationId": "deleteRbacAuthorizationV1beta1CollectionClusterRole",
94834        "parameters": [
94835          {
94836            "in": "body",
94837            "name": "body",
94838            "schema": {
94839              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94840            }
94841          },
94842          {
94843            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94844            "in": "query",
94845            "name": "continue",
94846            "type": "string",
94847            "uniqueItems": true
94848          },
94849          {
94850            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94851            "in": "query",
94852            "name": "dryRun",
94853            "type": "string",
94854            "uniqueItems": true
94855          },
94856          {
94857            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94858            "in": "query",
94859            "name": "fieldSelector",
94860            "type": "string",
94861            "uniqueItems": true
94862          },
94863          {
94864            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
94865            "in": "query",
94866            "name": "gracePeriodSeconds",
94867            "type": "integer",
94868            "uniqueItems": true
94869          },
94870          {
94871            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94872            "in": "query",
94873            "name": "labelSelector",
94874            "type": "string",
94875            "uniqueItems": true
94876          },
94877          {
94878            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94879            "in": "query",
94880            "name": "limit",
94881            "type": "integer",
94882            "uniqueItems": true
94883          },
94884          {
94885            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
94886            "in": "query",
94887            "name": "orphanDependents",
94888            "type": "boolean",
94889            "uniqueItems": true
94890          },
94891          {
94892            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
94893            "in": "query",
94894            "name": "propagationPolicy",
94895            "type": "string",
94896            "uniqueItems": true
94897          },
94898          {
94899            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94900            "in": "query",
94901            "name": "resourceVersion",
94902            "type": "string",
94903            "uniqueItems": true
94904          },
94905          {
94906            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94907            "in": "query",
94908            "name": "resourceVersionMatch",
94909            "type": "string",
94910            "uniqueItems": true
94911          },
94912          {
94913            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94914            "in": "query",
94915            "name": "timeoutSeconds",
94916            "type": "integer",
94917            "uniqueItems": true
94918          }
94919        ],
94920        "produces": [
94921          "application/json",
94922          "application/yaml",
94923          "application/vnd.kubernetes.protobuf"
94924        ],
94925        "responses": {
94926          "200": {
94927            "description": "OK",
94928            "schema": {
94929              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94930            }
94931          },
94932          "401": {
94933            "description": "Unauthorized"
94934          }
94935        },
94936        "schemes": [
94937          "https"
94938        ],
94939        "tags": [
94940          "rbacAuthorization_v1beta1"
94941        ],
94942        "x-kubernetes-action": "deletecollection",
94943        "x-kubernetes-group-version-kind": {
94944          "group": "rbac.authorization.k8s.io",
94945          "kind": "ClusterRole",
94946          "version": "v1beta1"
94947        }
94948      },
94949      "get": {
94950        "consumes": [
94951          "*/*"
94952        ],
94953        "description": "list or watch objects of kind ClusterRole",
94954        "operationId": "listRbacAuthorizationV1beta1ClusterRole",
94955        "parameters": [
94956          {
94957            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94958            "in": "query",
94959            "name": "allowWatchBookmarks",
94960            "type": "boolean",
94961            "uniqueItems": true
94962          },
94963          {
94964            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94965            "in": "query",
94966            "name": "continue",
94967            "type": "string",
94968            "uniqueItems": true
94969          },
94970          {
94971            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94972            "in": "query",
94973            "name": "fieldSelector",
94974            "type": "string",
94975            "uniqueItems": true
94976          },
94977          {
94978            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94979            "in": "query",
94980            "name": "labelSelector",
94981            "type": "string",
94982            "uniqueItems": true
94983          },
94984          {
94985            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94986            "in": "query",
94987            "name": "limit",
94988            "type": "integer",
94989            "uniqueItems": true
94990          },
94991          {
94992            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94993            "in": "query",
94994            "name": "resourceVersion",
94995            "type": "string",
94996            "uniqueItems": true
94997          },
94998          {
94999            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95000            "in": "query",
95001            "name": "resourceVersionMatch",
95002            "type": "string",
95003            "uniqueItems": true
95004          },
95005          {
95006            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95007            "in": "query",
95008            "name": "timeoutSeconds",
95009            "type": "integer",
95010            "uniqueItems": true
95011          },
95012          {
95013            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
95014            "in": "query",
95015            "name": "watch",
95016            "type": "boolean",
95017            "uniqueItems": true
95018          }
95019        ],
95020        "produces": [
95021          "application/json",
95022          "application/yaml",
95023          "application/vnd.kubernetes.protobuf",
95024          "application/json;stream=watch",
95025          "application/vnd.kubernetes.protobuf;stream=watch"
95026        ],
95027        "responses": {
95028          "200": {
95029            "description": "OK",
95030            "schema": {
95031              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleList"
95032            }
95033          },
95034          "401": {
95035            "description": "Unauthorized"
95036          }
95037        },
95038        "schemes": [
95039          "https"
95040        ],
95041        "tags": [
95042          "rbacAuthorization_v1beta1"
95043        ],
95044        "x-kubernetes-action": "list",
95045        "x-kubernetes-group-version-kind": {
95046          "group": "rbac.authorization.k8s.io",
95047          "kind": "ClusterRole",
95048          "version": "v1beta1"
95049        }
95050      },
95051      "parameters": [
95052        {
95053          "description": "If 'true', then the output is pretty printed.",
95054          "in": "query",
95055          "name": "pretty",
95056          "type": "string",
95057          "uniqueItems": true
95058        }
95059      ],
95060      "post": {
95061        "consumes": [
95062          "*/*"
95063        ],
95064        "description": "create a ClusterRole",
95065        "operationId": "createRbacAuthorizationV1beta1ClusterRole",
95066        "parameters": [
95067          {
95068            "in": "body",
95069            "name": "body",
95070            "required": true,
95071            "schema": {
95072              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95073            }
95074          },
95075          {
95076            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95077            "in": "query",
95078            "name": "dryRun",
95079            "type": "string",
95080            "uniqueItems": true
95081          },
95082          {
95083            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95084            "in": "query",
95085            "name": "fieldManager",
95086            "type": "string",
95087            "uniqueItems": true
95088          }
95089        ],
95090        "produces": [
95091          "application/json",
95092          "application/yaml",
95093          "application/vnd.kubernetes.protobuf"
95094        ],
95095        "responses": {
95096          "200": {
95097            "description": "OK",
95098            "schema": {
95099              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95100            }
95101          },
95102          "201": {
95103            "description": "Created",
95104            "schema": {
95105              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95106            }
95107          },
95108          "202": {
95109            "description": "Accepted",
95110            "schema": {
95111              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95112            }
95113          },
95114          "401": {
95115            "description": "Unauthorized"
95116          }
95117        },
95118        "schemes": [
95119          "https"
95120        ],
95121        "tags": [
95122          "rbacAuthorization_v1beta1"
95123        ],
95124        "x-kubernetes-action": "post",
95125        "x-kubernetes-group-version-kind": {
95126          "group": "rbac.authorization.k8s.io",
95127          "kind": "ClusterRole",
95128          "version": "v1beta1"
95129        }
95130      }
95131    },
95132    "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}": {
95133      "delete": {
95134        "consumes": [
95135          "*/*"
95136        ],
95137        "description": "delete a ClusterRole",
95138        "operationId": "deleteRbacAuthorizationV1beta1ClusterRole",
95139        "parameters": [
95140          {
95141            "in": "body",
95142            "name": "body",
95143            "schema": {
95144              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95145            }
95146          },
95147          {
95148            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95149            "in": "query",
95150            "name": "dryRun",
95151            "type": "string",
95152            "uniqueItems": true
95153          },
95154          {
95155            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
95156            "in": "query",
95157            "name": "gracePeriodSeconds",
95158            "type": "integer",
95159            "uniqueItems": true
95160          },
95161          {
95162            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
95163            "in": "query",
95164            "name": "orphanDependents",
95165            "type": "boolean",
95166            "uniqueItems": true
95167          },
95168          {
95169            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
95170            "in": "query",
95171            "name": "propagationPolicy",
95172            "type": "string",
95173            "uniqueItems": true
95174          }
95175        ],
95176        "produces": [
95177          "application/json",
95178          "application/yaml",
95179          "application/vnd.kubernetes.protobuf"
95180        ],
95181        "responses": {
95182          "200": {
95183            "description": "OK",
95184            "schema": {
95185              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95186            }
95187          },
95188          "202": {
95189            "description": "Accepted",
95190            "schema": {
95191              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95192            }
95193          },
95194          "401": {
95195            "description": "Unauthorized"
95196          }
95197        },
95198        "schemes": [
95199          "https"
95200        ],
95201        "tags": [
95202          "rbacAuthorization_v1beta1"
95203        ],
95204        "x-kubernetes-action": "delete",
95205        "x-kubernetes-group-version-kind": {
95206          "group": "rbac.authorization.k8s.io",
95207          "kind": "ClusterRole",
95208          "version": "v1beta1"
95209        }
95210      },
95211      "get": {
95212        "consumes": [
95213          "*/*"
95214        ],
95215        "description": "read the specified ClusterRole",
95216        "operationId": "readRbacAuthorizationV1beta1ClusterRole",
95217        "produces": [
95218          "application/json",
95219          "application/yaml",
95220          "application/vnd.kubernetes.protobuf"
95221        ],
95222        "responses": {
95223          "200": {
95224            "description": "OK",
95225            "schema": {
95226              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95227            }
95228          },
95229          "401": {
95230            "description": "Unauthorized"
95231          }
95232        },
95233        "schemes": [
95234          "https"
95235        ],
95236        "tags": [
95237          "rbacAuthorization_v1beta1"
95238        ],
95239        "x-kubernetes-action": "get",
95240        "x-kubernetes-group-version-kind": {
95241          "group": "rbac.authorization.k8s.io",
95242          "kind": "ClusterRole",
95243          "version": "v1beta1"
95244        }
95245      },
95246      "parameters": [
95247        {
95248          "description": "name of the ClusterRole",
95249          "in": "path",
95250          "name": "name",
95251          "required": true,
95252          "type": "string",
95253          "uniqueItems": true
95254        },
95255        {
95256          "description": "If 'true', then the output is pretty printed.",
95257          "in": "query",
95258          "name": "pretty",
95259          "type": "string",
95260          "uniqueItems": true
95261        }
95262      ],
95263      "patch": {
95264        "consumes": [
95265          "application/json-patch+json",
95266          "application/merge-patch+json",
95267          "application/strategic-merge-patch+json",
95268          "application/apply-patch+yaml"
95269        ],
95270        "description": "partially update the specified ClusterRole",
95271        "operationId": "patchRbacAuthorizationV1beta1ClusterRole",
95272        "parameters": [
95273          {
95274            "in": "body",
95275            "name": "body",
95276            "required": true,
95277            "schema": {
95278              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
95279            }
95280          },
95281          {
95282            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95283            "in": "query",
95284            "name": "dryRun",
95285            "type": "string",
95286            "uniqueItems": true
95287          },
95288          {
95289            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
95290            "in": "query",
95291            "name": "fieldManager",
95292            "type": "string",
95293            "uniqueItems": true
95294          },
95295          {
95296            "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.",
95297            "in": "query",
95298            "name": "force",
95299            "type": "boolean",
95300            "uniqueItems": true
95301          }
95302        ],
95303        "produces": [
95304          "application/json",
95305          "application/yaml",
95306          "application/vnd.kubernetes.protobuf"
95307        ],
95308        "responses": {
95309          "200": {
95310            "description": "OK",
95311            "schema": {
95312              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95313            }
95314          },
95315          "401": {
95316            "description": "Unauthorized"
95317          }
95318        },
95319        "schemes": [
95320          "https"
95321        ],
95322        "tags": [
95323          "rbacAuthorization_v1beta1"
95324        ],
95325        "x-kubernetes-action": "patch",
95326        "x-kubernetes-group-version-kind": {
95327          "group": "rbac.authorization.k8s.io",
95328          "kind": "ClusterRole",
95329          "version": "v1beta1"
95330        }
95331      },
95332      "put": {
95333        "consumes": [
95334          "*/*"
95335        ],
95336        "description": "replace the specified ClusterRole",
95337        "operationId": "replaceRbacAuthorizationV1beta1ClusterRole",
95338        "parameters": [
95339          {
95340            "in": "body",
95341            "name": "body",
95342            "required": true,
95343            "schema": {
95344              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95345            }
95346          },
95347          {
95348            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95349            "in": "query",
95350            "name": "dryRun",
95351            "type": "string",
95352            "uniqueItems": true
95353          },
95354          {
95355            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95356            "in": "query",
95357            "name": "fieldManager",
95358            "type": "string",
95359            "uniqueItems": true
95360          }
95361        ],
95362        "produces": [
95363          "application/json",
95364          "application/yaml",
95365          "application/vnd.kubernetes.protobuf"
95366        ],
95367        "responses": {
95368          "200": {
95369            "description": "OK",
95370            "schema": {
95371              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95372            }
95373          },
95374          "201": {
95375            "description": "Created",
95376            "schema": {
95377              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95378            }
95379          },
95380          "401": {
95381            "description": "Unauthorized"
95382          }
95383        },
95384        "schemes": [
95385          "https"
95386        ],
95387        "tags": [
95388          "rbacAuthorization_v1beta1"
95389        ],
95390        "x-kubernetes-action": "put",
95391        "x-kubernetes-group-version-kind": {
95392          "group": "rbac.authorization.k8s.io",
95393          "kind": "ClusterRole",
95394          "version": "v1beta1"
95395        }
95396      }
95397    },
95398    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings": {
95399      "delete": {
95400        "consumes": [
95401          "*/*"
95402        ],
95403        "description": "delete collection of RoleBinding",
95404        "operationId": "deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding",
95405        "parameters": [
95406          {
95407            "in": "body",
95408            "name": "body",
95409            "schema": {
95410              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95411            }
95412          },
95413          {
95414            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95415            "in": "query",
95416            "name": "continue",
95417            "type": "string",
95418            "uniqueItems": true
95419          },
95420          {
95421            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95422            "in": "query",
95423            "name": "dryRun",
95424            "type": "string",
95425            "uniqueItems": true
95426          },
95427          {
95428            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95429            "in": "query",
95430            "name": "fieldSelector",
95431            "type": "string",
95432            "uniqueItems": true
95433          },
95434          {
95435            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
95436            "in": "query",
95437            "name": "gracePeriodSeconds",
95438            "type": "integer",
95439            "uniqueItems": true
95440          },
95441          {
95442            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95443            "in": "query",
95444            "name": "labelSelector",
95445            "type": "string",
95446            "uniqueItems": true
95447          },
95448          {
95449            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
95450            "in": "query",
95451            "name": "limit",
95452            "type": "integer",
95453            "uniqueItems": true
95454          },
95455          {
95456            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
95457            "in": "query",
95458            "name": "orphanDependents",
95459            "type": "boolean",
95460            "uniqueItems": true
95461          },
95462          {
95463            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
95464            "in": "query",
95465            "name": "propagationPolicy",
95466            "type": "string",
95467            "uniqueItems": true
95468          },
95469          {
95470            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95471            "in": "query",
95472            "name": "resourceVersion",
95473            "type": "string",
95474            "uniqueItems": true
95475          },
95476          {
95477            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95478            "in": "query",
95479            "name": "resourceVersionMatch",
95480            "type": "string",
95481            "uniqueItems": true
95482          },
95483          {
95484            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95485            "in": "query",
95486            "name": "timeoutSeconds",
95487            "type": "integer",
95488            "uniqueItems": true
95489          }
95490        ],
95491        "produces": [
95492          "application/json",
95493          "application/yaml",
95494          "application/vnd.kubernetes.protobuf"
95495        ],
95496        "responses": {
95497          "200": {
95498            "description": "OK",
95499            "schema": {
95500              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95501            }
95502          },
95503          "401": {
95504            "description": "Unauthorized"
95505          }
95506        },
95507        "schemes": [
95508          "https"
95509        ],
95510        "tags": [
95511          "rbacAuthorization_v1beta1"
95512        ],
95513        "x-kubernetes-action": "deletecollection",
95514        "x-kubernetes-group-version-kind": {
95515          "group": "rbac.authorization.k8s.io",
95516          "kind": "RoleBinding",
95517          "version": "v1beta1"
95518        }
95519      },
95520      "get": {
95521        "consumes": [
95522          "*/*"
95523        ],
95524        "description": "list or watch objects of kind RoleBinding",
95525        "operationId": "listRbacAuthorizationV1beta1NamespacedRoleBinding",
95526        "parameters": [
95527          {
95528            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
95529            "in": "query",
95530            "name": "allowWatchBookmarks",
95531            "type": "boolean",
95532            "uniqueItems": true
95533          },
95534          {
95535            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95536            "in": "query",
95537            "name": "continue",
95538            "type": "string",
95539            "uniqueItems": true
95540          },
95541          {
95542            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95543            "in": "query",
95544            "name": "fieldSelector",
95545            "type": "string",
95546            "uniqueItems": true
95547          },
95548          {
95549            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95550            "in": "query",
95551            "name": "labelSelector",
95552            "type": "string",
95553            "uniqueItems": true
95554          },
95555          {
95556            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
95557            "in": "query",
95558            "name": "limit",
95559            "type": "integer",
95560            "uniqueItems": true
95561          },
95562          {
95563            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95564            "in": "query",
95565            "name": "resourceVersion",
95566            "type": "string",
95567            "uniqueItems": true
95568          },
95569          {
95570            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95571            "in": "query",
95572            "name": "resourceVersionMatch",
95573            "type": "string",
95574            "uniqueItems": true
95575          },
95576          {
95577            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95578            "in": "query",
95579            "name": "timeoutSeconds",
95580            "type": "integer",
95581            "uniqueItems": true
95582          },
95583          {
95584            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
95585            "in": "query",
95586            "name": "watch",
95587            "type": "boolean",
95588            "uniqueItems": true
95589          }
95590        ],
95591        "produces": [
95592          "application/json",
95593          "application/yaml",
95594          "application/vnd.kubernetes.protobuf",
95595          "application/json;stream=watch",
95596          "application/vnd.kubernetes.protobuf;stream=watch"
95597        ],
95598        "responses": {
95599          "200": {
95600            "description": "OK",
95601            "schema": {
95602              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList"
95603            }
95604          },
95605          "401": {
95606            "description": "Unauthorized"
95607          }
95608        },
95609        "schemes": [
95610          "https"
95611        ],
95612        "tags": [
95613          "rbacAuthorization_v1beta1"
95614        ],
95615        "x-kubernetes-action": "list",
95616        "x-kubernetes-group-version-kind": {
95617          "group": "rbac.authorization.k8s.io",
95618          "kind": "RoleBinding",
95619          "version": "v1beta1"
95620        }
95621      },
95622      "parameters": [
95623        {
95624          "description": "object name and auth scope, such as for teams and projects",
95625          "in": "path",
95626          "name": "namespace",
95627          "required": true,
95628          "type": "string",
95629          "uniqueItems": true
95630        },
95631        {
95632          "description": "If 'true', then the output is pretty printed.",
95633          "in": "query",
95634          "name": "pretty",
95635          "type": "string",
95636          "uniqueItems": true
95637        }
95638      ],
95639      "post": {
95640        "consumes": [
95641          "*/*"
95642        ],
95643        "description": "create a RoleBinding",
95644        "operationId": "createRbacAuthorizationV1beta1NamespacedRoleBinding",
95645        "parameters": [
95646          {
95647            "in": "body",
95648            "name": "body",
95649            "required": true,
95650            "schema": {
95651              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95652            }
95653          },
95654          {
95655            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95656            "in": "query",
95657            "name": "dryRun",
95658            "type": "string",
95659            "uniqueItems": true
95660          },
95661          {
95662            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95663            "in": "query",
95664            "name": "fieldManager",
95665            "type": "string",
95666            "uniqueItems": true
95667          }
95668        ],
95669        "produces": [
95670          "application/json",
95671          "application/yaml",
95672          "application/vnd.kubernetes.protobuf"
95673        ],
95674        "responses": {
95675          "200": {
95676            "description": "OK",
95677            "schema": {
95678              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95679            }
95680          },
95681          "201": {
95682            "description": "Created",
95683            "schema": {
95684              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95685            }
95686          },
95687          "202": {
95688            "description": "Accepted",
95689            "schema": {
95690              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95691            }
95692          },
95693          "401": {
95694            "description": "Unauthorized"
95695          }
95696        },
95697        "schemes": [
95698          "https"
95699        ],
95700        "tags": [
95701          "rbacAuthorization_v1beta1"
95702        ],
95703        "x-kubernetes-action": "post",
95704        "x-kubernetes-group-version-kind": {
95705          "group": "rbac.authorization.k8s.io",
95706          "kind": "RoleBinding",
95707          "version": "v1beta1"
95708        }
95709      }
95710    },
95711    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}": {
95712      "delete": {
95713        "consumes": [
95714          "*/*"
95715        ],
95716        "description": "delete a RoleBinding",
95717        "operationId": "deleteRbacAuthorizationV1beta1NamespacedRoleBinding",
95718        "parameters": [
95719          {
95720            "in": "body",
95721            "name": "body",
95722            "schema": {
95723              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95724            }
95725          },
95726          {
95727            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95728            "in": "query",
95729            "name": "dryRun",
95730            "type": "string",
95731            "uniqueItems": true
95732          },
95733          {
95734            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
95735            "in": "query",
95736            "name": "gracePeriodSeconds",
95737            "type": "integer",
95738            "uniqueItems": true
95739          },
95740          {
95741            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
95742            "in": "query",
95743            "name": "orphanDependents",
95744            "type": "boolean",
95745            "uniqueItems": true
95746          },
95747          {
95748            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
95749            "in": "query",
95750            "name": "propagationPolicy",
95751            "type": "string",
95752            "uniqueItems": true
95753          }
95754        ],
95755        "produces": [
95756          "application/json",
95757          "application/yaml",
95758          "application/vnd.kubernetes.protobuf"
95759        ],
95760        "responses": {
95761          "200": {
95762            "description": "OK",
95763            "schema": {
95764              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95765            }
95766          },
95767          "202": {
95768            "description": "Accepted",
95769            "schema": {
95770              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95771            }
95772          },
95773          "401": {
95774            "description": "Unauthorized"
95775          }
95776        },
95777        "schemes": [
95778          "https"
95779        ],
95780        "tags": [
95781          "rbacAuthorization_v1beta1"
95782        ],
95783        "x-kubernetes-action": "delete",
95784        "x-kubernetes-group-version-kind": {
95785          "group": "rbac.authorization.k8s.io",
95786          "kind": "RoleBinding",
95787          "version": "v1beta1"
95788        }
95789      },
95790      "get": {
95791        "consumes": [
95792          "*/*"
95793        ],
95794        "description": "read the specified RoleBinding",
95795        "operationId": "readRbacAuthorizationV1beta1NamespacedRoleBinding",
95796        "produces": [
95797          "application/json",
95798          "application/yaml",
95799          "application/vnd.kubernetes.protobuf"
95800        ],
95801        "responses": {
95802          "200": {
95803            "description": "OK",
95804            "schema": {
95805              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95806            }
95807          },
95808          "401": {
95809            "description": "Unauthorized"
95810          }
95811        },
95812        "schemes": [
95813          "https"
95814        ],
95815        "tags": [
95816          "rbacAuthorization_v1beta1"
95817        ],
95818        "x-kubernetes-action": "get",
95819        "x-kubernetes-group-version-kind": {
95820          "group": "rbac.authorization.k8s.io",
95821          "kind": "RoleBinding",
95822          "version": "v1beta1"
95823        }
95824      },
95825      "parameters": [
95826        {
95827          "description": "name of the RoleBinding",
95828          "in": "path",
95829          "name": "name",
95830          "required": true,
95831          "type": "string",
95832          "uniqueItems": true
95833        },
95834        {
95835          "description": "object name and auth scope, such as for teams and projects",
95836          "in": "path",
95837          "name": "namespace",
95838          "required": true,
95839          "type": "string",
95840          "uniqueItems": true
95841        },
95842        {
95843          "description": "If 'true', then the output is pretty printed.",
95844          "in": "query",
95845          "name": "pretty",
95846          "type": "string",
95847          "uniqueItems": true
95848        }
95849      ],
95850      "patch": {
95851        "consumes": [
95852          "application/json-patch+json",
95853          "application/merge-patch+json",
95854          "application/strategic-merge-patch+json",
95855          "application/apply-patch+yaml"
95856        ],
95857        "description": "partially update the specified RoleBinding",
95858        "operationId": "patchRbacAuthorizationV1beta1NamespacedRoleBinding",
95859        "parameters": [
95860          {
95861            "in": "body",
95862            "name": "body",
95863            "required": true,
95864            "schema": {
95865              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
95866            }
95867          },
95868          {
95869            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95870            "in": "query",
95871            "name": "dryRun",
95872            "type": "string",
95873            "uniqueItems": true
95874          },
95875          {
95876            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
95877            "in": "query",
95878            "name": "fieldManager",
95879            "type": "string",
95880            "uniqueItems": true
95881          },
95882          {
95883            "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.",
95884            "in": "query",
95885            "name": "force",
95886            "type": "boolean",
95887            "uniqueItems": true
95888          }
95889        ],
95890        "produces": [
95891          "application/json",
95892          "application/yaml",
95893          "application/vnd.kubernetes.protobuf"
95894        ],
95895        "responses": {
95896          "200": {
95897            "description": "OK",
95898            "schema": {
95899              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95900            }
95901          },
95902          "401": {
95903            "description": "Unauthorized"
95904          }
95905        },
95906        "schemes": [
95907          "https"
95908        ],
95909        "tags": [
95910          "rbacAuthorization_v1beta1"
95911        ],
95912        "x-kubernetes-action": "patch",
95913        "x-kubernetes-group-version-kind": {
95914          "group": "rbac.authorization.k8s.io",
95915          "kind": "RoleBinding",
95916          "version": "v1beta1"
95917        }
95918      },
95919      "put": {
95920        "consumes": [
95921          "*/*"
95922        ],
95923        "description": "replace the specified RoleBinding",
95924        "operationId": "replaceRbacAuthorizationV1beta1NamespacedRoleBinding",
95925        "parameters": [
95926          {
95927            "in": "body",
95928            "name": "body",
95929            "required": true,
95930            "schema": {
95931              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95932            }
95933          },
95934          {
95935            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95936            "in": "query",
95937            "name": "dryRun",
95938            "type": "string",
95939            "uniqueItems": true
95940          },
95941          {
95942            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95943            "in": "query",
95944            "name": "fieldManager",
95945            "type": "string",
95946            "uniqueItems": true
95947          }
95948        ],
95949        "produces": [
95950          "application/json",
95951          "application/yaml",
95952          "application/vnd.kubernetes.protobuf"
95953        ],
95954        "responses": {
95955          "200": {
95956            "description": "OK",
95957            "schema": {
95958              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95959            }
95960          },
95961          "201": {
95962            "description": "Created",
95963            "schema": {
95964              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95965            }
95966          },
95967          "401": {
95968            "description": "Unauthorized"
95969          }
95970        },
95971        "schemes": [
95972          "https"
95973        ],
95974        "tags": [
95975          "rbacAuthorization_v1beta1"
95976        ],
95977        "x-kubernetes-action": "put",
95978        "x-kubernetes-group-version-kind": {
95979          "group": "rbac.authorization.k8s.io",
95980          "kind": "RoleBinding",
95981          "version": "v1beta1"
95982        }
95983      }
95984    },
95985    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles": {
95986      "delete": {
95987        "consumes": [
95988          "*/*"
95989        ],
95990        "description": "delete collection of Role",
95991        "operationId": "deleteRbacAuthorizationV1beta1CollectionNamespacedRole",
95992        "parameters": [
95993          {
95994            "in": "body",
95995            "name": "body",
95996            "schema": {
95997              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95998            }
95999          },
96000          {
96001            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96002            "in": "query",
96003            "name": "continue",
96004            "type": "string",
96005            "uniqueItems": true
96006          },
96007          {
96008            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96009            "in": "query",
96010            "name": "dryRun",
96011            "type": "string",
96012            "uniqueItems": true
96013          },
96014          {
96015            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96016            "in": "query",
96017            "name": "fieldSelector",
96018            "type": "string",
96019            "uniqueItems": true
96020          },
96021          {
96022            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
96023            "in": "query",
96024            "name": "gracePeriodSeconds",
96025            "type": "integer",
96026            "uniqueItems": true
96027          },
96028          {
96029            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96030            "in": "query",
96031            "name": "labelSelector",
96032            "type": "string",
96033            "uniqueItems": true
96034          },
96035          {
96036            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96037            "in": "query",
96038            "name": "limit",
96039            "type": "integer",
96040            "uniqueItems": true
96041          },
96042          {
96043            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
96044            "in": "query",
96045            "name": "orphanDependents",
96046            "type": "boolean",
96047            "uniqueItems": true
96048          },
96049          {
96050            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
96051            "in": "query",
96052            "name": "propagationPolicy",
96053            "type": "string",
96054            "uniqueItems": true
96055          },
96056          {
96057            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96058            "in": "query",
96059            "name": "resourceVersion",
96060            "type": "string",
96061            "uniqueItems": true
96062          },
96063          {
96064            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96065            "in": "query",
96066            "name": "resourceVersionMatch",
96067            "type": "string",
96068            "uniqueItems": true
96069          },
96070          {
96071            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96072            "in": "query",
96073            "name": "timeoutSeconds",
96074            "type": "integer",
96075            "uniqueItems": true
96076          }
96077        ],
96078        "produces": [
96079          "application/json",
96080          "application/yaml",
96081          "application/vnd.kubernetes.protobuf"
96082        ],
96083        "responses": {
96084          "200": {
96085            "description": "OK",
96086            "schema": {
96087              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
96088            }
96089          },
96090          "401": {
96091            "description": "Unauthorized"
96092          }
96093        },
96094        "schemes": [
96095          "https"
96096        ],
96097        "tags": [
96098          "rbacAuthorization_v1beta1"
96099        ],
96100        "x-kubernetes-action": "deletecollection",
96101        "x-kubernetes-group-version-kind": {
96102          "group": "rbac.authorization.k8s.io",
96103          "kind": "Role",
96104          "version": "v1beta1"
96105        }
96106      },
96107      "get": {
96108        "consumes": [
96109          "*/*"
96110        ],
96111        "description": "list or watch objects of kind Role",
96112        "operationId": "listRbacAuthorizationV1beta1NamespacedRole",
96113        "parameters": [
96114          {
96115            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96116            "in": "query",
96117            "name": "allowWatchBookmarks",
96118            "type": "boolean",
96119            "uniqueItems": true
96120          },
96121          {
96122            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96123            "in": "query",
96124            "name": "continue",
96125            "type": "string",
96126            "uniqueItems": true
96127          },
96128          {
96129            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96130            "in": "query",
96131            "name": "fieldSelector",
96132            "type": "string",
96133            "uniqueItems": true
96134          },
96135          {
96136            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96137            "in": "query",
96138            "name": "labelSelector",
96139            "type": "string",
96140            "uniqueItems": true
96141          },
96142          {
96143            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96144            "in": "query",
96145            "name": "limit",
96146            "type": "integer",
96147            "uniqueItems": true
96148          },
96149          {
96150            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96151            "in": "query",
96152            "name": "resourceVersion",
96153            "type": "string",
96154            "uniqueItems": true
96155          },
96156          {
96157            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96158            "in": "query",
96159            "name": "resourceVersionMatch",
96160            "type": "string",
96161            "uniqueItems": true
96162          },
96163          {
96164            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96165            "in": "query",
96166            "name": "timeoutSeconds",
96167            "type": "integer",
96168            "uniqueItems": true
96169          },
96170          {
96171            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96172            "in": "query",
96173            "name": "watch",
96174            "type": "boolean",
96175            "uniqueItems": true
96176          }
96177        ],
96178        "produces": [
96179          "application/json",
96180          "application/yaml",
96181          "application/vnd.kubernetes.protobuf",
96182          "application/json;stream=watch",
96183          "application/vnd.kubernetes.protobuf;stream=watch"
96184        ],
96185        "responses": {
96186          "200": {
96187            "description": "OK",
96188            "schema": {
96189              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleList"
96190            }
96191          },
96192          "401": {
96193            "description": "Unauthorized"
96194          }
96195        },
96196        "schemes": [
96197          "https"
96198        ],
96199        "tags": [
96200          "rbacAuthorization_v1beta1"
96201        ],
96202        "x-kubernetes-action": "list",
96203        "x-kubernetes-group-version-kind": {
96204          "group": "rbac.authorization.k8s.io",
96205          "kind": "Role",
96206          "version": "v1beta1"
96207        }
96208      },
96209      "parameters": [
96210        {
96211          "description": "object name and auth scope, such as for teams and projects",
96212          "in": "path",
96213          "name": "namespace",
96214          "required": true,
96215          "type": "string",
96216          "uniqueItems": true
96217        },
96218        {
96219          "description": "If 'true', then the output is pretty printed.",
96220          "in": "query",
96221          "name": "pretty",
96222          "type": "string",
96223          "uniqueItems": true
96224        }
96225      ],
96226      "post": {
96227        "consumes": [
96228          "*/*"
96229        ],
96230        "description": "create a Role",
96231        "operationId": "createRbacAuthorizationV1beta1NamespacedRole",
96232        "parameters": [
96233          {
96234            "in": "body",
96235            "name": "body",
96236            "required": true,
96237            "schema": {
96238              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96239            }
96240          },
96241          {
96242            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96243            "in": "query",
96244            "name": "dryRun",
96245            "type": "string",
96246            "uniqueItems": true
96247          },
96248          {
96249            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
96250            "in": "query",
96251            "name": "fieldManager",
96252            "type": "string",
96253            "uniqueItems": true
96254          }
96255        ],
96256        "produces": [
96257          "application/json",
96258          "application/yaml",
96259          "application/vnd.kubernetes.protobuf"
96260        ],
96261        "responses": {
96262          "200": {
96263            "description": "OK",
96264            "schema": {
96265              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96266            }
96267          },
96268          "201": {
96269            "description": "Created",
96270            "schema": {
96271              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96272            }
96273          },
96274          "202": {
96275            "description": "Accepted",
96276            "schema": {
96277              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96278            }
96279          },
96280          "401": {
96281            "description": "Unauthorized"
96282          }
96283        },
96284        "schemes": [
96285          "https"
96286        ],
96287        "tags": [
96288          "rbacAuthorization_v1beta1"
96289        ],
96290        "x-kubernetes-action": "post",
96291        "x-kubernetes-group-version-kind": {
96292          "group": "rbac.authorization.k8s.io",
96293          "kind": "Role",
96294          "version": "v1beta1"
96295        }
96296      }
96297    },
96298    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}": {
96299      "delete": {
96300        "consumes": [
96301          "*/*"
96302        ],
96303        "description": "delete a Role",
96304        "operationId": "deleteRbacAuthorizationV1beta1NamespacedRole",
96305        "parameters": [
96306          {
96307            "in": "body",
96308            "name": "body",
96309            "schema": {
96310              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
96311            }
96312          },
96313          {
96314            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96315            "in": "query",
96316            "name": "dryRun",
96317            "type": "string",
96318            "uniqueItems": true
96319          },
96320          {
96321            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
96322            "in": "query",
96323            "name": "gracePeriodSeconds",
96324            "type": "integer",
96325            "uniqueItems": true
96326          },
96327          {
96328            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
96329            "in": "query",
96330            "name": "orphanDependents",
96331            "type": "boolean",
96332            "uniqueItems": true
96333          },
96334          {
96335            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
96336            "in": "query",
96337            "name": "propagationPolicy",
96338            "type": "string",
96339            "uniqueItems": true
96340          }
96341        ],
96342        "produces": [
96343          "application/json",
96344          "application/yaml",
96345          "application/vnd.kubernetes.protobuf"
96346        ],
96347        "responses": {
96348          "200": {
96349            "description": "OK",
96350            "schema": {
96351              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
96352            }
96353          },
96354          "202": {
96355            "description": "Accepted",
96356            "schema": {
96357              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
96358            }
96359          },
96360          "401": {
96361            "description": "Unauthorized"
96362          }
96363        },
96364        "schemes": [
96365          "https"
96366        ],
96367        "tags": [
96368          "rbacAuthorization_v1beta1"
96369        ],
96370        "x-kubernetes-action": "delete",
96371        "x-kubernetes-group-version-kind": {
96372          "group": "rbac.authorization.k8s.io",
96373          "kind": "Role",
96374          "version": "v1beta1"
96375        }
96376      },
96377      "get": {
96378        "consumes": [
96379          "*/*"
96380        ],
96381        "description": "read the specified Role",
96382        "operationId": "readRbacAuthorizationV1beta1NamespacedRole",
96383        "produces": [
96384          "application/json",
96385          "application/yaml",
96386          "application/vnd.kubernetes.protobuf"
96387        ],
96388        "responses": {
96389          "200": {
96390            "description": "OK",
96391            "schema": {
96392              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96393            }
96394          },
96395          "401": {
96396            "description": "Unauthorized"
96397          }
96398        },
96399        "schemes": [
96400          "https"
96401        ],
96402        "tags": [
96403          "rbacAuthorization_v1beta1"
96404        ],
96405        "x-kubernetes-action": "get",
96406        "x-kubernetes-group-version-kind": {
96407          "group": "rbac.authorization.k8s.io",
96408          "kind": "Role",
96409          "version": "v1beta1"
96410        }
96411      },
96412      "parameters": [
96413        {
96414          "description": "name of the Role",
96415          "in": "path",
96416          "name": "name",
96417          "required": true,
96418          "type": "string",
96419          "uniqueItems": true
96420        },
96421        {
96422          "description": "object name and auth scope, such as for teams and projects",
96423          "in": "path",
96424          "name": "namespace",
96425          "required": true,
96426          "type": "string",
96427          "uniqueItems": true
96428        },
96429        {
96430          "description": "If 'true', then the output is pretty printed.",
96431          "in": "query",
96432          "name": "pretty",
96433          "type": "string",
96434          "uniqueItems": true
96435        }
96436      ],
96437      "patch": {
96438        "consumes": [
96439          "application/json-patch+json",
96440          "application/merge-patch+json",
96441          "application/strategic-merge-patch+json",
96442          "application/apply-patch+yaml"
96443        ],
96444        "description": "partially update the specified Role",
96445        "operationId": "patchRbacAuthorizationV1beta1NamespacedRole",
96446        "parameters": [
96447          {
96448            "in": "body",
96449            "name": "body",
96450            "required": true,
96451            "schema": {
96452              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
96453            }
96454          },
96455          {
96456            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96457            "in": "query",
96458            "name": "dryRun",
96459            "type": "string",
96460            "uniqueItems": true
96461          },
96462          {
96463            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
96464            "in": "query",
96465            "name": "fieldManager",
96466            "type": "string",
96467            "uniqueItems": true
96468          },
96469          {
96470            "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.",
96471            "in": "query",
96472            "name": "force",
96473            "type": "boolean",
96474            "uniqueItems": true
96475          }
96476        ],
96477        "produces": [
96478          "application/json",
96479          "application/yaml",
96480          "application/vnd.kubernetes.protobuf"
96481        ],
96482        "responses": {
96483          "200": {
96484            "description": "OK",
96485            "schema": {
96486              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96487            }
96488          },
96489          "401": {
96490            "description": "Unauthorized"
96491          }
96492        },
96493        "schemes": [
96494          "https"
96495        ],
96496        "tags": [
96497          "rbacAuthorization_v1beta1"
96498        ],
96499        "x-kubernetes-action": "patch",
96500        "x-kubernetes-group-version-kind": {
96501          "group": "rbac.authorization.k8s.io",
96502          "kind": "Role",
96503          "version": "v1beta1"
96504        }
96505      },
96506      "put": {
96507        "consumes": [
96508          "*/*"
96509        ],
96510        "description": "replace the specified Role",
96511        "operationId": "replaceRbacAuthorizationV1beta1NamespacedRole",
96512        "parameters": [
96513          {
96514            "in": "body",
96515            "name": "body",
96516            "required": true,
96517            "schema": {
96518              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96519            }
96520          },
96521          {
96522            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96523            "in": "query",
96524            "name": "dryRun",
96525            "type": "string",
96526            "uniqueItems": true
96527          },
96528          {
96529            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
96530            "in": "query",
96531            "name": "fieldManager",
96532            "type": "string",
96533            "uniqueItems": true
96534          }
96535        ],
96536        "produces": [
96537          "application/json",
96538          "application/yaml",
96539          "application/vnd.kubernetes.protobuf"
96540        ],
96541        "responses": {
96542          "200": {
96543            "description": "OK",
96544            "schema": {
96545              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96546            }
96547          },
96548          "201": {
96549            "description": "Created",
96550            "schema": {
96551              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96552            }
96553          },
96554          "401": {
96555            "description": "Unauthorized"
96556          }
96557        },
96558        "schemes": [
96559          "https"
96560        ],
96561        "tags": [
96562          "rbacAuthorization_v1beta1"
96563        ],
96564        "x-kubernetes-action": "put",
96565        "x-kubernetes-group-version-kind": {
96566          "group": "rbac.authorization.k8s.io",
96567          "kind": "Role",
96568          "version": "v1beta1"
96569        }
96570      }
96571    },
96572    "/apis/rbac.authorization.k8s.io/v1beta1/rolebindings": {
96573      "get": {
96574        "consumes": [
96575          "*/*"
96576        ],
96577        "description": "list or watch objects of kind RoleBinding",
96578        "operationId": "listRbacAuthorizationV1beta1RoleBindingForAllNamespaces",
96579        "produces": [
96580          "application/json",
96581          "application/yaml",
96582          "application/vnd.kubernetes.protobuf",
96583          "application/json;stream=watch",
96584          "application/vnd.kubernetes.protobuf;stream=watch"
96585        ],
96586        "responses": {
96587          "200": {
96588            "description": "OK",
96589            "schema": {
96590              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList"
96591            }
96592          },
96593          "401": {
96594            "description": "Unauthorized"
96595          }
96596        },
96597        "schemes": [
96598          "https"
96599        ],
96600        "tags": [
96601          "rbacAuthorization_v1beta1"
96602        ],
96603        "x-kubernetes-action": "list",
96604        "x-kubernetes-group-version-kind": {
96605          "group": "rbac.authorization.k8s.io",
96606          "kind": "RoleBinding",
96607          "version": "v1beta1"
96608        }
96609      },
96610      "parameters": [
96611        {
96612          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96613          "in": "query",
96614          "name": "allowWatchBookmarks",
96615          "type": "boolean",
96616          "uniqueItems": true
96617        },
96618        {
96619          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96620          "in": "query",
96621          "name": "continue",
96622          "type": "string",
96623          "uniqueItems": true
96624        },
96625        {
96626          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96627          "in": "query",
96628          "name": "fieldSelector",
96629          "type": "string",
96630          "uniqueItems": true
96631        },
96632        {
96633          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96634          "in": "query",
96635          "name": "labelSelector",
96636          "type": "string",
96637          "uniqueItems": true
96638        },
96639        {
96640          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96641          "in": "query",
96642          "name": "limit",
96643          "type": "integer",
96644          "uniqueItems": true
96645        },
96646        {
96647          "description": "If 'true', then the output is pretty printed.",
96648          "in": "query",
96649          "name": "pretty",
96650          "type": "string",
96651          "uniqueItems": true
96652        },
96653        {
96654          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96655          "in": "query",
96656          "name": "resourceVersion",
96657          "type": "string",
96658          "uniqueItems": true
96659        },
96660        {
96661          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96662          "in": "query",
96663          "name": "resourceVersionMatch",
96664          "type": "string",
96665          "uniqueItems": true
96666        },
96667        {
96668          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96669          "in": "query",
96670          "name": "timeoutSeconds",
96671          "type": "integer",
96672          "uniqueItems": true
96673        },
96674        {
96675          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96676          "in": "query",
96677          "name": "watch",
96678          "type": "boolean",
96679          "uniqueItems": true
96680        }
96681      ]
96682    },
96683    "/apis/rbac.authorization.k8s.io/v1beta1/roles": {
96684      "get": {
96685        "consumes": [
96686          "*/*"
96687        ],
96688        "description": "list or watch objects of kind Role",
96689        "operationId": "listRbacAuthorizationV1beta1RoleForAllNamespaces",
96690        "produces": [
96691          "application/json",
96692          "application/yaml",
96693          "application/vnd.kubernetes.protobuf",
96694          "application/json;stream=watch",
96695          "application/vnd.kubernetes.protobuf;stream=watch"
96696        ],
96697        "responses": {
96698          "200": {
96699            "description": "OK",
96700            "schema": {
96701              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleList"
96702            }
96703          },
96704          "401": {
96705            "description": "Unauthorized"
96706          }
96707        },
96708        "schemes": [
96709          "https"
96710        ],
96711        "tags": [
96712          "rbacAuthorization_v1beta1"
96713        ],
96714        "x-kubernetes-action": "list",
96715        "x-kubernetes-group-version-kind": {
96716          "group": "rbac.authorization.k8s.io",
96717          "kind": "Role",
96718          "version": "v1beta1"
96719        }
96720      },
96721      "parameters": [
96722        {
96723          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96724          "in": "query",
96725          "name": "allowWatchBookmarks",
96726          "type": "boolean",
96727          "uniqueItems": true
96728        },
96729        {
96730          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96731          "in": "query",
96732          "name": "continue",
96733          "type": "string",
96734          "uniqueItems": true
96735        },
96736        {
96737          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96738          "in": "query",
96739          "name": "fieldSelector",
96740          "type": "string",
96741          "uniqueItems": true
96742        },
96743        {
96744          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96745          "in": "query",
96746          "name": "labelSelector",
96747          "type": "string",
96748          "uniqueItems": true
96749        },
96750        {
96751          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96752          "in": "query",
96753          "name": "limit",
96754          "type": "integer",
96755          "uniqueItems": true
96756        },
96757        {
96758          "description": "If 'true', then the output is pretty printed.",
96759          "in": "query",
96760          "name": "pretty",
96761          "type": "string",
96762          "uniqueItems": true
96763        },
96764        {
96765          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96766          "in": "query",
96767          "name": "resourceVersion",
96768          "type": "string",
96769          "uniqueItems": true
96770        },
96771        {
96772          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96773          "in": "query",
96774          "name": "resourceVersionMatch",
96775          "type": "string",
96776          "uniqueItems": true
96777        },
96778        {
96779          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96780          "in": "query",
96781          "name": "timeoutSeconds",
96782          "type": "integer",
96783          "uniqueItems": true
96784        },
96785        {
96786          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96787          "in": "query",
96788          "name": "watch",
96789          "type": "boolean",
96790          "uniqueItems": true
96791        }
96792      ]
96793    },
96794    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings": {
96795      "get": {
96796        "consumes": [
96797          "*/*"
96798        ],
96799        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
96800        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleBindingList",
96801        "produces": [
96802          "application/json",
96803          "application/yaml",
96804          "application/vnd.kubernetes.protobuf",
96805          "application/json;stream=watch",
96806          "application/vnd.kubernetes.protobuf;stream=watch"
96807        ],
96808        "responses": {
96809          "200": {
96810            "description": "OK",
96811            "schema": {
96812              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96813            }
96814          },
96815          "401": {
96816            "description": "Unauthorized"
96817          }
96818        },
96819        "schemes": [
96820          "https"
96821        ],
96822        "tags": [
96823          "rbacAuthorization_v1beta1"
96824        ],
96825        "x-kubernetes-action": "watchlist",
96826        "x-kubernetes-group-version-kind": {
96827          "group": "rbac.authorization.k8s.io",
96828          "kind": "ClusterRoleBinding",
96829          "version": "v1beta1"
96830        }
96831      },
96832      "parameters": [
96833        {
96834          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96835          "in": "query",
96836          "name": "allowWatchBookmarks",
96837          "type": "boolean",
96838          "uniqueItems": true
96839        },
96840        {
96841          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96842          "in": "query",
96843          "name": "continue",
96844          "type": "string",
96845          "uniqueItems": true
96846        },
96847        {
96848          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96849          "in": "query",
96850          "name": "fieldSelector",
96851          "type": "string",
96852          "uniqueItems": true
96853        },
96854        {
96855          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96856          "in": "query",
96857          "name": "labelSelector",
96858          "type": "string",
96859          "uniqueItems": true
96860        },
96861        {
96862          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96863          "in": "query",
96864          "name": "limit",
96865          "type": "integer",
96866          "uniqueItems": true
96867        },
96868        {
96869          "description": "If 'true', then the output is pretty printed.",
96870          "in": "query",
96871          "name": "pretty",
96872          "type": "string",
96873          "uniqueItems": true
96874        },
96875        {
96876          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96877          "in": "query",
96878          "name": "resourceVersion",
96879          "type": "string",
96880          "uniqueItems": true
96881        },
96882        {
96883          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96884          "in": "query",
96885          "name": "resourceVersionMatch",
96886          "type": "string",
96887          "uniqueItems": true
96888        },
96889        {
96890          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96891          "in": "query",
96892          "name": "timeoutSeconds",
96893          "type": "integer",
96894          "uniqueItems": true
96895        },
96896        {
96897          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96898          "in": "query",
96899          "name": "watch",
96900          "type": "boolean",
96901          "uniqueItems": true
96902        }
96903      ]
96904    },
96905    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/{name}": {
96906      "get": {
96907        "consumes": [
96908          "*/*"
96909        ],
96910        "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.",
96911        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleBinding",
96912        "produces": [
96913          "application/json",
96914          "application/yaml",
96915          "application/vnd.kubernetes.protobuf",
96916          "application/json;stream=watch",
96917          "application/vnd.kubernetes.protobuf;stream=watch"
96918        ],
96919        "responses": {
96920          "200": {
96921            "description": "OK",
96922            "schema": {
96923              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96924            }
96925          },
96926          "401": {
96927            "description": "Unauthorized"
96928          }
96929        },
96930        "schemes": [
96931          "https"
96932        ],
96933        "tags": [
96934          "rbacAuthorization_v1beta1"
96935        ],
96936        "x-kubernetes-action": "watch",
96937        "x-kubernetes-group-version-kind": {
96938          "group": "rbac.authorization.k8s.io",
96939          "kind": "ClusterRoleBinding",
96940          "version": "v1beta1"
96941        }
96942      },
96943      "parameters": [
96944        {
96945          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96946          "in": "query",
96947          "name": "allowWatchBookmarks",
96948          "type": "boolean",
96949          "uniqueItems": true
96950        },
96951        {
96952          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96953          "in": "query",
96954          "name": "continue",
96955          "type": "string",
96956          "uniqueItems": true
96957        },
96958        {
96959          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96960          "in": "query",
96961          "name": "fieldSelector",
96962          "type": "string",
96963          "uniqueItems": true
96964        },
96965        {
96966          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96967          "in": "query",
96968          "name": "labelSelector",
96969          "type": "string",
96970          "uniqueItems": true
96971        },
96972        {
96973          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96974          "in": "query",
96975          "name": "limit",
96976          "type": "integer",
96977          "uniqueItems": true
96978        },
96979        {
96980          "description": "name of the ClusterRoleBinding",
96981          "in": "path",
96982          "name": "name",
96983          "required": true,
96984          "type": "string",
96985          "uniqueItems": true
96986        },
96987        {
96988          "description": "If 'true', then the output is pretty printed.",
96989          "in": "query",
96990          "name": "pretty",
96991          "type": "string",
96992          "uniqueItems": true
96993        },
96994        {
96995          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96996          "in": "query",
96997          "name": "resourceVersion",
96998          "type": "string",
96999          "uniqueItems": true
97000        },
97001        {
97002          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97003          "in": "query",
97004          "name": "resourceVersionMatch",
97005          "type": "string",
97006          "uniqueItems": true
97007        },
97008        {
97009          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97010          "in": "query",
97011          "name": "timeoutSeconds",
97012          "type": "integer",
97013          "uniqueItems": true
97014        },
97015        {
97016          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97017          "in": "query",
97018          "name": "watch",
97019          "type": "boolean",
97020          "uniqueItems": true
97021        }
97022      ]
97023    },
97024    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles": {
97025      "get": {
97026        "consumes": [
97027          "*/*"
97028        ],
97029        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
97030        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleList",
97031        "produces": [
97032          "application/json",
97033          "application/yaml",
97034          "application/vnd.kubernetes.protobuf",
97035          "application/json;stream=watch",
97036          "application/vnd.kubernetes.protobuf;stream=watch"
97037        ],
97038        "responses": {
97039          "200": {
97040            "description": "OK",
97041            "schema": {
97042              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97043            }
97044          },
97045          "401": {
97046            "description": "Unauthorized"
97047          }
97048        },
97049        "schemes": [
97050          "https"
97051        ],
97052        "tags": [
97053          "rbacAuthorization_v1beta1"
97054        ],
97055        "x-kubernetes-action": "watchlist",
97056        "x-kubernetes-group-version-kind": {
97057          "group": "rbac.authorization.k8s.io",
97058          "kind": "ClusterRole",
97059          "version": "v1beta1"
97060        }
97061      },
97062      "parameters": [
97063        {
97064          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97065          "in": "query",
97066          "name": "allowWatchBookmarks",
97067          "type": "boolean",
97068          "uniqueItems": true
97069        },
97070        {
97071          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97072          "in": "query",
97073          "name": "continue",
97074          "type": "string",
97075          "uniqueItems": true
97076        },
97077        {
97078          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97079          "in": "query",
97080          "name": "fieldSelector",
97081          "type": "string",
97082          "uniqueItems": true
97083        },
97084        {
97085          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97086          "in": "query",
97087          "name": "labelSelector",
97088          "type": "string",
97089          "uniqueItems": true
97090        },
97091        {
97092          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97093          "in": "query",
97094          "name": "limit",
97095          "type": "integer",
97096          "uniqueItems": true
97097        },
97098        {
97099          "description": "If 'true', then the output is pretty printed.",
97100          "in": "query",
97101          "name": "pretty",
97102          "type": "string",
97103          "uniqueItems": true
97104        },
97105        {
97106          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97107          "in": "query",
97108          "name": "resourceVersion",
97109          "type": "string",
97110          "uniqueItems": true
97111        },
97112        {
97113          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97114          "in": "query",
97115          "name": "resourceVersionMatch",
97116          "type": "string",
97117          "uniqueItems": true
97118        },
97119        {
97120          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97121          "in": "query",
97122          "name": "timeoutSeconds",
97123          "type": "integer",
97124          "uniqueItems": true
97125        },
97126        {
97127          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97128          "in": "query",
97129          "name": "watch",
97130          "type": "boolean",
97131          "uniqueItems": true
97132        }
97133      ]
97134    },
97135    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/{name}": {
97136      "get": {
97137        "consumes": [
97138          "*/*"
97139        ],
97140        "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.",
97141        "operationId": "watchRbacAuthorizationV1beta1ClusterRole",
97142        "produces": [
97143          "application/json",
97144          "application/yaml",
97145          "application/vnd.kubernetes.protobuf",
97146          "application/json;stream=watch",
97147          "application/vnd.kubernetes.protobuf;stream=watch"
97148        ],
97149        "responses": {
97150          "200": {
97151            "description": "OK",
97152            "schema": {
97153              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97154            }
97155          },
97156          "401": {
97157            "description": "Unauthorized"
97158          }
97159        },
97160        "schemes": [
97161          "https"
97162        ],
97163        "tags": [
97164          "rbacAuthorization_v1beta1"
97165        ],
97166        "x-kubernetes-action": "watch",
97167        "x-kubernetes-group-version-kind": {
97168          "group": "rbac.authorization.k8s.io",
97169          "kind": "ClusterRole",
97170          "version": "v1beta1"
97171        }
97172      },
97173      "parameters": [
97174        {
97175          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97176          "in": "query",
97177          "name": "allowWatchBookmarks",
97178          "type": "boolean",
97179          "uniqueItems": true
97180        },
97181        {
97182          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97183          "in": "query",
97184          "name": "continue",
97185          "type": "string",
97186          "uniqueItems": true
97187        },
97188        {
97189          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97190          "in": "query",
97191          "name": "fieldSelector",
97192          "type": "string",
97193          "uniqueItems": true
97194        },
97195        {
97196          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97197          "in": "query",
97198          "name": "labelSelector",
97199          "type": "string",
97200          "uniqueItems": true
97201        },
97202        {
97203          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97204          "in": "query",
97205          "name": "limit",
97206          "type": "integer",
97207          "uniqueItems": true
97208        },
97209        {
97210          "description": "name of the ClusterRole",
97211          "in": "path",
97212          "name": "name",
97213          "required": true,
97214          "type": "string",
97215          "uniqueItems": true
97216        },
97217        {
97218          "description": "If 'true', then the output is pretty printed.",
97219          "in": "query",
97220          "name": "pretty",
97221          "type": "string",
97222          "uniqueItems": true
97223        },
97224        {
97225          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97226          "in": "query",
97227          "name": "resourceVersion",
97228          "type": "string",
97229          "uniqueItems": true
97230        },
97231        {
97232          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97233          "in": "query",
97234          "name": "resourceVersionMatch",
97235          "type": "string",
97236          "uniqueItems": true
97237        },
97238        {
97239          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97240          "in": "query",
97241          "name": "timeoutSeconds",
97242          "type": "integer",
97243          "uniqueItems": true
97244        },
97245        {
97246          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97247          "in": "query",
97248          "name": "watch",
97249          "type": "boolean",
97250          "uniqueItems": true
97251        }
97252      ]
97253    },
97254    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings": {
97255      "get": {
97256        "consumes": [
97257          "*/*"
97258        ],
97259        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
97260        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleBindingList",
97261        "produces": [
97262          "application/json",
97263          "application/yaml",
97264          "application/vnd.kubernetes.protobuf",
97265          "application/json;stream=watch",
97266          "application/vnd.kubernetes.protobuf;stream=watch"
97267        ],
97268        "responses": {
97269          "200": {
97270            "description": "OK",
97271            "schema": {
97272              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97273            }
97274          },
97275          "401": {
97276            "description": "Unauthorized"
97277          }
97278        },
97279        "schemes": [
97280          "https"
97281        ],
97282        "tags": [
97283          "rbacAuthorization_v1beta1"
97284        ],
97285        "x-kubernetes-action": "watchlist",
97286        "x-kubernetes-group-version-kind": {
97287          "group": "rbac.authorization.k8s.io",
97288          "kind": "RoleBinding",
97289          "version": "v1beta1"
97290        }
97291      },
97292      "parameters": [
97293        {
97294          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97295          "in": "query",
97296          "name": "allowWatchBookmarks",
97297          "type": "boolean",
97298          "uniqueItems": true
97299        },
97300        {
97301          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97302          "in": "query",
97303          "name": "continue",
97304          "type": "string",
97305          "uniqueItems": true
97306        },
97307        {
97308          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97309          "in": "query",
97310          "name": "fieldSelector",
97311          "type": "string",
97312          "uniqueItems": true
97313        },
97314        {
97315          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97316          "in": "query",
97317          "name": "labelSelector",
97318          "type": "string",
97319          "uniqueItems": true
97320        },
97321        {
97322          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97323          "in": "query",
97324          "name": "limit",
97325          "type": "integer",
97326          "uniqueItems": true
97327        },
97328        {
97329          "description": "object name and auth scope, such as for teams and projects",
97330          "in": "path",
97331          "name": "namespace",
97332          "required": true,
97333          "type": "string",
97334          "uniqueItems": true
97335        },
97336        {
97337          "description": "If 'true', then the output is pretty printed.",
97338          "in": "query",
97339          "name": "pretty",
97340          "type": "string",
97341          "uniqueItems": true
97342        },
97343        {
97344          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97345          "in": "query",
97346          "name": "resourceVersion",
97347          "type": "string",
97348          "uniqueItems": true
97349        },
97350        {
97351          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97352          "in": "query",
97353          "name": "resourceVersionMatch",
97354          "type": "string",
97355          "uniqueItems": true
97356        },
97357        {
97358          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97359          "in": "query",
97360          "name": "timeoutSeconds",
97361          "type": "integer",
97362          "uniqueItems": true
97363        },
97364        {
97365          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97366          "in": "query",
97367          "name": "watch",
97368          "type": "boolean",
97369          "uniqueItems": true
97370        }
97371      ]
97372    },
97373    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings/{name}": {
97374      "get": {
97375        "consumes": [
97376          "*/*"
97377        ],
97378        "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.",
97379        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleBinding",
97380        "produces": [
97381          "application/json",
97382          "application/yaml",
97383          "application/vnd.kubernetes.protobuf",
97384          "application/json;stream=watch",
97385          "application/vnd.kubernetes.protobuf;stream=watch"
97386        ],
97387        "responses": {
97388          "200": {
97389            "description": "OK",
97390            "schema": {
97391              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97392            }
97393          },
97394          "401": {
97395            "description": "Unauthorized"
97396          }
97397        },
97398        "schemes": [
97399          "https"
97400        ],
97401        "tags": [
97402          "rbacAuthorization_v1beta1"
97403        ],
97404        "x-kubernetes-action": "watch",
97405        "x-kubernetes-group-version-kind": {
97406          "group": "rbac.authorization.k8s.io",
97407          "kind": "RoleBinding",
97408          "version": "v1beta1"
97409        }
97410      },
97411      "parameters": [
97412        {
97413          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97414          "in": "query",
97415          "name": "allowWatchBookmarks",
97416          "type": "boolean",
97417          "uniqueItems": true
97418        },
97419        {
97420          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97421          "in": "query",
97422          "name": "continue",
97423          "type": "string",
97424          "uniqueItems": true
97425        },
97426        {
97427          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97428          "in": "query",
97429          "name": "fieldSelector",
97430          "type": "string",
97431          "uniqueItems": true
97432        },
97433        {
97434          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97435          "in": "query",
97436          "name": "labelSelector",
97437          "type": "string",
97438          "uniqueItems": true
97439        },
97440        {
97441          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97442          "in": "query",
97443          "name": "limit",
97444          "type": "integer",
97445          "uniqueItems": true
97446        },
97447        {
97448          "description": "name of the RoleBinding",
97449          "in": "path",
97450          "name": "name",
97451          "required": true,
97452          "type": "string",
97453          "uniqueItems": true
97454        },
97455        {
97456          "description": "object name and auth scope, such as for teams and projects",
97457          "in": "path",
97458          "name": "namespace",
97459          "required": true,
97460          "type": "string",
97461          "uniqueItems": true
97462        },
97463        {
97464          "description": "If 'true', then the output is pretty printed.",
97465          "in": "query",
97466          "name": "pretty",
97467          "type": "string",
97468          "uniqueItems": true
97469        },
97470        {
97471          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97472          "in": "query",
97473          "name": "resourceVersion",
97474          "type": "string",
97475          "uniqueItems": true
97476        },
97477        {
97478          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97479          "in": "query",
97480          "name": "resourceVersionMatch",
97481          "type": "string",
97482          "uniqueItems": true
97483        },
97484        {
97485          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97486          "in": "query",
97487          "name": "timeoutSeconds",
97488          "type": "integer",
97489          "uniqueItems": true
97490        },
97491        {
97492          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97493          "in": "query",
97494          "name": "watch",
97495          "type": "boolean",
97496          "uniqueItems": true
97497        }
97498      ]
97499    },
97500    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles": {
97501      "get": {
97502        "consumes": [
97503          "*/*"
97504        ],
97505        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
97506        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleList",
97507        "produces": [
97508          "application/json",
97509          "application/yaml",
97510          "application/vnd.kubernetes.protobuf",
97511          "application/json;stream=watch",
97512          "application/vnd.kubernetes.protobuf;stream=watch"
97513        ],
97514        "responses": {
97515          "200": {
97516            "description": "OK",
97517            "schema": {
97518              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97519            }
97520          },
97521          "401": {
97522            "description": "Unauthorized"
97523          }
97524        },
97525        "schemes": [
97526          "https"
97527        ],
97528        "tags": [
97529          "rbacAuthorization_v1beta1"
97530        ],
97531        "x-kubernetes-action": "watchlist",
97532        "x-kubernetes-group-version-kind": {
97533          "group": "rbac.authorization.k8s.io",
97534          "kind": "Role",
97535          "version": "v1beta1"
97536        }
97537      },
97538      "parameters": [
97539        {
97540          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97541          "in": "query",
97542          "name": "allowWatchBookmarks",
97543          "type": "boolean",
97544          "uniqueItems": true
97545        },
97546        {
97547          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97548          "in": "query",
97549          "name": "continue",
97550          "type": "string",
97551          "uniqueItems": true
97552        },
97553        {
97554          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97555          "in": "query",
97556          "name": "fieldSelector",
97557          "type": "string",
97558          "uniqueItems": true
97559        },
97560        {
97561          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97562          "in": "query",
97563          "name": "labelSelector",
97564          "type": "string",
97565          "uniqueItems": true
97566        },
97567        {
97568          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97569          "in": "query",
97570          "name": "limit",
97571          "type": "integer",
97572          "uniqueItems": true
97573        },
97574        {
97575          "description": "object name and auth scope, such as for teams and projects",
97576          "in": "path",
97577          "name": "namespace",
97578          "required": true,
97579          "type": "string",
97580          "uniqueItems": true
97581        },
97582        {
97583          "description": "If 'true', then the output is pretty printed.",
97584          "in": "query",
97585          "name": "pretty",
97586          "type": "string",
97587          "uniqueItems": true
97588        },
97589        {
97590          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97591          "in": "query",
97592          "name": "resourceVersion",
97593          "type": "string",
97594          "uniqueItems": true
97595        },
97596        {
97597          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97598          "in": "query",
97599          "name": "resourceVersionMatch",
97600          "type": "string",
97601          "uniqueItems": true
97602        },
97603        {
97604          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97605          "in": "query",
97606          "name": "timeoutSeconds",
97607          "type": "integer",
97608          "uniqueItems": true
97609        },
97610        {
97611          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97612          "in": "query",
97613          "name": "watch",
97614          "type": "boolean",
97615          "uniqueItems": true
97616        }
97617      ]
97618    },
97619    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles/{name}": {
97620      "get": {
97621        "consumes": [
97622          "*/*"
97623        ],
97624        "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.",
97625        "operationId": "watchRbacAuthorizationV1beta1NamespacedRole",
97626        "produces": [
97627          "application/json",
97628          "application/yaml",
97629          "application/vnd.kubernetes.protobuf",
97630          "application/json;stream=watch",
97631          "application/vnd.kubernetes.protobuf;stream=watch"
97632        ],
97633        "responses": {
97634          "200": {
97635            "description": "OK",
97636            "schema": {
97637              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97638            }
97639          },
97640          "401": {
97641            "description": "Unauthorized"
97642          }
97643        },
97644        "schemes": [
97645          "https"
97646        ],
97647        "tags": [
97648          "rbacAuthorization_v1beta1"
97649        ],
97650        "x-kubernetes-action": "watch",
97651        "x-kubernetes-group-version-kind": {
97652          "group": "rbac.authorization.k8s.io",
97653          "kind": "Role",
97654          "version": "v1beta1"
97655        }
97656      },
97657      "parameters": [
97658        {
97659          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97660          "in": "query",
97661          "name": "allowWatchBookmarks",
97662          "type": "boolean",
97663          "uniqueItems": true
97664        },
97665        {
97666          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97667          "in": "query",
97668          "name": "continue",
97669          "type": "string",
97670          "uniqueItems": true
97671        },
97672        {
97673          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97674          "in": "query",
97675          "name": "fieldSelector",
97676          "type": "string",
97677          "uniqueItems": true
97678        },
97679        {
97680          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97681          "in": "query",
97682          "name": "labelSelector",
97683          "type": "string",
97684          "uniqueItems": true
97685        },
97686        {
97687          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97688          "in": "query",
97689          "name": "limit",
97690          "type": "integer",
97691          "uniqueItems": true
97692        },
97693        {
97694          "description": "name of the Role",
97695          "in": "path",
97696          "name": "name",
97697          "required": true,
97698          "type": "string",
97699          "uniqueItems": true
97700        },
97701        {
97702          "description": "object name and auth scope, such as for teams and projects",
97703          "in": "path",
97704          "name": "namespace",
97705          "required": true,
97706          "type": "string",
97707          "uniqueItems": true
97708        },
97709        {
97710          "description": "If 'true', then the output is pretty printed.",
97711          "in": "query",
97712          "name": "pretty",
97713          "type": "string",
97714          "uniqueItems": true
97715        },
97716        {
97717          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97718          "in": "query",
97719          "name": "resourceVersion",
97720          "type": "string",
97721          "uniqueItems": true
97722        },
97723        {
97724          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97725          "in": "query",
97726          "name": "resourceVersionMatch",
97727          "type": "string",
97728          "uniqueItems": true
97729        },
97730        {
97731          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97732          "in": "query",
97733          "name": "timeoutSeconds",
97734          "type": "integer",
97735          "uniqueItems": true
97736        },
97737        {
97738          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97739          "in": "query",
97740          "name": "watch",
97741          "type": "boolean",
97742          "uniqueItems": true
97743        }
97744      ]
97745    },
97746    "/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings": {
97747      "get": {
97748        "consumes": [
97749          "*/*"
97750        ],
97751        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
97752        "operationId": "watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces",
97753        "produces": [
97754          "application/json",
97755          "application/yaml",
97756          "application/vnd.kubernetes.protobuf",
97757          "application/json;stream=watch",
97758          "application/vnd.kubernetes.protobuf;stream=watch"
97759        ],
97760        "responses": {
97761          "200": {
97762            "description": "OK",
97763            "schema": {
97764              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97765            }
97766          },
97767          "401": {
97768            "description": "Unauthorized"
97769          }
97770        },
97771        "schemes": [
97772          "https"
97773        ],
97774        "tags": [
97775          "rbacAuthorization_v1beta1"
97776        ],
97777        "x-kubernetes-action": "watchlist",
97778        "x-kubernetes-group-version-kind": {
97779          "group": "rbac.authorization.k8s.io",
97780          "kind": "RoleBinding",
97781          "version": "v1beta1"
97782        }
97783      },
97784      "parameters": [
97785        {
97786          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97787          "in": "query",
97788          "name": "allowWatchBookmarks",
97789          "type": "boolean",
97790          "uniqueItems": true
97791        },
97792        {
97793          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97794          "in": "query",
97795          "name": "continue",
97796          "type": "string",
97797          "uniqueItems": true
97798        },
97799        {
97800          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97801          "in": "query",
97802          "name": "fieldSelector",
97803          "type": "string",
97804          "uniqueItems": true
97805        },
97806        {
97807          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97808          "in": "query",
97809          "name": "labelSelector",
97810          "type": "string",
97811          "uniqueItems": true
97812        },
97813        {
97814          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97815          "in": "query",
97816          "name": "limit",
97817          "type": "integer",
97818          "uniqueItems": true
97819        },
97820        {
97821          "description": "If 'true', then the output is pretty printed.",
97822          "in": "query",
97823          "name": "pretty",
97824          "type": "string",
97825          "uniqueItems": true
97826        },
97827        {
97828          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97829          "in": "query",
97830          "name": "resourceVersion",
97831          "type": "string",
97832          "uniqueItems": true
97833        },
97834        {
97835          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97836          "in": "query",
97837          "name": "resourceVersionMatch",
97838          "type": "string",
97839          "uniqueItems": true
97840        },
97841        {
97842          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97843          "in": "query",
97844          "name": "timeoutSeconds",
97845          "type": "integer",
97846          "uniqueItems": true
97847        },
97848        {
97849          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97850          "in": "query",
97851          "name": "watch",
97852          "type": "boolean",
97853          "uniqueItems": true
97854        }
97855      ]
97856    },
97857    "/apis/rbac.authorization.k8s.io/v1beta1/watch/roles": {
97858      "get": {
97859        "consumes": [
97860          "*/*"
97861        ],
97862        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
97863        "operationId": "watchRbacAuthorizationV1beta1RoleListForAllNamespaces",
97864        "produces": [
97865          "application/json",
97866          "application/yaml",
97867          "application/vnd.kubernetes.protobuf",
97868          "application/json;stream=watch",
97869          "application/vnd.kubernetes.protobuf;stream=watch"
97870        ],
97871        "responses": {
97872          "200": {
97873            "description": "OK",
97874            "schema": {
97875              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97876            }
97877          },
97878          "401": {
97879            "description": "Unauthorized"
97880          }
97881        },
97882        "schemes": [
97883          "https"
97884        ],
97885        "tags": [
97886          "rbacAuthorization_v1beta1"
97887        ],
97888        "x-kubernetes-action": "watchlist",
97889        "x-kubernetes-group-version-kind": {
97890          "group": "rbac.authorization.k8s.io",
97891          "kind": "Role",
97892          "version": "v1beta1"
97893        }
97894      },
97895      "parameters": [
97896        {
97897          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97898          "in": "query",
97899          "name": "allowWatchBookmarks",
97900          "type": "boolean",
97901          "uniqueItems": true
97902        },
97903        {
97904          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97905          "in": "query",
97906          "name": "continue",
97907          "type": "string",
97908          "uniqueItems": true
97909        },
97910        {
97911          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97912          "in": "query",
97913          "name": "fieldSelector",
97914          "type": "string",
97915          "uniqueItems": true
97916        },
97917        {
97918          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97919          "in": "query",
97920          "name": "labelSelector",
97921          "type": "string",
97922          "uniqueItems": true
97923        },
97924        {
97925          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97926          "in": "query",
97927          "name": "limit",
97928          "type": "integer",
97929          "uniqueItems": true
97930        },
97931        {
97932          "description": "If 'true', then the output is pretty printed.",
97933          "in": "query",
97934          "name": "pretty",
97935          "type": "string",
97936          "uniqueItems": true
97937        },
97938        {
97939          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97940          "in": "query",
97941          "name": "resourceVersion",
97942          "type": "string",
97943          "uniqueItems": true
97944        },
97945        {
97946          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97947          "in": "query",
97948          "name": "resourceVersionMatch",
97949          "type": "string",
97950          "uniqueItems": true
97951        },
97952        {
97953          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97954          "in": "query",
97955          "name": "timeoutSeconds",
97956          "type": "integer",
97957          "uniqueItems": true
97958        },
97959        {
97960          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97961          "in": "query",
97962          "name": "watch",
97963          "type": "boolean",
97964          "uniqueItems": true
97965        }
97966      ]
97967    },
97968    "/apis/scheduling.k8s.io/": {
97969      "get": {
97970        "consumes": [
97971          "application/json",
97972          "application/yaml",
97973          "application/vnd.kubernetes.protobuf"
97974        ],
97975        "description": "get information of a group",
97976        "operationId": "getSchedulingAPIGroup",
97977        "produces": [
97978          "application/json",
97979          "application/yaml",
97980          "application/vnd.kubernetes.protobuf"
97981        ],
97982        "responses": {
97983          "200": {
97984            "description": "OK",
97985            "schema": {
97986              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
97987            }
97988          },
97989          "401": {
97990            "description": "Unauthorized"
97991          }
97992        },
97993        "schemes": [
97994          "https"
97995        ],
97996        "tags": [
97997          "scheduling"
97998        ]
97999      }
98000    },
98001    "/apis/scheduling.k8s.io/v1/": {
98002      "get": {
98003        "consumes": [
98004          "application/json",
98005          "application/yaml",
98006          "application/vnd.kubernetes.protobuf"
98007        ],
98008        "description": "get available resources",
98009        "operationId": "getSchedulingV1APIResources",
98010        "produces": [
98011          "application/json",
98012          "application/yaml",
98013          "application/vnd.kubernetes.protobuf"
98014        ],
98015        "responses": {
98016          "200": {
98017            "description": "OK",
98018            "schema": {
98019              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
98020            }
98021          },
98022          "401": {
98023            "description": "Unauthorized"
98024          }
98025        },
98026        "schemes": [
98027          "https"
98028        ],
98029        "tags": [
98030          "scheduling_v1"
98031        ]
98032      }
98033    },
98034    "/apis/scheduling.k8s.io/v1/priorityclasses": {
98035      "delete": {
98036        "consumes": [
98037          "*/*"
98038        ],
98039        "description": "delete collection of PriorityClass",
98040        "operationId": "deleteSchedulingV1CollectionPriorityClass",
98041        "parameters": [
98042          {
98043            "in": "body",
98044            "name": "body",
98045            "schema": {
98046              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98047            }
98048          },
98049          {
98050            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98051            "in": "query",
98052            "name": "continue",
98053            "type": "string",
98054            "uniqueItems": true
98055          },
98056          {
98057            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98058            "in": "query",
98059            "name": "dryRun",
98060            "type": "string",
98061            "uniqueItems": true
98062          },
98063          {
98064            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98065            "in": "query",
98066            "name": "fieldSelector",
98067            "type": "string",
98068            "uniqueItems": true
98069          },
98070          {
98071            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
98072            "in": "query",
98073            "name": "gracePeriodSeconds",
98074            "type": "integer",
98075            "uniqueItems": true
98076          },
98077          {
98078            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98079            "in": "query",
98080            "name": "labelSelector",
98081            "type": "string",
98082            "uniqueItems": true
98083          },
98084          {
98085            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98086            "in": "query",
98087            "name": "limit",
98088            "type": "integer",
98089            "uniqueItems": true
98090          },
98091          {
98092            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
98093            "in": "query",
98094            "name": "orphanDependents",
98095            "type": "boolean",
98096            "uniqueItems": true
98097          },
98098          {
98099            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
98100            "in": "query",
98101            "name": "propagationPolicy",
98102            "type": "string",
98103            "uniqueItems": true
98104          },
98105          {
98106            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98107            "in": "query",
98108            "name": "resourceVersion",
98109            "type": "string",
98110            "uniqueItems": true
98111          },
98112          {
98113            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98114            "in": "query",
98115            "name": "resourceVersionMatch",
98116            "type": "string",
98117            "uniqueItems": true
98118          },
98119          {
98120            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98121            "in": "query",
98122            "name": "timeoutSeconds",
98123            "type": "integer",
98124            "uniqueItems": true
98125          }
98126        ],
98127        "produces": [
98128          "application/json",
98129          "application/yaml",
98130          "application/vnd.kubernetes.protobuf"
98131        ],
98132        "responses": {
98133          "200": {
98134            "description": "OK",
98135            "schema": {
98136              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98137            }
98138          },
98139          "401": {
98140            "description": "Unauthorized"
98141          }
98142        },
98143        "schemes": [
98144          "https"
98145        ],
98146        "tags": [
98147          "scheduling_v1"
98148        ],
98149        "x-kubernetes-action": "deletecollection",
98150        "x-kubernetes-group-version-kind": {
98151          "group": "scheduling.k8s.io",
98152          "kind": "PriorityClass",
98153          "version": "v1"
98154        }
98155      },
98156      "get": {
98157        "consumes": [
98158          "*/*"
98159        ],
98160        "description": "list or watch objects of kind PriorityClass",
98161        "operationId": "listSchedulingV1PriorityClass",
98162        "parameters": [
98163          {
98164            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98165            "in": "query",
98166            "name": "allowWatchBookmarks",
98167            "type": "boolean",
98168            "uniqueItems": true
98169          },
98170          {
98171            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98172            "in": "query",
98173            "name": "continue",
98174            "type": "string",
98175            "uniqueItems": true
98176          },
98177          {
98178            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98179            "in": "query",
98180            "name": "fieldSelector",
98181            "type": "string",
98182            "uniqueItems": true
98183          },
98184          {
98185            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98186            "in": "query",
98187            "name": "labelSelector",
98188            "type": "string",
98189            "uniqueItems": true
98190          },
98191          {
98192            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98193            "in": "query",
98194            "name": "limit",
98195            "type": "integer",
98196            "uniqueItems": true
98197          },
98198          {
98199            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98200            "in": "query",
98201            "name": "resourceVersion",
98202            "type": "string",
98203            "uniqueItems": true
98204          },
98205          {
98206            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98207            "in": "query",
98208            "name": "resourceVersionMatch",
98209            "type": "string",
98210            "uniqueItems": true
98211          },
98212          {
98213            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98214            "in": "query",
98215            "name": "timeoutSeconds",
98216            "type": "integer",
98217            "uniqueItems": true
98218          },
98219          {
98220            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98221            "in": "query",
98222            "name": "watch",
98223            "type": "boolean",
98224            "uniqueItems": true
98225          }
98226        ],
98227        "produces": [
98228          "application/json",
98229          "application/yaml",
98230          "application/vnd.kubernetes.protobuf",
98231          "application/json;stream=watch",
98232          "application/vnd.kubernetes.protobuf;stream=watch"
98233        ],
98234        "responses": {
98235          "200": {
98236            "description": "OK",
98237            "schema": {
98238              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClassList"
98239            }
98240          },
98241          "401": {
98242            "description": "Unauthorized"
98243          }
98244        },
98245        "schemes": [
98246          "https"
98247        ],
98248        "tags": [
98249          "scheduling_v1"
98250        ],
98251        "x-kubernetes-action": "list",
98252        "x-kubernetes-group-version-kind": {
98253          "group": "scheduling.k8s.io",
98254          "kind": "PriorityClass",
98255          "version": "v1"
98256        }
98257      },
98258      "parameters": [
98259        {
98260          "description": "If 'true', then the output is pretty printed.",
98261          "in": "query",
98262          "name": "pretty",
98263          "type": "string",
98264          "uniqueItems": true
98265        }
98266      ],
98267      "post": {
98268        "consumes": [
98269          "*/*"
98270        ],
98271        "description": "create a PriorityClass",
98272        "operationId": "createSchedulingV1PriorityClass",
98273        "parameters": [
98274          {
98275            "in": "body",
98276            "name": "body",
98277            "required": true,
98278            "schema": {
98279              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98280            }
98281          },
98282          {
98283            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98284            "in": "query",
98285            "name": "dryRun",
98286            "type": "string",
98287            "uniqueItems": true
98288          },
98289          {
98290            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98291            "in": "query",
98292            "name": "fieldManager",
98293            "type": "string",
98294            "uniqueItems": true
98295          }
98296        ],
98297        "produces": [
98298          "application/json",
98299          "application/yaml",
98300          "application/vnd.kubernetes.protobuf"
98301        ],
98302        "responses": {
98303          "200": {
98304            "description": "OK",
98305            "schema": {
98306              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98307            }
98308          },
98309          "201": {
98310            "description": "Created",
98311            "schema": {
98312              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98313            }
98314          },
98315          "202": {
98316            "description": "Accepted",
98317            "schema": {
98318              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98319            }
98320          },
98321          "401": {
98322            "description": "Unauthorized"
98323          }
98324        },
98325        "schemes": [
98326          "https"
98327        ],
98328        "tags": [
98329          "scheduling_v1"
98330        ],
98331        "x-kubernetes-action": "post",
98332        "x-kubernetes-group-version-kind": {
98333          "group": "scheduling.k8s.io",
98334          "kind": "PriorityClass",
98335          "version": "v1"
98336        }
98337      }
98338    },
98339    "/apis/scheduling.k8s.io/v1/priorityclasses/{name}": {
98340      "delete": {
98341        "consumes": [
98342          "*/*"
98343        ],
98344        "description": "delete a PriorityClass",
98345        "operationId": "deleteSchedulingV1PriorityClass",
98346        "parameters": [
98347          {
98348            "in": "body",
98349            "name": "body",
98350            "schema": {
98351              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98352            }
98353          },
98354          {
98355            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98356            "in": "query",
98357            "name": "dryRun",
98358            "type": "string",
98359            "uniqueItems": true
98360          },
98361          {
98362            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
98363            "in": "query",
98364            "name": "gracePeriodSeconds",
98365            "type": "integer",
98366            "uniqueItems": true
98367          },
98368          {
98369            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
98370            "in": "query",
98371            "name": "orphanDependents",
98372            "type": "boolean",
98373            "uniqueItems": true
98374          },
98375          {
98376            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
98377            "in": "query",
98378            "name": "propagationPolicy",
98379            "type": "string",
98380            "uniqueItems": true
98381          }
98382        ],
98383        "produces": [
98384          "application/json",
98385          "application/yaml",
98386          "application/vnd.kubernetes.protobuf"
98387        ],
98388        "responses": {
98389          "200": {
98390            "description": "OK",
98391            "schema": {
98392              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98393            }
98394          },
98395          "202": {
98396            "description": "Accepted",
98397            "schema": {
98398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98399            }
98400          },
98401          "401": {
98402            "description": "Unauthorized"
98403          }
98404        },
98405        "schemes": [
98406          "https"
98407        ],
98408        "tags": [
98409          "scheduling_v1"
98410        ],
98411        "x-kubernetes-action": "delete",
98412        "x-kubernetes-group-version-kind": {
98413          "group": "scheduling.k8s.io",
98414          "kind": "PriorityClass",
98415          "version": "v1"
98416        }
98417      },
98418      "get": {
98419        "consumes": [
98420          "*/*"
98421        ],
98422        "description": "read the specified PriorityClass",
98423        "operationId": "readSchedulingV1PriorityClass",
98424        "produces": [
98425          "application/json",
98426          "application/yaml",
98427          "application/vnd.kubernetes.protobuf"
98428        ],
98429        "responses": {
98430          "200": {
98431            "description": "OK",
98432            "schema": {
98433              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98434            }
98435          },
98436          "401": {
98437            "description": "Unauthorized"
98438          }
98439        },
98440        "schemes": [
98441          "https"
98442        ],
98443        "tags": [
98444          "scheduling_v1"
98445        ],
98446        "x-kubernetes-action": "get",
98447        "x-kubernetes-group-version-kind": {
98448          "group": "scheduling.k8s.io",
98449          "kind": "PriorityClass",
98450          "version": "v1"
98451        }
98452      },
98453      "parameters": [
98454        {
98455          "description": "name of the PriorityClass",
98456          "in": "path",
98457          "name": "name",
98458          "required": true,
98459          "type": "string",
98460          "uniqueItems": true
98461        },
98462        {
98463          "description": "If 'true', then the output is pretty printed.",
98464          "in": "query",
98465          "name": "pretty",
98466          "type": "string",
98467          "uniqueItems": true
98468        }
98469      ],
98470      "patch": {
98471        "consumes": [
98472          "application/json-patch+json",
98473          "application/merge-patch+json",
98474          "application/strategic-merge-patch+json",
98475          "application/apply-patch+yaml"
98476        ],
98477        "description": "partially update the specified PriorityClass",
98478        "operationId": "patchSchedulingV1PriorityClass",
98479        "parameters": [
98480          {
98481            "in": "body",
98482            "name": "body",
98483            "required": true,
98484            "schema": {
98485              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
98486            }
98487          },
98488          {
98489            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98490            "in": "query",
98491            "name": "dryRun",
98492            "type": "string",
98493            "uniqueItems": true
98494          },
98495          {
98496            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
98497            "in": "query",
98498            "name": "fieldManager",
98499            "type": "string",
98500            "uniqueItems": true
98501          },
98502          {
98503            "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.",
98504            "in": "query",
98505            "name": "force",
98506            "type": "boolean",
98507            "uniqueItems": true
98508          }
98509        ],
98510        "produces": [
98511          "application/json",
98512          "application/yaml",
98513          "application/vnd.kubernetes.protobuf"
98514        ],
98515        "responses": {
98516          "200": {
98517            "description": "OK",
98518            "schema": {
98519              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98520            }
98521          },
98522          "401": {
98523            "description": "Unauthorized"
98524          }
98525        },
98526        "schemes": [
98527          "https"
98528        ],
98529        "tags": [
98530          "scheduling_v1"
98531        ],
98532        "x-kubernetes-action": "patch",
98533        "x-kubernetes-group-version-kind": {
98534          "group": "scheduling.k8s.io",
98535          "kind": "PriorityClass",
98536          "version": "v1"
98537        }
98538      },
98539      "put": {
98540        "consumes": [
98541          "*/*"
98542        ],
98543        "description": "replace the specified PriorityClass",
98544        "operationId": "replaceSchedulingV1PriorityClass",
98545        "parameters": [
98546          {
98547            "in": "body",
98548            "name": "body",
98549            "required": true,
98550            "schema": {
98551              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98552            }
98553          },
98554          {
98555            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98556            "in": "query",
98557            "name": "dryRun",
98558            "type": "string",
98559            "uniqueItems": true
98560          },
98561          {
98562            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98563            "in": "query",
98564            "name": "fieldManager",
98565            "type": "string",
98566            "uniqueItems": true
98567          }
98568        ],
98569        "produces": [
98570          "application/json",
98571          "application/yaml",
98572          "application/vnd.kubernetes.protobuf"
98573        ],
98574        "responses": {
98575          "200": {
98576            "description": "OK",
98577            "schema": {
98578              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98579            }
98580          },
98581          "201": {
98582            "description": "Created",
98583            "schema": {
98584              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98585            }
98586          },
98587          "401": {
98588            "description": "Unauthorized"
98589          }
98590        },
98591        "schemes": [
98592          "https"
98593        ],
98594        "tags": [
98595          "scheduling_v1"
98596        ],
98597        "x-kubernetes-action": "put",
98598        "x-kubernetes-group-version-kind": {
98599          "group": "scheduling.k8s.io",
98600          "kind": "PriorityClass",
98601          "version": "v1"
98602        }
98603      }
98604    },
98605    "/apis/scheduling.k8s.io/v1/watch/priorityclasses": {
98606      "get": {
98607        "consumes": [
98608          "*/*"
98609        ],
98610        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
98611        "operationId": "watchSchedulingV1PriorityClassList",
98612        "produces": [
98613          "application/json",
98614          "application/yaml",
98615          "application/vnd.kubernetes.protobuf",
98616          "application/json;stream=watch",
98617          "application/vnd.kubernetes.protobuf;stream=watch"
98618        ],
98619        "responses": {
98620          "200": {
98621            "description": "OK",
98622            "schema": {
98623              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
98624            }
98625          },
98626          "401": {
98627            "description": "Unauthorized"
98628          }
98629        },
98630        "schemes": [
98631          "https"
98632        ],
98633        "tags": [
98634          "scheduling_v1"
98635        ],
98636        "x-kubernetes-action": "watchlist",
98637        "x-kubernetes-group-version-kind": {
98638          "group": "scheduling.k8s.io",
98639          "kind": "PriorityClass",
98640          "version": "v1"
98641        }
98642      },
98643      "parameters": [
98644        {
98645          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98646          "in": "query",
98647          "name": "allowWatchBookmarks",
98648          "type": "boolean",
98649          "uniqueItems": true
98650        },
98651        {
98652          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98653          "in": "query",
98654          "name": "continue",
98655          "type": "string",
98656          "uniqueItems": true
98657        },
98658        {
98659          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98660          "in": "query",
98661          "name": "fieldSelector",
98662          "type": "string",
98663          "uniqueItems": true
98664        },
98665        {
98666          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98667          "in": "query",
98668          "name": "labelSelector",
98669          "type": "string",
98670          "uniqueItems": true
98671        },
98672        {
98673          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98674          "in": "query",
98675          "name": "limit",
98676          "type": "integer",
98677          "uniqueItems": true
98678        },
98679        {
98680          "description": "If 'true', then the output is pretty printed.",
98681          "in": "query",
98682          "name": "pretty",
98683          "type": "string",
98684          "uniqueItems": true
98685        },
98686        {
98687          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98688          "in": "query",
98689          "name": "resourceVersion",
98690          "type": "string",
98691          "uniqueItems": true
98692        },
98693        {
98694          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98695          "in": "query",
98696          "name": "resourceVersionMatch",
98697          "type": "string",
98698          "uniqueItems": true
98699        },
98700        {
98701          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98702          "in": "query",
98703          "name": "timeoutSeconds",
98704          "type": "integer",
98705          "uniqueItems": true
98706        },
98707        {
98708          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98709          "in": "query",
98710          "name": "watch",
98711          "type": "boolean",
98712          "uniqueItems": true
98713        }
98714      ]
98715    },
98716    "/apis/scheduling.k8s.io/v1/watch/priorityclasses/{name}": {
98717      "get": {
98718        "consumes": [
98719          "*/*"
98720        ],
98721        "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.",
98722        "operationId": "watchSchedulingV1PriorityClass",
98723        "produces": [
98724          "application/json",
98725          "application/yaml",
98726          "application/vnd.kubernetes.protobuf",
98727          "application/json;stream=watch",
98728          "application/vnd.kubernetes.protobuf;stream=watch"
98729        ],
98730        "responses": {
98731          "200": {
98732            "description": "OK",
98733            "schema": {
98734              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
98735            }
98736          },
98737          "401": {
98738            "description": "Unauthorized"
98739          }
98740        },
98741        "schemes": [
98742          "https"
98743        ],
98744        "tags": [
98745          "scheduling_v1"
98746        ],
98747        "x-kubernetes-action": "watch",
98748        "x-kubernetes-group-version-kind": {
98749          "group": "scheduling.k8s.io",
98750          "kind": "PriorityClass",
98751          "version": "v1"
98752        }
98753      },
98754      "parameters": [
98755        {
98756          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98757          "in": "query",
98758          "name": "allowWatchBookmarks",
98759          "type": "boolean",
98760          "uniqueItems": true
98761        },
98762        {
98763          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98764          "in": "query",
98765          "name": "continue",
98766          "type": "string",
98767          "uniqueItems": true
98768        },
98769        {
98770          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98771          "in": "query",
98772          "name": "fieldSelector",
98773          "type": "string",
98774          "uniqueItems": true
98775        },
98776        {
98777          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98778          "in": "query",
98779          "name": "labelSelector",
98780          "type": "string",
98781          "uniqueItems": true
98782        },
98783        {
98784          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98785          "in": "query",
98786          "name": "limit",
98787          "type": "integer",
98788          "uniqueItems": true
98789        },
98790        {
98791          "description": "name of the PriorityClass",
98792          "in": "path",
98793          "name": "name",
98794          "required": true,
98795          "type": "string",
98796          "uniqueItems": true
98797        },
98798        {
98799          "description": "If 'true', then the output is pretty printed.",
98800          "in": "query",
98801          "name": "pretty",
98802          "type": "string",
98803          "uniqueItems": true
98804        },
98805        {
98806          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98807          "in": "query",
98808          "name": "resourceVersion",
98809          "type": "string",
98810          "uniqueItems": true
98811        },
98812        {
98813          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98814          "in": "query",
98815          "name": "resourceVersionMatch",
98816          "type": "string",
98817          "uniqueItems": true
98818        },
98819        {
98820          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98821          "in": "query",
98822          "name": "timeoutSeconds",
98823          "type": "integer",
98824          "uniqueItems": true
98825        },
98826        {
98827          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98828          "in": "query",
98829          "name": "watch",
98830          "type": "boolean",
98831          "uniqueItems": true
98832        }
98833      ]
98834    },
98835    "/apis/scheduling.k8s.io/v1alpha1/": {
98836      "get": {
98837        "consumes": [
98838          "application/json",
98839          "application/yaml",
98840          "application/vnd.kubernetes.protobuf"
98841        ],
98842        "description": "get available resources",
98843        "operationId": "getSchedulingV1alpha1APIResources",
98844        "produces": [
98845          "application/json",
98846          "application/yaml",
98847          "application/vnd.kubernetes.protobuf"
98848        ],
98849        "responses": {
98850          "200": {
98851            "description": "OK",
98852            "schema": {
98853              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
98854            }
98855          },
98856          "401": {
98857            "description": "Unauthorized"
98858          }
98859        },
98860        "schemes": [
98861          "https"
98862        ],
98863        "tags": [
98864          "scheduling_v1alpha1"
98865        ]
98866      }
98867    },
98868    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses": {
98869      "delete": {
98870        "consumes": [
98871          "*/*"
98872        ],
98873        "description": "delete collection of PriorityClass",
98874        "operationId": "deleteSchedulingV1alpha1CollectionPriorityClass",
98875        "parameters": [
98876          {
98877            "in": "body",
98878            "name": "body",
98879            "schema": {
98880              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98881            }
98882          },
98883          {
98884            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98885            "in": "query",
98886            "name": "continue",
98887            "type": "string",
98888            "uniqueItems": true
98889          },
98890          {
98891            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98892            "in": "query",
98893            "name": "dryRun",
98894            "type": "string",
98895            "uniqueItems": true
98896          },
98897          {
98898            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98899            "in": "query",
98900            "name": "fieldSelector",
98901            "type": "string",
98902            "uniqueItems": true
98903          },
98904          {
98905            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
98906            "in": "query",
98907            "name": "gracePeriodSeconds",
98908            "type": "integer",
98909            "uniqueItems": true
98910          },
98911          {
98912            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98913            "in": "query",
98914            "name": "labelSelector",
98915            "type": "string",
98916            "uniqueItems": true
98917          },
98918          {
98919            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98920            "in": "query",
98921            "name": "limit",
98922            "type": "integer",
98923            "uniqueItems": true
98924          },
98925          {
98926            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
98927            "in": "query",
98928            "name": "orphanDependents",
98929            "type": "boolean",
98930            "uniqueItems": true
98931          },
98932          {
98933            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
98934            "in": "query",
98935            "name": "propagationPolicy",
98936            "type": "string",
98937            "uniqueItems": true
98938          },
98939          {
98940            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98941            "in": "query",
98942            "name": "resourceVersion",
98943            "type": "string",
98944            "uniqueItems": true
98945          },
98946          {
98947            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98948            "in": "query",
98949            "name": "resourceVersionMatch",
98950            "type": "string",
98951            "uniqueItems": true
98952          },
98953          {
98954            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98955            "in": "query",
98956            "name": "timeoutSeconds",
98957            "type": "integer",
98958            "uniqueItems": true
98959          }
98960        ],
98961        "produces": [
98962          "application/json",
98963          "application/yaml",
98964          "application/vnd.kubernetes.protobuf"
98965        ],
98966        "responses": {
98967          "200": {
98968            "description": "OK",
98969            "schema": {
98970              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98971            }
98972          },
98973          "401": {
98974            "description": "Unauthorized"
98975          }
98976        },
98977        "schemes": [
98978          "https"
98979        ],
98980        "tags": [
98981          "scheduling_v1alpha1"
98982        ],
98983        "x-kubernetes-action": "deletecollection",
98984        "x-kubernetes-group-version-kind": {
98985          "group": "scheduling.k8s.io",
98986          "kind": "PriorityClass",
98987          "version": "v1alpha1"
98988        }
98989      },
98990      "get": {
98991        "consumes": [
98992          "*/*"
98993        ],
98994        "description": "list or watch objects of kind PriorityClass",
98995        "operationId": "listSchedulingV1alpha1PriorityClass",
98996        "parameters": [
98997          {
98998            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98999            "in": "query",
99000            "name": "allowWatchBookmarks",
99001            "type": "boolean",
99002            "uniqueItems": true
99003          },
99004          {
99005            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99006            "in": "query",
99007            "name": "continue",
99008            "type": "string",
99009            "uniqueItems": true
99010          },
99011          {
99012            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99013            "in": "query",
99014            "name": "fieldSelector",
99015            "type": "string",
99016            "uniqueItems": true
99017          },
99018          {
99019            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99020            "in": "query",
99021            "name": "labelSelector",
99022            "type": "string",
99023            "uniqueItems": true
99024          },
99025          {
99026            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99027            "in": "query",
99028            "name": "limit",
99029            "type": "integer",
99030            "uniqueItems": true
99031          },
99032          {
99033            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99034            "in": "query",
99035            "name": "resourceVersion",
99036            "type": "string",
99037            "uniqueItems": true
99038          },
99039          {
99040            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99041            "in": "query",
99042            "name": "resourceVersionMatch",
99043            "type": "string",
99044            "uniqueItems": true
99045          },
99046          {
99047            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99048            "in": "query",
99049            "name": "timeoutSeconds",
99050            "type": "integer",
99051            "uniqueItems": true
99052          },
99053          {
99054            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99055            "in": "query",
99056            "name": "watch",
99057            "type": "boolean",
99058            "uniqueItems": true
99059          }
99060        ],
99061        "produces": [
99062          "application/json",
99063          "application/yaml",
99064          "application/vnd.kubernetes.protobuf",
99065          "application/json;stream=watch",
99066          "application/vnd.kubernetes.protobuf;stream=watch"
99067        ],
99068        "responses": {
99069          "200": {
99070            "description": "OK",
99071            "schema": {
99072              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClassList"
99073            }
99074          },
99075          "401": {
99076            "description": "Unauthorized"
99077          }
99078        },
99079        "schemes": [
99080          "https"
99081        ],
99082        "tags": [
99083          "scheduling_v1alpha1"
99084        ],
99085        "x-kubernetes-action": "list",
99086        "x-kubernetes-group-version-kind": {
99087          "group": "scheduling.k8s.io",
99088          "kind": "PriorityClass",
99089          "version": "v1alpha1"
99090        }
99091      },
99092      "parameters": [
99093        {
99094          "description": "If 'true', then the output is pretty printed.",
99095          "in": "query",
99096          "name": "pretty",
99097          "type": "string",
99098          "uniqueItems": true
99099        }
99100      ],
99101      "post": {
99102        "consumes": [
99103          "*/*"
99104        ],
99105        "description": "create a PriorityClass",
99106        "operationId": "createSchedulingV1alpha1PriorityClass",
99107        "parameters": [
99108          {
99109            "in": "body",
99110            "name": "body",
99111            "required": true,
99112            "schema": {
99113              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99114            }
99115          },
99116          {
99117            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99118            "in": "query",
99119            "name": "dryRun",
99120            "type": "string",
99121            "uniqueItems": true
99122          },
99123          {
99124            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99125            "in": "query",
99126            "name": "fieldManager",
99127            "type": "string",
99128            "uniqueItems": true
99129          }
99130        ],
99131        "produces": [
99132          "application/json",
99133          "application/yaml",
99134          "application/vnd.kubernetes.protobuf"
99135        ],
99136        "responses": {
99137          "200": {
99138            "description": "OK",
99139            "schema": {
99140              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99141            }
99142          },
99143          "201": {
99144            "description": "Created",
99145            "schema": {
99146              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99147            }
99148          },
99149          "202": {
99150            "description": "Accepted",
99151            "schema": {
99152              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99153            }
99154          },
99155          "401": {
99156            "description": "Unauthorized"
99157          }
99158        },
99159        "schemes": [
99160          "https"
99161        ],
99162        "tags": [
99163          "scheduling_v1alpha1"
99164        ],
99165        "x-kubernetes-action": "post",
99166        "x-kubernetes-group-version-kind": {
99167          "group": "scheduling.k8s.io",
99168          "kind": "PriorityClass",
99169          "version": "v1alpha1"
99170        }
99171      }
99172    },
99173    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}": {
99174      "delete": {
99175        "consumes": [
99176          "*/*"
99177        ],
99178        "description": "delete a PriorityClass",
99179        "operationId": "deleteSchedulingV1alpha1PriorityClass",
99180        "parameters": [
99181          {
99182            "in": "body",
99183            "name": "body",
99184            "schema": {
99185              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
99186            }
99187          },
99188          {
99189            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99190            "in": "query",
99191            "name": "dryRun",
99192            "type": "string",
99193            "uniqueItems": true
99194          },
99195          {
99196            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
99197            "in": "query",
99198            "name": "gracePeriodSeconds",
99199            "type": "integer",
99200            "uniqueItems": true
99201          },
99202          {
99203            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
99204            "in": "query",
99205            "name": "orphanDependents",
99206            "type": "boolean",
99207            "uniqueItems": true
99208          },
99209          {
99210            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
99211            "in": "query",
99212            "name": "propagationPolicy",
99213            "type": "string",
99214            "uniqueItems": true
99215          }
99216        ],
99217        "produces": [
99218          "application/json",
99219          "application/yaml",
99220          "application/vnd.kubernetes.protobuf"
99221        ],
99222        "responses": {
99223          "200": {
99224            "description": "OK",
99225            "schema": {
99226              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99227            }
99228          },
99229          "202": {
99230            "description": "Accepted",
99231            "schema": {
99232              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99233            }
99234          },
99235          "401": {
99236            "description": "Unauthorized"
99237          }
99238        },
99239        "schemes": [
99240          "https"
99241        ],
99242        "tags": [
99243          "scheduling_v1alpha1"
99244        ],
99245        "x-kubernetes-action": "delete",
99246        "x-kubernetes-group-version-kind": {
99247          "group": "scheduling.k8s.io",
99248          "kind": "PriorityClass",
99249          "version": "v1alpha1"
99250        }
99251      },
99252      "get": {
99253        "consumes": [
99254          "*/*"
99255        ],
99256        "description": "read the specified PriorityClass",
99257        "operationId": "readSchedulingV1alpha1PriorityClass",
99258        "produces": [
99259          "application/json",
99260          "application/yaml",
99261          "application/vnd.kubernetes.protobuf"
99262        ],
99263        "responses": {
99264          "200": {
99265            "description": "OK",
99266            "schema": {
99267              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99268            }
99269          },
99270          "401": {
99271            "description": "Unauthorized"
99272          }
99273        },
99274        "schemes": [
99275          "https"
99276        ],
99277        "tags": [
99278          "scheduling_v1alpha1"
99279        ],
99280        "x-kubernetes-action": "get",
99281        "x-kubernetes-group-version-kind": {
99282          "group": "scheduling.k8s.io",
99283          "kind": "PriorityClass",
99284          "version": "v1alpha1"
99285        }
99286      },
99287      "parameters": [
99288        {
99289          "description": "name of the PriorityClass",
99290          "in": "path",
99291          "name": "name",
99292          "required": true,
99293          "type": "string",
99294          "uniqueItems": true
99295        },
99296        {
99297          "description": "If 'true', then the output is pretty printed.",
99298          "in": "query",
99299          "name": "pretty",
99300          "type": "string",
99301          "uniqueItems": true
99302        }
99303      ],
99304      "patch": {
99305        "consumes": [
99306          "application/json-patch+json",
99307          "application/merge-patch+json",
99308          "application/strategic-merge-patch+json",
99309          "application/apply-patch+yaml"
99310        ],
99311        "description": "partially update the specified PriorityClass",
99312        "operationId": "patchSchedulingV1alpha1PriorityClass",
99313        "parameters": [
99314          {
99315            "in": "body",
99316            "name": "body",
99317            "required": true,
99318            "schema": {
99319              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
99320            }
99321          },
99322          {
99323            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99324            "in": "query",
99325            "name": "dryRun",
99326            "type": "string",
99327            "uniqueItems": true
99328          },
99329          {
99330            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
99331            "in": "query",
99332            "name": "fieldManager",
99333            "type": "string",
99334            "uniqueItems": true
99335          },
99336          {
99337            "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.",
99338            "in": "query",
99339            "name": "force",
99340            "type": "boolean",
99341            "uniqueItems": true
99342          }
99343        ],
99344        "produces": [
99345          "application/json",
99346          "application/yaml",
99347          "application/vnd.kubernetes.protobuf"
99348        ],
99349        "responses": {
99350          "200": {
99351            "description": "OK",
99352            "schema": {
99353              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99354            }
99355          },
99356          "401": {
99357            "description": "Unauthorized"
99358          }
99359        },
99360        "schemes": [
99361          "https"
99362        ],
99363        "tags": [
99364          "scheduling_v1alpha1"
99365        ],
99366        "x-kubernetes-action": "patch",
99367        "x-kubernetes-group-version-kind": {
99368          "group": "scheduling.k8s.io",
99369          "kind": "PriorityClass",
99370          "version": "v1alpha1"
99371        }
99372      },
99373      "put": {
99374        "consumes": [
99375          "*/*"
99376        ],
99377        "description": "replace the specified PriorityClass",
99378        "operationId": "replaceSchedulingV1alpha1PriorityClass",
99379        "parameters": [
99380          {
99381            "in": "body",
99382            "name": "body",
99383            "required": true,
99384            "schema": {
99385              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99386            }
99387          },
99388          {
99389            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99390            "in": "query",
99391            "name": "dryRun",
99392            "type": "string",
99393            "uniqueItems": true
99394          },
99395          {
99396            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99397            "in": "query",
99398            "name": "fieldManager",
99399            "type": "string",
99400            "uniqueItems": true
99401          }
99402        ],
99403        "produces": [
99404          "application/json",
99405          "application/yaml",
99406          "application/vnd.kubernetes.protobuf"
99407        ],
99408        "responses": {
99409          "200": {
99410            "description": "OK",
99411            "schema": {
99412              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99413            }
99414          },
99415          "201": {
99416            "description": "Created",
99417            "schema": {
99418              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99419            }
99420          },
99421          "401": {
99422            "description": "Unauthorized"
99423          }
99424        },
99425        "schemes": [
99426          "https"
99427        ],
99428        "tags": [
99429          "scheduling_v1alpha1"
99430        ],
99431        "x-kubernetes-action": "put",
99432        "x-kubernetes-group-version-kind": {
99433          "group": "scheduling.k8s.io",
99434          "kind": "PriorityClass",
99435          "version": "v1alpha1"
99436        }
99437      }
99438    },
99439    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses": {
99440      "get": {
99441        "consumes": [
99442          "*/*"
99443        ],
99444        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
99445        "operationId": "watchSchedulingV1alpha1PriorityClassList",
99446        "produces": [
99447          "application/json",
99448          "application/yaml",
99449          "application/vnd.kubernetes.protobuf",
99450          "application/json;stream=watch",
99451          "application/vnd.kubernetes.protobuf;stream=watch"
99452        ],
99453        "responses": {
99454          "200": {
99455            "description": "OK",
99456            "schema": {
99457              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
99458            }
99459          },
99460          "401": {
99461            "description": "Unauthorized"
99462          }
99463        },
99464        "schemes": [
99465          "https"
99466        ],
99467        "tags": [
99468          "scheduling_v1alpha1"
99469        ],
99470        "x-kubernetes-action": "watchlist",
99471        "x-kubernetes-group-version-kind": {
99472          "group": "scheduling.k8s.io",
99473          "kind": "PriorityClass",
99474          "version": "v1alpha1"
99475        }
99476      },
99477      "parameters": [
99478        {
99479          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
99480          "in": "query",
99481          "name": "allowWatchBookmarks",
99482          "type": "boolean",
99483          "uniqueItems": true
99484        },
99485        {
99486          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99487          "in": "query",
99488          "name": "continue",
99489          "type": "string",
99490          "uniqueItems": true
99491        },
99492        {
99493          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99494          "in": "query",
99495          "name": "fieldSelector",
99496          "type": "string",
99497          "uniqueItems": true
99498        },
99499        {
99500          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99501          "in": "query",
99502          "name": "labelSelector",
99503          "type": "string",
99504          "uniqueItems": true
99505        },
99506        {
99507          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99508          "in": "query",
99509          "name": "limit",
99510          "type": "integer",
99511          "uniqueItems": true
99512        },
99513        {
99514          "description": "If 'true', then the output is pretty printed.",
99515          "in": "query",
99516          "name": "pretty",
99517          "type": "string",
99518          "uniqueItems": true
99519        },
99520        {
99521          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99522          "in": "query",
99523          "name": "resourceVersion",
99524          "type": "string",
99525          "uniqueItems": true
99526        },
99527        {
99528          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99529          "in": "query",
99530          "name": "resourceVersionMatch",
99531          "type": "string",
99532          "uniqueItems": true
99533        },
99534        {
99535          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99536          "in": "query",
99537          "name": "timeoutSeconds",
99538          "type": "integer",
99539          "uniqueItems": true
99540        },
99541        {
99542          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99543          "in": "query",
99544          "name": "watch",
99545          "type": "boolean",
99546          "uniqueItems": true
99547        }
99548      ]
99549    },
99550    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/{name}": {
99551      "get": {
99552        "consumes": [
99553          "*/*"
99554        ],
99555        "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.",
99556        "operationId": "watchSchedulingV1alpha1PriorityClass",
99557        "produces": [
99558          "application/json",
99559          "application/yaml",
99560          "application/vnd.kubernetes.protobuf",
99561          "application/json;stream=watch",
99562          "application/vnd.kubernetes.protobuf;stream=watch"
99563        ],
99564        "responses": {
99565          "200": {
99566            "description": "OK",
99567            "schema": {
99568              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
99569            }
99570          },
99571          "401": {
99572            "description": "Unauthorized"
99573          }
99574        },
99575        "schemes": [
99576          "https"
99577        ],
99578        "tags": [
99579          "scheduling_v1alpha1"
99580        ],
99581        "x-kubernetes-action": "watch",
99582        "x-kubernetes-group-version-kind": {
99583          "group": "scheduling.k8s.io",
99584          "kind": "PriorityClass",
99585          "version": "v1alpha1"
99586        }
99587      },
99588      "parameters": [
99589        {
99590          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
99591          "in": "query",
99592          "name": "allowWatchBookmarks",
99593          "type": "boolean",
99594          "uniqueItems": true
99595        },
99596        {
99597          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99598          "in": "query",
99599          "name": "continue",
99600          "type": "string",
99601          "uniqueItems": true
99602        },
99603        {
99604          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99605          "in": "query",
99606          "name": "fieldSelector",
99607          "type": "string",
99608          "uniqueItems": true
99609        },
99610        {
99611          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99612          "in": "query",
99613          "name": "labelSelector",
99614          "type": "string",
99615          "uniqueItems": true
99616        },
99617        {
99618          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99619          "in": "query",
99620          "name": "limit",
99621          "type": "integer",
99622          "uniqueItems": true
99623        },
99624        {
99625          "description": "name of the PriorityClass",
99626          "in": "path",
99627          "name": "name",
99628          "required": true,
99629          "type": "string",
99630          "uniqueItems": true
99631        },
99632        {
99633          "description": "If 'true', then the output is pretty printed.",
99634          "in": "query",
99635          "name": "pretty",
99636          "type": "string",
99637          "uniqueItems": true
99638        },
99639        {
99640          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99641          "in": "query",
99642          "name": "resourceVersion",
99643          "type": "string",
99644          "uniqueItems": true
99645        },
99646        {
99647          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99648          "in": "query",
99649          "name": "resourceVersionMatch",
99650          "type": "string",
99651          "uniqueItems": true
99652        },
99653        {
99654          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99655          "in": "query",
99656          "name": "timeoutSeconds",
99657          "type": "integer",
99658          "uniqueItems": true
99659        },
99660        {
99661          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99662          "in": "query",
99663          "name": "watch",
99664          "type": "boolean",
99665          "uniqueItems": true
99666        }
99667      ]
99668    },
99669    "/apis/scheduling.k8s.io/v1beta1/": {
99670      "get": {
99671        "consumes": [
99672          "application/json",
99673          "application/yaml",
99674          "application/vnd.kubernetes.protobuf"
99675        ],
99676        "description": "get available resources",
99677        "operationId": "getSchedulingV1beta1APIResources",
99678        "produces": [
99679          "application/json",
99680          "application/yaml",
99681          "application/vnd.kubernetes.protobuf"
99682        ],
99683        "responses": {
99684          "200": {
99685            "description": "OK",
99686            "schema": {
99687              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
99688            }
99689          },
99690          "401": {
99691            "description": "Unauthorized"
99692          }
99693        },
99694        "schemes": [
99695          "https"
99696        ],
99697        "tags": [
99698          "scheduling_v1beta1"
99699        ]
99700      }
99701    },
99702    "/apis/scheduling.k8s.io/v1beta1/priorityclasses": {
99703      "delete": {
99704        "consumes": [
99705          "*/*"
99706        ],
99707        "description": "delete collection of PriorityClass",
99708        "operationId": "deleteSchedulingV1beta1CollectionPriorityClass",
99709        "parameters": [
99710          {
99711            "in": "body",
99712            "name": "body",
99713            "schema": {
99714              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
99715            }
99716          },
99717          {
99718            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99719            "in": "query",
99720            "name": "continue",
99721            "type": "string",
99722            "uniqueItems": true
99723          },
99724          {
99725            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99726            "in": "query",
99727            "name": "dryRun",
99728            "type": "string",
99729            "uniqueItems": true
99730          },
99731          {
99732            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99733            "in": "query",
99734            "name": "fieldSelector",
99735            "type": "string",
99736            "uniqueItems": true
99737          },
99738          {
99739            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
99740            "in": "query",
99741            "name": "gracePeriodSeconds",
99742            "type": "integer",
99743            "uniqueItems": true
99744          },
99745          {
99746            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99747            "in": "query",
99748            "name": "labelSelector",
99749            "type": "string",
99750            "uniqueItems": true
99751          },
99752          {
99753            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99754            "in": "query",
99755            "name": "limit",
99756            "type": "integer",
99757            "uniqueItems": true
99758          },
99759          {
99760            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
99761            "in": "query",
99762            "name": "orphanDependents",
99763            "type": "boolean",
99764            "uniqueItems": true
99765          },
99766          {
99767            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
99768            "in": "query",
99769            "name": "propagationPolicy",
99770            "type": "string",
99771            "uniqueItems": true
99772          },
99773          {
99774            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99775            "in": "query",
99776            "name": "resourceVersion",
99777            "type": "string",
99778            "uniqueItems": true
99779          },
99780          {
99781            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99782            "in": "query",
99783            "name": "resourceVersionMatch",
99784            "type": "string",
99785            "uniqueItems": true
99786          },
99787          {
99788            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99789            "in": "query",
99790            "name": "timeoutSeconds",
99791            "type": "integer",
99792            "uniqueItems": true
99793          }
99794        ],
99795        "produces": [
99796          "application/json",
99797          "application/yaml",
99798          "application/vnd.kubernetes.protobuf"
99799        ],
99800        "responses": {
99801          "200": {
99802            "description": "OK",
99803            "schema": {
99804              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99805            }
99806          },
99807          "401": {
99808            "description": "Unauthorized"
99809          }
99810        },
99811        "schemes": [
99812          "https"
99813        ],
99814        "tags": [
99815          "scheduling_v1beta1"
99816        ],
99817        "x-kubernetes-action": "deletecollection",
99818        "x-kubernetes-group-version-kind": {
99819          "group": "scheduling.k8s.io",
99820          "kind": "PriorityClass",
99821          "version": "v1beta1"
99822        }
99823      },
99824      "get": {
99825        "consumes": [
99826          "*/*"
99827        ],
99828        "description": "list or watch objects of kind PriorityClass",
99829        "operationId": "listSchedulingV1beta1PriorityClass",
99830        "parameters": [
99831          {
99832            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
99833            "in": "query",
99834            "name": "allowWatchBookmarks",
99835            "type": "boolean",
99836            "uniqueItems": true
99837          },
99838          {
99839            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99840            "in": "query",
99841            "name": "continue",
99842            "type": "string",
99843            "uniqueItems": true
99844          },
99845          {
99846            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99847            "in": "query",
99848            "name": "fieldSelector",
99849            "type": "string",
99850            "uniqueItems": true
99851          },
99852          {
99853            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99854            "in": "query",
99855            "name": "labelSelector",
99856            "type": "string",
99857            "uniqueItems": true
99858          },
99859          {
99860            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99861            "in": "query",
99862            "name": "limit",
99863            "type": "integer",
99864            "uniqueItems": true
99865          },
99866          {
99867            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99868            "in": "query",
99869            "name": "resourceVersion",
99870            "type": "string",
99871            "uniqueItems": true
99872          },
99873          {
99874            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99875            "in": "query",
99876            "name": "resourceVersionMatch",
99877            "type": "string",
99878            "uniqueItems": true
99879          },
99880          {
99881            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99882            "in": "query",
99883            "name": "timeoutSeconds",
99884            "type": "integer",
99885            "uniqueItems": true
99886          },
99887          {
99888            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99889            "in": "query",
99890            "name": "watch",
99891            "type": "boolean",
99892            "uniqueItems": true
99893          }
99894        ],
99895        "produces": [
99896          "application/json",
99897          "application/yaml",
99898          "application/vnd.kubernetes.protobuf",
99899          "application/json;stream=watch",
99900          "application/vnd.kubernetes.protobuf;stream=watch"
99901        ],
99902        "responses": {
99903          "200": {
99904            "description": "OK",
99905            "schema": {
99906              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClassList"
99907            }
99908          },
99909          "401": {
99910            "description": "Unauthorized"
99911          }
99912        },
99913        "schemes": [
99914          "https"
99915        ],
99916        "tags": [
99917          "scheduling_v1beta1"
99918        ],
99919        "x-kubernetes-action": "list",
99920        "x-kubernetes-group-version-kind": {
99921          "group": "scheduling.k8s.io",
99922          "kind": "PriorityClass",
99923          "version": "v1beta1"
99924        }
99925      },
99926      "parameters": [
99927        {
99928          "description": "If 'true', then the output is pretty printed.",
99929          "in": "query",
99930          "name": "pretty",
99931          "type": "string",
99932          "uniqueItems": true
99933        }
99934      ],
99935      "post": {
99936        "consumes": [
99937          "*/*"
99938        ],
99939        "description": "create a PriorityClass",
99940        "operationId": "createSchedulingV1beta1PriorityClass",
99941        "parameters": [
99942          {
99943            "in": "body",
99944            "name": "body",
99945            "required": true,
99946            "schema": {
99947              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99948            }
99949          },
99950          {
99951            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99952            "in": "query",
99953            "name": "dryRun",
99954            "type": "string",
99955            "uniqueItems": true
99956          },
99957          {
99958            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99959            "in": "query",
99960            "name": "fieldManager",
99961            "type": "string",
99962            "uniqueItems": true
99963          }
99964        ],
99965        "produces": [
99966          "application/json",
99967          "application/yaml",
99968          "application/vnd.kubernetes.protobuf"
99969        ],
99970        "responses": {
99971          "200": {
99972            "description": "OK",
99973            "schema": {
99974              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99975            }
99976          },
99977          "201": {
99978            "description": "Created",
99979            "schema": {
99980              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99981            }
99982          },
99983          "202": {
99984            "description": "Accepted",
99985            "schema": {
99986              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99987            }
99988          },
99989          "401": {
99990            "description": "Unauthorized"
99991          }
99992        },
99993        "schemes": [
99994          "https"
99995        ],
99996        "tags": [
99997          "scheduling_v1beta1"
99998        ],
99999        "x-kubernetes-action": "post",
100000        "x-kubernetes-group-version-kind": {
100001          "group": "scheduling.k8s.io",
100002          "kind": "PriorityClass",
100003          "version": "v1beta1"
100004        }
100005      }
100006    },
100007    "/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}": {
100008      "delete": {
100009        "consumes": [
100010          "*/*"
100011        ],
100012        "description": "delete a PriorityClass",
100013        "operationId": "deleteSchedulingV1beta1PriorityClass",
100014        "parameters": [
100015          {
100016            "in": "body",
100017            "name": "body",
100018            "schema": {
100019              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
100020            }
100021          },
100022          {
100023            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100024            "in": "query",
100025            "name": "dryRun",
100026            "type": "string",
100027            "uniqueItems": true
100028          },
100029          {
100030            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
100031            "in": "query",
100032            "name": "gracePeriodSeconds",
100033            "type": "integer",
100034            "uniqueItems": true
100035          },
100036          {
100037            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
100038            "in": "query",
100039            "name": "orphanDependents",
100040            "type": "boolean",
100041            "uniqueItems": true
100042          },
100043          {
100044            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
100045            "in": "query",
100046            "name": "propagationPolicy",
100047            "type": "string",
100048            "uniqueItems": true
100049          }
100050        ],
100051        "produces": [
100052          "application/json",
100053          "application/yaml",
100054          "application/vnd.kubernetes.protobuf"
100055        ],
100056        "responses": {
100057          "200": {
100058            "description": "OK",
100059            "schema": {
100060              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
100061            }
100062          },
100063          "202": {
100064            "description": "Accepted",
100065            "schema": {
100066              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
100067            }
100068          },
100069          "401": {
100070            "description": "Unauthorized"
100071          }
100072        },
100073        "schemes": [
100074          "https"
100075        ],
100076        "tags": [
100077          "scheduling_v1beta1"
100078        ],
100079        "x-kubernetes-action": "delete",
100080        "x-kubernetes-group-version-kind": {
100081          "group": "scheduling.k8s.io",
100082          "kind": "PriorityClass",
100083          "version": "v1beta1"
100084        }
100085      },
100086      "get": {
100087        "consumes": [
100088          "*/*"
100089        ],
100090        "description": "read the specified PriorityClass",
100091        "operationId": "readSchedulingV1beta1PriorityClass",
100092        "produces": [
100093          "application/json",
100094          "application/yaml",
100095          "application/vnd.kubernetes.protobuf"
100096        ],
100097        "responses": {
100098          "200": {
100099            "description": "OK",
100100            "schema": {
100101              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100102            }
100103          },
100104          "401": {
100105            "description": "Unauthorized"
100106          }
100107        },
100108        "schemes": [
100109          "https"
100110        ],
100111        "tags": [
100112          "scheduling_v1beta1"
100113        ],
100114        "x-kubernetes-action": "get",
100115        "x-kubernetes-group-version-kind": {
100116          "group": "scheduling.k8s.io",
100117          "kind": "PriorityClass",
100118          "version": "v1beta1"
100119        }
100120      },
100121      "parameters": [
100122        {
100123          "description": "name of the PriorityClass",
100124          "in": "path",
100125          "name": "name",
100126          "required": true,
100127          "type": "string",
100128          "uniqueItems": true
100129        },
100130        {
100131          "description": "If 'true', then the output is pretty printed.",
100132          "in": "query",
100133          "name": "pretty",
100134          "type": "string",
100135          "uniqueItems": true
100136        }
100137      ],
100138      "patch": {
100139        "consumes": [
100140          "application/json-patch+json",
100141          "application/merge-patch+json",
100142          "application/strategic-merge-patch+json",
100143          "application/apply-patch+yaml"
100144        ],
100145        "description": "partially update the specified PriorityClass",
100146        "operationId": "patchSchedulingV1beta1PriorityClass",
100147        "parameters": [
100148          {
100149            "in": "body",
100150            "name": "body",
100151            "required": true,
100152            "schema": {
100153              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
100154            }
100155          },
100156          {
100157            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100158            "in": "query",
100159            "name": "dryRun",
100160            "type": "string",
100161            "uniqueItems": true
100162          },
100163          {
100164            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
100165            "in": "query",
100166            "name": "fieldManager",
100167            "type": "string",
100168            "uniqueItems": true
100169          },
100170          {
100171            "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.",
100172            "in": "query",
100173            "name": "force",
100174            "type": "boolean",
100175            "uniqueItems": true
100176          }
100177        ],
100178        "produces": [
100179          "application/json",
100180          "application/yaml",
100181          "application/vnd.kubernetes.protobuf"
100182        ],
100183        "responses": {
100184          "200": {
100185            "description": "OK",
100186            "schema": {
100187              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100188            }
100189          },
100190          "401": {
100191            "description": "Unauthorized"
100192          }
100193        },
100194        "schemes": [
100195          "https"
100196        ],
100197        "tags": [
100198          "scheduling_v1beta1"
100199        ],
100200        "x-kubernetes-action": "patch",
100201        "x-kubernetes-group-version-kind": {
100202          "group": "scheduling.k8s.io",
100203          "kind": "PriorityClass",
100204          "version": "v1beta1"
100205        }
100206      },
100207      "put": {
100208        "consumes": [
100209          "*/*"
100210        ],
100211        "description": "replace the specified PriorityClass",
100212        "operationId": "replaceSchedulingV1beta1PriorityClass",
100213        "parameters": [
100214          {
100215            "in": "body",
100216            "name": "body",
100217            "required": true,
100218            "schema": {
100219              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100220            }
100221          },
100222          {
100223            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100224            "in": "query",
100225            "name": "dryRun",
100226            "type": "string",
100227            "uniqueItems": true
100228          },
100229          {
100230            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
100231            "in": "query",
100232            "name": "fieldManager",
100233            "type": "string",
100234            "uniqueItems": true
100235          }
100236        ],
100237        "produces": [
100238          "application/json",
100239          "application/yaml",
100240          "application/vnd.kubernetes.protobuf"
100241        ],
100242        "responses": {
100243          "200": {
100244            "description": "OK",
100245            "schema": {
100246              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100247            }
100248          },
100249          "201": {
100250            "description": "Created",
100251            "schema": {
100252              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100253            }
100254          },
100255          "401": {
100256            "description": "Unauthorized"
100257          }
100258        },
100259        "schemes": [
100260          "https"
100261        ],
100262        "tags": [
100263          "scheduling_v1beta1"
100264        ],
100265        "x-kubernetes-action": "put",
100266        "x-kubernetes-group-version-kind": {
100267          "group": "scheduling.k8s.io",
100268          "kind": "PriorityClass",
100269          "version": "v1beta1"
100270        }
100271      }
100272    },
100273    "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses": {
100274      "get": {
100275        "consumes": [
100276          "*/*"
100277        ],
100278        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
100279        "operationId": "watchSchedulingV1beta1PriorityClassList",
100280        "produces": [
100281          "application/json",
100282          "application/yaml",
100283          "application/vnd.kubernetes.protobuf",
100284          "application/json;stream=watch",
100285          "application/vnd.kubernetes.protobuf;stream=watch"
100286        ],
100287        "responses": {
100288          "200": {
100289            "description": "OK",
100290            "schema": {
100291              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100292            }
100293          },
100294          "401": {
100295            "description": "Unauthorized"
100296          }
100297        },
100298        "schemes": [
100299          "https"
100300        ],
100301        "tags": [
100302          "scheduling_v1beta1"
100303        ],
100304        "x-kubernetes-action": "watchlist",
100305        "x-kubernetes-group-version-kind": {
100306          "group": "scheduling.k8s.io",
100307          "kind": "PriorityClass",
100308          "version": "v1beta1"
100309        }
100310      },
100311      "parameters": [
100312        {
100313          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
100314          "in": "query",
100315          "name": "allowWatchBookmarks",
100316          "type": "boolean",
100317          "uniqueItems": true
100318        },
100319        {
100320          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100321          "in": "query",
100322          "name": "continue",
100323          "type": "string",
100324          "uniqueItems": true
100325        },
100326        {
100327          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100328          "in": "query",
100329          "name": "fieldSelector",
100330          "type": "string",
100331          "uniqueItems": true
100332        },
100333        {
100334          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100335          "in": "query",
100336          "name": "labelSelector",
100337          "type": "string",
100338          "uniqueItems": true
100339        },
100340        {
100341          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100342          "in": "query",
100343          "name": "limit",
100344          "type": "integer",
100345          "uniqueItems": true
100346        },
100347        {
100348          "description": "If 'true', then the output is pretty printed.",
100349          "in": "query",
100350          "name": "pretty",
100351          "type": "string",
100352          "uniqueItems": true
100353        },
100354        {
100355          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100356          "in": "query",
100357          "name": "resourceVersion",
100358          "type": "string",
100359          "uniqueItems": true
100360        },
100361        {
100362          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100363          "in": "query",
100364          "name": "resourceVersionMatch",
100365          "type": "string",
100366          "uniqueItems": true
100367        },
100368        {
100369          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100370          "in": "query",
100371          "name": "timeoutSeconds",
100372          "type": "integer",
100373          "uniqueItems": true
100374        },
100375        {
100376          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100377          "in": "query",
100378          "name": "watch",
100379          "type": "boolean",
100380          "uniqueItems": true
100381        }
100382      ]
100383    },
100384    "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/{name}": {
100385      "get": {
100386        "consumes": [
100387          "*/*"
100388        ],
100389        "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.",
100390        "operationId": "watchSchedulingV1beta1PriorityClass",
100391        "produces": [
100392          "application/json",
100393          "application/yaml",
100394          "application/vnd.kubernetes.protobuf",
100395          "application/json;stream=watch",
100396          "application/vnd.kubernetes.protobuf;stream=watch"
100397        ],
100398        "responses": {
100399          "200": {
100400            "description": "OK",
100401            "schema": {
100402              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100403            }
100404          },
100405          "401": {
100406            "description": "Unauthorized"
100407          }
100408        },
100409        "schemes": [
100410          "https"
100411        ],
100412        "tags": [
100413          "scheduling_v1beta1"
100414        ],
100415        "x-kubernetes-action": "watch",
100416        "x-kubernetes-group-version-kind": {
100417          "group": "scheduling.k8s.io",
100418          "kind": "PriorityClass",
100419          "version": "v1beta1"
100420        }
100421      },
100422      "parameters": [
100423        {
100424          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
100425          "in": "query",
100426          "name": "allowWatchBookmarks",
100427          "type": "boolean",
100428          "uniqueItems": true
100429        },
100430        {
100431          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100432          "in": "query",
100433          "name": "continue",
100434          "type": "string",
100435          "uniqueItems": true
100436        },
100437        {
100438          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100439          "in": "query",
100440          "name": "fieldSelector",
100441          "type": "string",
100442          "uniqueItems": true
100443        },
100444        {
100445          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100446          "in": "query",
100447          "name": "labelSelector",
100448          "type": "string",
100449          "uniqueItems": true
100450        },
100451        {
100452          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100453          "in": "query",
100454          "name": "limit",
100455          "type": "integer",
100456          "uniqueItems": true
100457        },
100458        {
100459          "description": "name of the PriorityClass",
100460          "in": "path",
100461          "name": "name",
100462          "required": true,
100463          "type": "string",
100464          "uniqueItems": true
100465        },
100466        {
100467          "description": "If 'true', then the output is pretty printed.",
100468          "in": "query",
100469          "name": "pretty",
100470          "type": "string",
100471          "uniqueItems": true
100472        },
100473        {
100474          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100475          "in": "query",
100476          "name": "resourceVersion",
100477          "type": "string",
100478          "uniqueItems": true
100479        },
100480        {
100481          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100482          "in": "query",
100483          "name": "resourceVersionMatch",
100484          "type": "string",
100485          "uniqueItems": true
100486        },
100487        {
100488          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100489          "in": "query",
100490          "name": "timeoutSeconds",
100491          "type": "integer",
100492          "uniqueItems": true
100493        },
100494        {
100495          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100496          "in": "query",
100497          "name": "watch",
100498          "type": "boolean",
100499          "uniqueItems": true
100500        }
100501      ]
100502    },
100503    "/apis/storage.k8s.io/": {
100504      "get": {
100505        "consumes": [
100506          "application/json",
100507          "application/yaml",
100508          "application/vnd.kubernetes.protobuf"
100509        ],
100510        "description": "get information of a group",
100511        "operationId": "getStorageAPIGroup",
100512        "produces": [
100513          "application/json",
100514          "application/yaml",
100515          "application/vnd.kubernetes.protobuf"
100516        ],
100517        "responses": {
100518          "200": {
100519            "description": "OK",
100520            "schema": {
100521              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
100522            }
100523          },
100524          "401": {
100525            "description": "Unauthorized"
100526          }
100527        },
100528        "schemes": [
100529          "https"
100530        ],
100531        "tags": [
100532          "storage"
100533        ]
100534      }
100535    },
100536    "/apis/storage.k8s.io/v1/": {
100537      "get": {
100538        "consumes": [
100539          "application/json",
100540          "application/yaml",
100541          "application/vnd.kubernetes.protobuf"
100542        ],
100543        "description": "get available resources",
100544        "operationId": "getStorageV1APIResources",
100545        "produces": [
100546          "application/json",
100547          "application/yaml",
100548          "application/vnd.kubernetes.protobuf"
100549        ],
100550        "responses": {
100551          "200": {
100552            "description": "OK",
100553            "schema": {
100554              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
100555            }
100556          },
100557          "401": {
100558            "description": "Unauthorized"
100559          }
100560        },
100561        "schemes": [
100562          "https"
100563        ],
100564        "tags": [
100565          "storage_v1"
100566        ]
100567      }
100568    },
100569    "/apis/storage.k8s.io/v1/csidrivers": {
100570      "delete": {
100571        "consumes": [
100572          "*/*"
100573        ],
100574        "description": "delete collection of CSIDriver",
100575        "operationId": "deleteStorageV1CollectionCSIDriver",
100576        "parameters": [
100577          {
100578            "in": "body",
100579            "name": "body",
100580            "schema": {
100581              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
100582            }
100583          },
100584          {
100585            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100586            "in": "query",
100587            "name": "continue",
100588            "type": "string",
100589            "uniqueItems": true
100590          },
100591          {
100592            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100593            "in": "query",
100594            "name": "dryRun",
100595            "type": "string",
100596            "uniqueItems": true
100597          },
100598          {
100599            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100600            "in": "query",
100601            "name": "fieldSelector",
100602            "type": "string",
100603            "uniqueItems": true
100604          },
100605          {
100606            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
100607            "in": "query",
100608            "name": "gracePeriodSeconds",
100609            "type": "integer",
100610            "uniqueItems": true
100611          },
100612          {
100613            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100614            "in": "query",
100615            "name": "labelSelector",
100616            "type": "string",
100617            "uniqueItems": true
100618          },
100619          {
100620            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100621            "in": "query",
100622            "name": "limit",
100623            "type": "integer",
100624            "uniqueItems": true
100625          },
100626          {
100627            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
100628            "in": "query",
100629            "name": "orphanDependents",
100630            "type": "boolean",
100631            "uniqueItems": true
100632          },
100633          {
100634            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
100635            "in": "query",
100636            "name": "propagationPolicy",
100637            "type": "string",
100638            "uniqueItems": true
100639          },
100640          {
100641            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100642            "in": "query",
100643            "name": "resourceVersion",
100644            "type": "string",
100645            "uniqueItems": true
100646          },
100647          {
100648            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100649            "in": "query",
100650            "name": "resourceVersionMatch",
100651            "type": "string",
100652            "uniqueItems": true
100653          },
100654          {
100655            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100656            "in": "query",
100657            "name": "timeoutSeconds",
100658            "type": "integer",
100659            "uniqueItems": true
100660          }
100661        ],
100662        "produces": [
100663          "application/json",
100664          "application/yaml",
100665          "application/vnd.kubernetes.protobuf"
100666        ],
100667        "responses": {
100668          "200": {
100669            "description": "OK",
100670            "schema": {
100671              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
100672            }
100673          },
100674          "401": {
100675            "description": "Unauthorized"
100676          }
100677        },
100678        "schemes": [
100679          "https"
100680        ],
100681        "tags": [
100682          "storage_v1"
100683        ],
100684        "x-kubernetes-action": "deletecollection",
100685        "x-kubernetes-group-version-kind": {
100686          "group": "storage.k8s.io",
100687          "kind": "CSIDriver",
100688          "version": "v1"
100689        }
100690      },
100691      "get": {
100692        "consumes": [
100693          "*/*"
100694        ],
100695        "description": "list or watch objects of kind CSIDriver",
100696        "operationId": "listStorageV1CSIDriver",
100697        "parameters": [
100698          {
100699            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
100700            "in": "query",
100701            "name": "allowWatchBookmarks",
100702            "type": "boolean",
100703            "uniqueItems": true
100704          },
100705          {
100706            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100707            "in": "query",
100708            "name": "continue",
100709            "type": "string",
100710            "uniqueItems": true
100711          },
100712          {
100713            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100714            "in": "query",
100715            "name": "fieldSelector",
100716            "type": "string",
100717            "uniqueItems": true
100718          },
100719          {
100720            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100721            "in": "query",
100722            "name": "labelSelector",
100723            "type": "string",
100724            "uniqueItems": true
100725          },
100726          {
100727            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100728            "in": "query",
100729            "name": "limit",
100730            "type": "integer",
100731            "uniqueItems": true
100732          },
100733          {
100734            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100735            "in": "query",
100736            "name": "resourceVersion",
100737            "type": "string",
100738            "uniqueItems": true
100739          },
100740          {
100741            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100742            "in": "query",
100743            "name": "resourceVersionMatch",
100744            "type": "string",
100745            "uniqueItems": true
100746          },
100747          {
100748            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100749            "in": "query",
100750            "name": "timeoutSeconds",
100751            "type": "integer",
100752            "uniqueItems": true
100753          },
100754          {
100755            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100756            "in": "query",
100757            "name": "watch",
100758            "type": "boolean",
100759            "uniqueItems": true
100760          }
100761        ],
100762        "produces": [
100763          "application/json",
100764          "application/yaml",
100765          "application/vnd.kubernetes.protobuf",
100766          "application/json;stream=watch",
100767          "application/vnd.kubernetes.protobuf;stream=watch"
100768        ],
100769        "responses": {
100770          "200": {
100771            "description": "OK",
100772            "schema": {
100773              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverList"
100774            }
100775          },
100776          "401": {
100777            "description": "Unauthorized"
100778          }
100779        },
100780        "schemes": [
100781          "https"
100782        ],
100783        "tags": [
100784          "storage_v1"
100785        ],
100786        "x-kubernetes-action": "list",
100787        "x-kubernetes-group-version-kind": {
100788          "group": "storage.k8s.io",
100789          "kind": "CSIDriver",
100790          "version": "v1"
100791        }
100792      },
100793      "parameters": [
100794        {
100795          "description": "If 'true', then the output is pretty printed.",
100796          "in": "query",
100797          "name": "pretty",
100798          "type": "string",
100799          "uniqueItems": true
100800        }
100801      ],
100802      "post": {
100803        "consumes": [
100804          "*/*"
100805        ],
100806        "description": "create a CSIDriver",
100807        "operationId": "createStorageV1CSIDriver",
100808        "parameters": [
100809          {
100810            "in": "body",
100811            "name": "body",
100812            "required": true,
100813            "schema": {
100814              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100815            }
100816          },
100817          {
100818            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100819            "in": "query",
100820            "name": "dryRun",
100821            "type": "string",
100822            "uniqueItems": true
100823          },
100824          {
100825            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
100826            "in": "query",
100827            "name": "fieldManager",
100828            "type": "string",
100829            "uniqueItems": true
100830          }
100831        ],
100832        "produces": [
100833          "application/json",
100834          "application/yaml",
100835          "application/vnd.kubernetes.protobuf"
100836        ],
100837        "responses": {
100838          "200": {
100839            "description": "OK",
100840            "schema": {
100841              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100842            }
100843          },
100844          "201": {
100845            "description": "Created",
100846            "schema": {
100847              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100848            }
100849          },
100850          "202": {
100851            "description": "Accepted",
100852            "schema": {
100853              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100854            }
100855          },
100856          "401": {
100857            "description": "Unauthorized"
100858          }
100859        },
100860        "schemes": [
100861          "https"
100862        ],
100863        "tags": [
100864          "storage_v1"
100865        ],
100866        "x-kubernetes-action": "post",
100867        "x-kubernetes-group-version-kind": {
100868          "group": "storage.k8s.io",
100869          "kind": "CSIDriver",
100870          "version": "v1"
100871        }
100872      }
100873    },
100874    "/apis/storage.k8s.io/v1/csidrivers/{name}": {
100875      "delete": {
100876        "consumes": [
100877          "*/*"
100878        ],
100879        "description": "delete a CSIDriver",
100880        "operationId": "deleteStorageV1CSIDriver",
100881        "parameters": [
100882          {
100883            "in": "body",
100884            "name": "body",
100885            "schema": {
100886              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
100887            }
100888          },
100889          {
100890            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100891            "in": "query",
100892            "name": "dryRun",
100893            "type": "string",
100894            "uniqueItems": true
100895          },
100896          {
100897            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
100898            "in": "query",
100899            "name": "gracePeriodSeconds",
100900            "type": "integer",
100901            "uniqueItems": true
100902          },
100903          {
100904            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
100905            "in": "query",
100906            "name": "orphanDependents",
100907            "type": "boolean",
100908            "uniqueItems": true
100909          },
100910          {
100911            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
100912            "in": "query",
100913            "name": "propagationPolicy",
100914            "type": "string",
100915            "uniqueItems": true
100916          }
100917        ],
100918        "produces": [
100919          "application/json",
100920          "application/yaml",
100921          "application/vnd.kubernetes.protobuf"
100922        ],
100923        "responses": {
100924          "200": {
100925            "description": "OK",
100926            "schema": {
100927              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100928            }
100929          },
100930          "202": {
100931            "description": "Accepted",
100932            "schema": {
100933              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100934            }
100935          },
100936          "401": {
100937            "description": "Unauthorized"
100938          }
100939        },
100940        "schemes": [
100941          "https"
100942        ],
100943        "tags": [
100944          "storage_v1"
100945        ],
100946        "x-kubernetes-action": "delete",
100947        "x-kubernetes-group-version-kind": {
100948          "group": "storage.k8s.io",
100949          "kind": "CSIDriver",
100950          "version": "v1"
100951        }
100952      },
100953      "get": {
100954        "consumes": [
100955          "*/*"
100956        ],
100957        "description": "read the specified CSIDriver",
100958        "operationId": "readStorageV1CSIDriver",
100959        "produces": [
100960          "application/json",
100961          "application/yaml",
100962          "application/vnd.kubernetes.protobuf"
100963        ],
100964        "responses": {
100965          "200": {
100966            "description": "OK",
100967            "schema": {
100968              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100969            }
100970          },
100971          "401": {
100972            "description": "Unauthorized"
100973          }
100974        },
100975        "schemes": [
100976          "https"
100977        ],
100978        "tags": [
100979          "storage_v1"
100980        ],
100981        "x-kubernetes-action": "get",
100982        "x-kubernetes-group-version-kind": {
100983          "group": "storage.k8s.io",
100984          "kind": "CSIDriver",
100985          "version": "v1"
100986        }
100987      },
100988      "parameters": [
100989        {
100990          "description": "name of the CSIDriver",
100991          "in": "path",
100992          "name": "name",
100993          "required": true,
100994          "type": "string",
100995          "uniqueItems": true
100996        },
100997        {
100998          "description": "If 'true', then the output is pretty printed.",
100999          "in": "query",
101000          "name": "pretty",
101001          "type": "string",
101002          "uniqueItems": true
101003        }
101004      ],
101005      "patch": {
101006        "consumes": [
101007          "application/json-patch+json",
101008          "application/merge-patch+json",
101009          "application/strategic-merge-patch+json",
101010          "application/apply-patch+yaml"
101011        ],
101012        "description": "partially update the specified CSIDriver",
101013        "operationId": "patchStorageV1CSIDriver",
101014        "parameters": [
101015          {
101016            "in": "body",
101017            "name": "body",
101018            "required": true,
101019            "schema": {
101020              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
101021            }
101022          },
101023          {
101024            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101025            "in": "query",
101026            "name": "dryRun",
101027            "type": "string",
101028            "uniqueItems": true
101029          },
101030          {
101031            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
101032            "in": "query",
101033            "name": "fieldManager",
101034            "type": "string",
101035            "uniqueItems": true
101036          },
101037          {
101038            "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.",
101039            "in": "query",
101040            "name": "force",
101041            "type": "boolean",
101042            "uniqueItems": true
101043          }
101044        ],
101045        "produces": [
101046          "application/json",
101047          "application/yaml",
101048          "application/vnd.kubernetes.protobuf"
101049        ],
101050        "responses": {
101051          "200": {
101052            "description": "OK",
101053            "schema": {
101054              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101055            }
101056          },
101057          "401": {
101058            "description": "Unauthorized"
101059          }
101060        },
101061        "schemes": [
101062          "https"
101063        ],
101064        "tags": [
101065          "storage_v1"
101066        ],
101067        "x-kubernetes-action": "patch",
101068        "x-kubernetes-group-version-kind": {
101069          "group": "storage.k8s.io",
101070          "kind": "CSIDriver",
101071          "version": "v1"
101072        }
101073      },
101074      "put": {
101075        "consumes": [
101076          "*/*"
101077        ],
101078        "description": "replace the specified CSIDriver",
101079        "operationId": "replaceStorageV1CSIDriver",
101080        "parameters": [
101081          {
101082            "in": "body",
101083            "name": "body",
101084            "required": true,
101085            "schema": {
101086              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101087            }
101088          },
101089          {
101090            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101091            "in": "query",
101092            "name": "dryRun",
101093            "type": "string",
101094            "uniqueItems": true
101095          },
101096          {
101097            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101098            "in": "query",
101099            "name": "fieldManager",
101100            "type": "string",
101101            "uniqueItems": true
101102          }
101103        ],
101104        "produces": [
101105          "application/json",
101106          "application/yaml",
101107          "application/vnd.kubernetes.protobuf"
101108        ],
101109        "responses": {
101110          "200": {
101111            "description": "OK",
101112            "schema": {
101113              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101114            }
101115          },
101116          "201": {
101117            "description": "Created",
101118            "schema": {
101119              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101120            }
101121          },
101122          "401": {
101123            "description": "Unauthorized"
101124          }
101125        },
101126        "schemes": [
101127          "https"
101128        ],
101129        "tags": [
101130          "storage_v1"
101131        ],
101132        "x-kubernetes-action": "put",
101133        "x-kubernetes-group-version-kind": {
101134          "group": "storage.k8s.io",
101135          "kind": "CSIDriver",
101136          "version": "v1"
101137        }
101138      }
101139    },
101140    "/apis/storage.k8s.io/v1/csinodes": {
101141      "delete": {
101142        "consumes": [
101143          "*/*"
101144        ],
101145        "description": "delete collection of CSINode",
101146        "operationId": "deleteStorageV1CollectionCSINode",
101147        "parameters": [
101148          {
101149            "in": "body",
101150            "name": "body",
101151            "schema": {
101152              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101153            }
101154          },
101155          {
101156            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101157            "in": "query",
101158            "name": "continue",
101159            "type": "string",
101160            "uniqueItems": true
101161          },
101162          {
101163            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101164            "in": "query",
101165            "name": "dryRun",
101166            "type": "string",
101167            "uniqueItems": true
101168          },
101169          {
101170            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101171            "in": "query",
101172            "name": "fieldSelector",
101173            "type": "string",
101174            "uniqueItems": true
101175          },
101176          {
101177            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
101178            "in": "query",
101179            "name": "gracePeriodSeconds",
101180            "type": "integer",
101181            "uniqueItems": true
101182          },
101183          {
101184            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101185            "in": "query",
101186            "name": "labelSelector",
101187            "type": "string",
101188            "uniqueItems": true
101189          },
101190          {
101191            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101192            "in": "query",
101193            "name": "limit",
101194            "type": "integer",
101195            "uniqueItems": true
101196          },
101197          {
101198            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
101199            "in": "query",
101200            "name": "orphanDependents",
101201            "type": "boolean",
101202            "uniqueItems": true
101203          },
101204          {
101205            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
101206            "in": "query",
101207            "name": "propagationPolicy",
101208            "type": "string",
101209            "uniqueItems": true
101210          },
101211          {
101212            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101213            "in": "query",
101214            "name": "resourceVersion",
101215            "type": "string",
101216            "uniqueItems": true
101217          },
101218          {
101219            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101220            "in": "query",
101221            "name": "resourceVersionMatch",
101222            "type": "string",
101223            "uniqueItems": true
101224          },
101225          {
101226            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101227            "in": "query",
101228            "name": "timeoutSeconds",
101229            "type": "integer",
101230            "uniqueItems": true
101231          }
101232        ],
101233        "produces": [
101234          "application/json",
101235          "application/yaml",
101236          "application/vnd.kubernetes.protobuf"
101237        ],
101238        "responses": {
101239          "200": {
101240            "description": "OK",
101241            "schema": {
101242              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
101243            }
101244          },
101245          "401": {
101246            "description": "Unauthorized"
101247          }
101248        },
101249        "schemes": [
101250          "https"
101251        ],
101252        "tags": [
101253          "storage_v1"
101254        ],
101255        "x-kubernetes-action": "deletecollection",
101256        "x-kubernetes-group-version-kind": {
101257          "group": "storage.k8s.io",
101258          "kind": "CSINode",
101259          "version": "v1"
101260        }
101261      },
101262      "get": {
101263        "consumes": [
101264          "*/*"
101265        ],
101266        "description": "list or watch objects of kind CSINode",
101267        "operationId": "listStorageV1CSINode",
101268        "parameters": [
101269          {
101270            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
101271            "in": "query",
101272            "name": "allowWatchBookmarks",
101273            "type": "boolean",
101274            "uniqueItems": true
101275          },
101276          {
101277            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101278            "in": "query",
101279            "name": "continue",
101280            "type": "string",
101281            "uniqueItems": true
101282          },
101283          {
101284            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101285            "in": "query",
101286            "name": "fieldSelector",
101287            "type": "string",
101288            "uniqueItems": true
101289          },
101290          {
101291            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101292            "in": "query",
101293            "name": "labelSelector",
101294            "type": "string",
101295            "uniqueItems": true
101296          },
101297          {
101298            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101299            "in": "query",
101300            "name": "limit",
101301            "type": "integer",
101302            "uniqueItems": true
101303          },
101304          {
101305            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101306            "in": "query",
101307            "name": "resourceVersion",
101308            "type": "string",
101309            "uniqueItems": true
101310          },
101311          {
101312            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101313            "in": "query",
101314            "name": "resourceVersionMatch",
101315            "type": "string",
101316            "uniqueItems": true
101317          },
101318          {
101319            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101320            "in": "query",
101321            "name": "timeoutSeconds",
101322            "type": "integer",
101323            "uniqueItems": true
101324          },
101325          {
101326            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101327            "in": "query",
101328            "name": "watch",
101329            "type": "boolean",
101330            "uniqueItems": true
101331          }
101332        ],
101333        "produces": [
101334          "application/json",
101335          "application/yaml",
101336          "application/vnd.kubernetes.protobuf",
101337          "application/json;stream=watch",
101338          "application/vnd.kubernetes.protobuf;stream=watch"
101339        ],
101340        "responses": {
101341          "200": {
101342            "description": "OK",
101343            "schema": {
101344              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeList"
101345            }
101346          },
101347          "401": {
101348            "description": "Unauthorized"
101349          }
101350        },
101351        "schemes": [
101352          "https"
101353        ],
101354        "tags": [
101355          "storage_v1"
101356        ],
101357        "x-kubernetes-action": "list",
101358        "x-kubernetes-group-version-kind": {
101359          "group": "storage.k8s.io",
101360          "kind": "CSINode",
101361          "version": "v1"
101362        }
101363      },
101364      "parameters": [
101365        {
101366          "description": "If 'true', then the output is pretty printed.",
101367          "in": "query",
101368          "name": "pretty",
101369          "type": "string",
101370          "uniqueItems": true
101371        }
101372      ],
101373      "post": {
101374        "consumes": [
101375          "*/*"
101376        ],
101377        "description": "create a CSINode",
101378        "operationId": "createStorageV1CSINode",
101379        "parameters": [
101380          {
101381            "in": "body",
101382            "name": "body",
101383            "required": true,
101384            "schema": {
101385              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101386            }
101387          },
101388          {
101389            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101390            "in": "query",
101391            "name": "dryRun",
101392            "type": "string",
101393            "uniqueItems": true
101394          },
101395          {
101396            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101397            "in": "query",
101398            "name": "fieldManager",
101399            "type": "string",
101400            "uniqueItems": true
101401          }
101402        ],
101403        "produces": [
101404          "application/json",
101405          "application/yaml",
101406          "application/vnd.kubernetes.protobuf"
101407        ],
101408        "responses": {
101409          "200": {
101410            "description": "OK",
101411            "schema": {
101412              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101413            }
101414          },
101415          "201": {
101416            "description": "Created",
101417            "schema": {
101418              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101419            }
101420          },
101421          "202": {
101422            "description": "Accepted",
101423            "schema": {
101424              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101425            }
101426          },
101427          "401": {
101428            "description": "Unauthorized"
101429          }
101430        },
101431        "schemes": [
101432          "https"
101433        ],
101434        "tags": [
101435          "storage_v1"
101436        ],
101437        "x-kubernetes-action": "post",
101438        "x-kubernetes-group-version-kind": {
101439          "group": "storage.k8s.io",
101440          "kind": "CSINode",
101441          "version": "v1"
101442        }
101443      }
101444    },
101445    "/apis/storage.k8s.io/v1/csinodes/{name}": {
101446      "delete": {
101447        "consumes": [
101448          "*/*"
101449        ],
101450        "description": "delete a CSINode",
101451        "operationId": "deleteStorageV1CSINode",
101452        "parameters": [
101453          {
101454            "in": "body",
101455            "name": "body",
101456            "schema": {
101457              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101458            }
101459          },
101460          {
101461            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101462            "in": "query",
101463            "name": "dryRun",
101464            "type": "string",
101465            "uniqueItems": true
101466          },
101467          {
101468            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
101469            "in": "query",
101470            "name": "gracePeriodSeconds",
101471            "type": "integer",
101472            "uniqueItems": true
101473          },
101474          {
101475            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
101476            "in": "query",
101477            "name": "orphanDependents",
101478            "type": "boolean",
101479            "uniqueItems": true
101480          },
101481          {
101482            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
101483            "in": "query",
101484            "name": "propagationPolicy",
101485            "type": "string",
101486            "uniqueItems": true
101487          }
101488        ],
101489        "produces": [
101490          "application/json",
101491          "application/yaml",
101492          "application/vnd.kubernetes.protobuf"
101493        ],
101494        "responses": {
101495          "200": {
101496            "description": "OK",
101497            "schema": {
101498              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101499            }
101500          },
101501          "202": {
101502            "description": "Accepted",
101503            "schema": {
101504              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101505            }
101506          },
101507          "401": {
101508            "description": "Unauthorized"
101509          }
101510        },
101511        "schemes": [
101512          "https"
101513        ],
101514        "tags": [
101515          "storage_v1"
101516        ],
101517        "x-kubernetes-action": "delete",
101518        "x-kubernetes-group-version-kind": {
101519          "group": "storage.k8s.io",
101520          "kind": "CSINode",
101521          "version": "v1"
101522        }
101523      },
101524      "get": {
101525        "consumes": [
101526          "*/*"
101527        ],
101528        "description": "read the specified CSINode",
101529        "operationId": "readStorageV1CSINode",
101530        "produces": [
101531          "application/json",
101532          "application/yaml",
101533          "application/vnd.kubernetes.protobuf"
101534        ],
101535        "responses": {
101536          "200": {
101537            "description": "OK",
101538            "schema": {
101539              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101540            }
101541          },
101542          "401": {
101543            "description": "Unauthorized"
101544          }
101545        },
101546        "schemes": [
101547          "https"
101548        ],
101549        "tags": [
101550          "storage_v1"
101551        ],
101552        "x-kubernetes-action": "get",
101553        "x-kubernetes-group-version-kind": {
101554          "group": "storage.k8s.io",
101555          "kind": "CSINode",
101556          "version": "v1"
101557        }
101558      },
101559      "parameters": [
101560        {
101561          "description": "name of the CSINode",
101562          "in": "path",
101563          "name": "name",
101564          "required": true,
101565          "type": "string",
101566          "uniqueItems": true
101567        },
101568        {
101569          "description": "If 'true', then the output is pretty printed.",
101570          "in": "query",
101571          "name": "pretty",
101572          "type": "string",
101573          "uniqueItems": true
101574        }
101575      ],
101576      "patch": {
101577        "consumes": [
101578          "application/json-patch+json",
101579          "application/merge-patch+json",
101580          "application/strategic-merge-patch+json",
101581          "application/apply-patch+yaml"
101582        ],
101583        "description": "partially update the specified CSINode",
101584        "operationId": "patchStorageV1CSINode",
101585        "parameters": [
101586          {
101587            "in": "body",
101588            "name": "body",
101589            "required": true,
101590            "schema": {
101591              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
101592            }
101593          },
101594          {
101595            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101596            "in": "query",
101597            "name": "dryRun",
101598            "type": "string",
101599            "uniqueItems": true
101600          },
101601          {
101602            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
101603            "in": "query",
101604            "name": "fieldManager",
101605            "type": "string",
101606            "uniqueItems": true
101607          },
101608          {
101609            "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.",
101610            "in": "query",
101611            "name": "force",
101612            "type": "boolean",
101613            "uniqueItems": true
101614          }
101615        ],
101616        "produces": [
101617          "application/json",
101618          "application/yaml",
101619          "application/vnd.kubernetes.protobuf"
101620        ],
101621        "responses": {
101622          "200": {
101623            "description": "OK",
101624            "schema": {
101625              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101626            }
101627          },
101628          "401": {
101629            "description": "Unauthorized"
101630          }
101631        },
101632        "schemes": [
101633          "https"
101634        ],
101635        "tags": [
101636          "storage_v1"
101637        ],
101638        "x-kubernetes-action": "patch",
101639        "x-kubernetes-group-version-kind": {
101640          "group": "storage.k8s.io",
101641          "kind": "CSINode",
101642          "version": "v1"
101643        }
101644      },
101645      "put": {
101646        "consumes": [
101647          "*/*"
101648        ],
101649        "description": "replace the specified CSINode",
101650        "operationId": "replaceStorageV1CSINode",
101651        "parameters": [
101652          {
101653            "in": "body",
101654            "name": "body",
101655            "required": true,
101656            "schema": {
101657              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101658            }
101659          },
101660          {
101661            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101662            "in": "query",
101663            "name": "dryRun",
101664            "type": "string",
101665            "uniqueItems": true
101666          },
101667          {
101668            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101669            "in": "query",
101670            "name": "fieldManager",
101671            "type": "string",
101672            "uniqueItems": true
101673          }
101674        ],
101675        "produces": [
101676          "application/json",
101677          "application/yaml",
101678          "application/vnd.kubernetes.protobuf"
101679        ],
101680        "responses": {
101681          "200": {
101682            "description": "OK",
101683            "schema": {
101684              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101685            }
101686          },
101687          "201": {
101688            "description": "Created",
101689            "schema": {
101690              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101691            }
101692          },
101693          "401": {
101694            "description": "Unauthorized"
101695          }
101696        },
101697        "schemes": [
101698          "https"
101699        ],
101700        "tags": [
101701          "storage_v1"
101702        ],
101703        "x-kubernetes-action": "put",
101704        "x-kubernetes-group-version-kind": {
101705          "group": "storage.k8s.io",
101706          "kind": "CSINode",
101707          "version": "v1"
101708        }
101709      }
101710    },
101711    "/apis/storage.k8s.io/v1/storageclasses": {
101712      "delete": {
101713        "consumes": [
101714          "*/*"
101715        ],
101716        "description": "delete collection of StorageClass",
101717        "operationId": "deleteStorageV1CollectionStorageClass",
101718        "parameters": [
101719          {
101720            "in": "body",
101721            "name": "body",
101722            "schema": {
101723              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101724            }
101725          },
101726          {
101727            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101728            "in": "query",
101729            "name": "continue",
101730            "type": "string",
101731            "uniqueItems": true
101732          },
101733          {
101734            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101735            "in": "query",
101736            "name": "dryRun",
101737            "type": "string",
101738            "uniqueItems": true
101739          },
101740          {
101741            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101742            "in": "query",
101743            "name": "fieldSelector",
101744            "type": "string",
101745            "uniqueItems": true
101746          },
101747          {
101748            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
101749            "in": "query",
101750            "name": "gracePeriodSeconds",
101751            "type": "integer",
101752            "uniqueItems": true
101753          },
101754          {
101755            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101756            "in": "query",
101757            "name": "labelSelector",
101758            "type": "string",
101759            "uniqueItems": true
101760          },
101761          {
101762            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101763            "in": "query",
101764            "name": "limit",
101765            "type": "integer",
101766            "uniqueItems": true
101767          },
101768          {
101769            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
101770            "in": "query",
101771            "name": "orphanDependents",
101772            "type": "boolean",
101773            "uniqueItems": true
101774          },
101775          {
101776            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
101777            "in": "query",
101778            "name": "propagationPolicy",
101779            "type": "string",
101780            "uniqueItems": true
101781          },
101782          {
101783            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101784            "in": "query",
101785            "name": "resourceVersion",
101786            "type": "string",
101787            "uniqueItems": true
101788          },
101789          {
101790            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101791            "in": "query",
101792            "name": "resourceVersionMatch",
101793            "type": "string",
101794            "uniqueItems": true
101795          },
101796          {
101797            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101798            "in": "query",
101799            "name": "timeoutSeconds",
101800            "type": "integer",
101801            "uniqueItems": true
101802          }
101803        ],
101804        "produces": [
101805          "application/json",
101806          "application/yaml",
101807          "application/vnd.kubernetes.protobuf"
101808        ],
101809        "responses": {
101810          "200": {
101811            "description": "OK",
101812            "schema": {
101813              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
101814            }
101815          },
101816          "401": {
101817            "description": "Unauthorized"
101818          }
101819        },
101820        "schemes": [
101821          "https"
101822        ],
101823        "tags": [
101824          "storage_v1"
101825        ],
101826        "x-kubernetes-action": "deletecollection",
101827        "x-kubernetes-group-version-kind": {
101828          "group": "storage.k8s.io",
101829          "kind": "StorageClass",
101830          "version": "v1"
101831        }
101832      },
101833      "get": {
101834        "consumes": [
101835          "*/*"
101836        ],
101837        "description": "list or watch objects of kind StorageClass",
101838        "operationId": "listStorageV1StorageClass",
101839        "parameters": [
101840          {
101841            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
101842            "in": "query",
101843            "name": "allowWatchBookmarks",
101844            "type": "boolean",
101845            "uniqueItems": true
101846          },
101847          {
101848            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101849            "in": "query",
101850            "name": "continue",
101851            "type": "string",
101852            "uniqueItems": true
101853          },
101854          {
101855            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101856            "in": "query",
101857            "name": "fieldSelector",
101858            "type": "string",
101859            "uniqueItems": true
101860          },
101861          {
101862            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101863            "in": "query",
101864            "name": "labelSelector",
101865            "type": "string",
101866            "uniqueItems": true
101867          },
101868          {
101869            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101870            "in": "query",
101871            "name": "limit",
101872            "type": "integer",
101873            "uniqueItems": true
101874          },
101875          {
101876            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101877            "in": "query",
101878            "name": "resourceVersion",
101879            "type": "string",
101880            "uniqueItems": true
101881          },
101882          {
101883            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101884            "in": "query",
101885            "name": "resourceVersionMatch",
101886            "type": "string",
101887            "uniqueItems": true
101888          },
101889          {
101890            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101891            "in": "query",
101892            "name": "timeoutSeconds",
101893            "type": "integer",
101894            "uniqueItems": true
101895          },
101896          {
101897            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101898            "in": "query",
101899            "name": "watch",
101900            "type": "boolean",
101901            "uniqueItems": true
101902          }
101903        ],
101904        "produces": [
101905          "application/json",
101906          "application/yaml",
101907          "application/vnd.kubernetes.protobuf",
101908          "application/json;stream=watch",
101909          "application/vnd.kubernetes.protobuf;stream=watch"
101910        ],
101911        "responses": {
101912          "200": {
101913            "description": "OK",
101914            "schema": {
101915              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClassList"
101916            }
101917          },
101918          "401": {
101919            "description": "Unauthorized"
101920          }
101921        },
101922        "schemes": [
101923          "https"
101924        ],
101925        "tags": [
101926          "storage_v1"
101927        ],
101928        "x-kubernetes-action": "list",
101929        "x-kubernetes-group-version-kind": {
101930          "group": "storage.k8s.io",
101931          "kind": "StorageClass",
101932          "version": "v1"
101933        }
101934      },
101935      "parameters": [
101936        {
101937          "description": "If 'true', then the output is pretty printed.",
101938          "in": "query",
101939          "name": "pretty",
101940          "type": "string",
101941          "uniqueItems": true
101942        }
101943      ],
101944      "post": {
101945        "consumes": [
101946          "*/*"
101947        ],
101948        "description": "create a StorageClass",
101949        "operationId": "createStorageV1StorageClass",
101950        "parameters": [
101951          {
101952            "in": "body",
101953            "name": "body",
101954            "required": true,
101955            "schema": {
101956              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101957            }
101958          },
101959          {
101960            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101961            "in": "query",
101962            "name": "dryRun",
101963            "type": "string",
101964            "uniqueItems": true
101965          },
101966          {
101967            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101968            "in": "query",
101969            "name": "fieldManager",
101970            "type": "string",
101971            "uniqueItems": true
101972          }
101973        ],
101974        "produces": [
101975          "application/json",
101976          "application/yaml",
101977          "application/vnd.kubernetes.protobuf"
101978        ],
101979        "responses": {
101980          "200": {
101981            "description": "OK",
101982            "schema": {
101983              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101984            }
101985          },
101986          "201": {
101987            "description": "Created",
101988            "schema": {
101989              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101990            }
101991          },
101992          "202": {
101993            "description": "Accepted",
101994            "schema": {
101995              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101996            }
101997          },
101998          "401": {
101999            "description": "Unauthorized"
102000          }
102001        },
102002        "schemes": [
102003          "https"
102004        ],
102005        "tags": [
102006          "storage_v1"
102007        ],
102008        "x-kubernetes-action": "post",
102009        "x-kubernetes-group-version-kind": {
102010          "group": "storage.k8s.io",
102011          "kind": "StorageClass",
102012          "version": "v1"
102013        }
102014      }
102015    },
102016    "/apis/storage.k8s.io/v1/storageclasses/{name}": {
102017      "delete": {
102018        "consumes": [
102019          "*/*"
102020        ],
102021        "description": "delete a StorageClass",
102022        "operationId": "deleteStorageV1StorageClass",
102023        "parameters": [
102024          {
102025            "in": "body",
102026            "name": "body",
102027            "schema": {
102028              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102029            }
102030          },
102031          {
102032            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102033            "in": "query",
102034            "name": "dryRun",
102035            "type": "string",
102036            "uniqueItems": true
102037          },
102038          {
102039            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
102040            "in": "query",
102041            "name": "gracePeriodSeconds",
102042            "type": "integer",
102043            "uniqueItems": true
102044          },
102045          {
102046            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
102047            "in": "query",
102048            "name": "orphanDependents",
102049            "type": "boolean",
102050            "uniqueItems": true
102051          },
102052          {
102053            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
102054            "in": "query",
102055            "name": "propagationPolicy",
102056            "type": "string",
102057            "uniqueItems": true
102058          }
102059        ],
102060        "produces": [
102061          "application/json",
102062          "application/yaml",
102063          "application/vnd.kubernetes.protobuf"
102064        ],
102065        "responses": {
102066          "200": {
102067            "description": "OK",
102068            "schema": {
102069              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102070            }
102071          },
102072          "202": {
102073            "description": "Accepted",
102074            "schema": {
102075              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102076            }
102077          },
102078          "401": {
102079            "description": "Unauthorized"
102080          }
102081        },
102082        "schemes": [
102083          "https"
102084        ],
102085        "tags": [
102086          "storage_v1"
102087        ],
102088        "x-kubernetes-action": "delete",
102089        "x-kubernetes-group-version-kind": {
102090          "group": "storage.k8s.io",
102091          "kind": "StorageClass",
102092          "version": "v1"
102093        }
102094      },
102095      "get": {
102096        "consumes": [
102097          "*/*"
102098        ],
102099        "description": "read the specified StorageClass",
102100        "operationId": "readStorageV1StorageClass",
102101        "produces": [
102102          "application/json",
102103          "application/yaml",
102104          "application/vnd.kubernetes.protobuf"
102105        ],
102106        "responses": {
102107          "200": {
102108            "description": "OK",
102109            "schema": {
102110              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102111            }
102112          },
102113          "401": {
102114            "description": "Unauthorized"
102115          }
102116        },
102117        "schemes": [
102118          "https"
102119        ],
102120        "tags": [
102121          "storage_v1"
102122        ],
102123        "x-kubernetes-action": "get",
102124        "x-kubernetes-group-version-kind": {
102125          "group": "storage.k8s.io",
102126          "kind": "StorageClass",
102127          "version": "v1"
102128        }
102129      },
102130      "parameters": [
102131        {
102132          "description": "name of the StorageClass",
102133          "in": "path",
102134          "name": "name",
102135          "required": true,
102136          "type": "string",
102137          "uniqueItems": true
102138        },
102139        {
102140          "description": "If 'true', then the output is pretty printed.",
102141          "in": "query",
102142          "name": "pretty",
102143          "type": "string",
102144          "uniqueItems": true
102145        }
102146      ],
102147      "patch": {
102148        "consumes": [
102149          "application/json-patch+json",
102150          "application/merge-patch+json",
102151          "application/strategic-merge-patch+json",
102152          "application/apply-patch+yaml"
102153        ],
102154        "description": "partially update the specified StorageClass",
102155        "operationId": "patchStorageV1StorageClass",
102156        "parameters": [
102157          {
102158            "in": "body",
102159            "name": "body",
102160            "required": true,
102161            "schema": {
102162              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
102163            }
102164          },
102165          {
102166            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102167            "in": "query",
102168            "name": "dryRun",
102169            "type": "string",
102170            "uniqueItems": true
102171          },
102172          {
102173            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
102174            "in": "query",
102175            "name": "fieldManager",
102176            "type": "string",
102177            "uniqueItems": true
102178          },
102179          {
102180            "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.",
102181            "in": "query",
102182            "name": "force",
102183            "type": "boolean",
102184            "uniqueItems": true
102185          }
102186        ],
102187        "produces": [
102188          "application/json",
102189          "application/yaml",
102190          "application/vnd.kubernetes.protobuf"
102191        ],
102192        "responses": {
102193          "200": {
102194            "description": "OK",
102195            "schema": {
102196              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102197            }
102198          },
102199          "401": {
102200            "description": "Unauthorized"
102201          }
102202        },
102203        "schemes": [
102204          "https"
102205        ],
102206        "tags": [
102207          "storage_v1"
102208        ],
102209        "x-kubernetes-action": "patch",
102210        "x-kubernetes-group-version-kind": {
102211          "group": "storage.k8s.io",
102212          "kind": "StorageClass",
102213          "version": "v1"
102214        }
102215      },
102216      "put": {
102217        "consumes": [
102218          "*/*"
102219        ],
102220        "description": "replace the specified StorageClass",
102221        "operationId": "replaceStorageV1StorageClass",
102222        "parameters": [
102223          {
102224            "in": "body",
102225            "name": "body",
102226            "required": true,
102227            "schema": {
102228              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102229            }
102230          },
102231          {
102232            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102233            "in": "query",
102234            "name": "dryRun",
102235            "type": "string",
102236            "uniqueItems": true
102237          },
102238          {
102239            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102240            "in": "query",
102241            "name": "fieldManager",
102242            "type": "string",
102243            "uniqueItems": true
102244          }
102245        ],
102246        "produces": [
102247          "application/json",
102248          "application/yaml",
102249          "application/vnd.kubernetes.protobuf"
102250        ],
102251        "responses": {
102252          "200": {
102253            "description": "OK",
102254            "schema": {
102255              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102256            }
102257          },
102258          "201": {
102259            "description": "Created",
102260            "schema": {
102261              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102262            }
102263          },
102264          "401": {
102265            "description": "Unauthorized"
102266          }
102267        },
102268        "schemes": [
102269          "https"
102270        ],
102271        "tags": [
102272          "storage_v1"
102273        ],
102274        "x-kubernetes-action": "put",
102275        "x-kubernetes-group-version-kind": {
102276          "group": "storage.k8s.io",
102277          "kind": "StorageClass",
102278          "version": "v1"
102279        }
102280      }
102281    },
102282    "/apis/storage.k8s.io/v1/volumeattachments": {
102283      "delete": {
102284        "consumes": [
102285          "*/*"
102286        ],
102287        "description": "delete collection of VolumeAttachment",
102288        "operationId": "deleteStorageV1CollectionVolumeAttachment",
102289        "parameters": [
102290          {
102291            "in": "body",
102292            "name": "body",
102293            "schema": {
102294              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102295            }
102296          },
102297          {
102298            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102299            "in": "query",
102300            "name": "continue",
102301            "type": "string",
102302            "uniqueItems": true
102303          },
102304          {
102305            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102306            "in": "query",
102307            "name": "dryRun",
102308            "type": "string",
102309            "uniqueItems": true
102310          },
102311          {
102312            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102313            "in": "query",
102314            "name": "fieldSelector",
102315            "type": "string",
102316            "uniqueItems": true
102317          },
102318          {
102319            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
102320            "in": "query",
102321            "name": "gracePeriodSeconds",
102322            "type": "integer",
102323            "uniqueItems": true
102324          },
102325          {
102326            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102327            "in": "query",
102328            "name": "labelSelector",
102329            "type": "string",
102330            "uniqueItems": true
102331          },
102332          {
102333            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102334            "in": "query",
102335            "name": "limit",
102336            "type": "integer",
102337            "uniqueItems": true
102338          },
102339          {
102340            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
102341            "in": "query",
102342            "name": "orphanDependents",
102343            "type": "boolean",
102344            "uniqueItems": true
102345          },
102346          {
102347            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
102348            "in": "query",
102349            "name": "propagationPolicy",
102350            "type": "string",
102351            "uniqueItems": true
102352          },
102353          {
102354            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102355            "in": "query",
102356            "name": "resourceVersion",
102357            "type": "string",
102358            "uniqueItems": true
102359          },
102360          {
102361            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102362            "in": "query",
102363            "name": "resourceVersionMatch",
102364            "type": "string",
102365            "uniqueItems": true
102366          },
102367          {
102368            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102369            "in": "query",
102370            "name": "timeoutSeconds",
102371            "type": "integer",
102372            "uniqueItems": true
102373          }
102374        ],
102375        "produces": [
102376          "application/json",
102377          "application/yaml",
102378          "application/vnd.kubernetes.protobuf"
102379        ],
102380        "responses": {
102381          "200": {
102382            "description": "OK",
102383            "schema": {
102384              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
102385            }
102386          },
102387          "401": {
102388            "description": "Unauthorized"
102389          }
102390        },
102391        "schemes": [
102392          "https"
102393        ],
102394        "tags": [
102395          "storage_v1"
102396        ],
102397        "x-kubernetes-action": "deletecollection",
102398        "x-kubernetes-group-version-kind": {
102399          "group": "storage.k8s.io",
102400          "kind": "VolumeAttachment",
102401          "version": "v1"
102402        }
102403      },
102404      "get": {
102405        "consumes": [
102406          "*/*"
102407        ],
102408        "description": "list or watch objects of kind VolumeAttachment",
102409        "operationId": "listStorageV1VolumeAttachment",
102410        "parameters": [
102411          {
102412            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
102413            "in": "query",
102414            "name": "allowWatchBookmarks",
102415            "type": "boolean",
102416            "uniqueItems": true
102417          },
102418          {
102419            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102420            "in": "query",
102421            "name": "continue",
102422            "type": "string",
102423            "uniqueItems": true
102424          },
102425          {
102426            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102427            "in": "query",
102428            "name": "fieldSelector",
102429            "type": "string",
102430            "uniqueItems": true
102431          },
102432          {
102433            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102434            "in": "query",
102435            "name": "labelSelector",
102436            "type": "string",
102437            "uniqueItems": true
102438          },
102439          {
102440            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102441            "in": "query",
102442            "name": "limit",
102443            "type": "integer",
102444            "uniqueItems": true
102445          },
102446          {
102447            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102448            "in": "query",
102449            "name": "resourceVersion",
102450            "type": "string",
102451            "uniqueItems": true
102452          },
102453          {
102454            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102455            "in": "query",
102456            "name": "resourceVersionMatch",
102457            "type": "string",
102458            "uniqueItems": true
102459          },
102460          {
102461            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102462            "in": "query",
102463            "name": "timeoutSeconds",
102464            "type": "integer",
102465            "uniqueItems": true
102466          },
102467          {
102468            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
102469            "in": "query",
102470            "name": "watch",
102471            "type": "boolean",
102472            "uniqueItems": true
102473          }
102474        ],
102475        "produces": [
102476          "application/json",
102477          "application/yaml",
102478          "application/vnd.kubernetes.protobuf",
102479          "application/json;stream=watch",
102480          "application/vnd.kubernetes.protobuf;stream=watch"
102481        ],
102482        "responses": {
102483          "200": {
102484            "description": "OK",
102485            "schema": {
102486              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentList"
102487            }
102488          },
102489          "401": {
102490            "description": "Unauthorized"
102491          }
102492        },
102493        "schemes": [
102494          "https"
102495        ],
102496        "tags": [
102497          "storage_v1"
102498        ],
102499        "x-kubernetes-action": "list",
102500        "x-kubernetes-group-version-kind": {
102501          "group": "storage.k8s.io",
102502          "kind": "VolumeAttachment",
102503          "version": "v1"
102504        }
102505      },
102506      "parameters": [
102507        {
102508          "description": "If 'true', then the output is pretty printed.",
102509          "in": "query",
102510          "name": "pretty",
102511          "type": "string",
102512          "uniqueItems": true
102513        }
102514      ],
102515      "post": {
102516        "consumes": [
102517          "*/*"
102518        ],
102519        "description": "create a VolumeAttachment",
102520        "operationId": "createStorageV1VolumeAttachment",
102521        "parameters": [
102522          {
102523            "in": "body",
102524            "name": "body",
102525            "required": true,
102526            "schema": {
102527              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102528            }
102529          },
102530          {
102531            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102532            "in": "query",
102533            "name": "dryRun",
102534            "type": "string",
102535            "uniqueItems": true
102536          },
102537          {
102538            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102539            "in": "query",
102540            "name": "fieldManager",
102541            "type": "string",
102542            "uniqueItems": true
102543          }
102544        ],
102545        "produces": [
102546          "application/json",
102547          "application/yaml",
102548          "application/vnd.kubernetes.protobuf"
102549        ],
102550        "responses": {
102551          "200": {
102552            "description": "OK",
102553            "schema": {
102554              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102555            }
102556          },
102557          "201": {
102558            "description": "Created",
102559            "schema": {
102560              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102561            }
102562          },
102563          "202": {
102564            "description": "Accepted",
102565            "schema": {
102566              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102567            }
102568          },
102569          "401": {
102570            "description": "Unauthorized"
102571          }
102572        },
102573        "schemes": [
102574          "https"
102575        ],
102576        "tags": [
102577          "storage_v1"
102578        ],
102579        "x-kubernetes-action": "post",
102580        "x-kubernetes-group-version-kind": {
102581          "group": "storage.k8s.io",
102582          "kind": "VolumeAttachment",
102583          "version": "v1"
102584        }
102585      }
102586    },
102587    "/apis/storage.k8s.io/v1/volumeattachments/{name}": {
102588      "delete": {
102589        "consumes": [
102590          "*/*"
102591        ],
102592        "description": "delete a VolumeAttachment",
102593        "operationId": "deleteStorageV1VolumeAttachment",
102594        "parameters": [
102595          {
102596            "in": "body",
102597            "name": "body",
102598            "schema": {
102599              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102600            }
102601          },
102602          {
102603            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102604            "in": "query",
102605            "name": "dryRun",
102606            "type": "string",
102607            "uniqueItems": true
102608          },
102609          {
102610            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
102611            "in": "query",
102612            "name": "gracePeriodSeconds",
102613            "type": "integer",
102614            "uniqueItems": true
102615          },
102616          {
102617            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
102618            "in": "query",
102619            "name": "orphanDependents",
102620            "type": "boolean",
102621            "uniqueItems": true
102622          },
102623          {
102624            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
102625            "in": "query",
102626            "name": "propagationPolicy",
102627            "type": "string",
102628            "uniqueItems": true
102629          }
102630        ],
102631        "produces": [
102632          "application/json",
102633          "application/yaml",
102634          "application/vnd.kubernetes.protobuf"
102635        ],
102636        "responses": {
102637          "200": {
102638            "description": "OK",
102639            "schema": {
102640              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102641            }
102642          },
102643          "202": {
102644            "description": "Accepted",
102645            "schema": {
102646              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102647            }
102648          },
102649          "401": {
102650            "description": "Unauthorized"
102651          }
102652        },
102653        "schemes": [
102654          "https"
102655        ],
102656        "tags": [
102657          "storage_v1"
102658        ],
102659        "x-kubernetes-action": "delete",
102660        "x-kubernetes-group-version-kind": {
102661          "group": "storage.k8s.io",
102662          "kind": "VolumeAttachment",
102663          "version": "v1"
102664        }
102665      },
102666      "get": {
102667        "consumes": [
102668          "*/*"
102669        ],
102670        "description": "read the specified VolumeAttachment",
102671        "operationId": "readStorageV1VolumeAttachment",
102672        "produces": [
102673          "application/json",
102674          "application/yaml",
102675          "application/vnd.kubernetes.protobuf"
102676        ],
102677        "responses": {
102678          "200": {
102679            "description": "OK",
102680            "schema": {
102681              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102682            }
102683          },
102684          "401": {
102685            "description": "Unauthorized"
102686          }
102687        },
102688        "schemes": [
102689          "https"
102690        ],
102691        "tags": [
102692          "storage_v1"
102693        ],
102694        "x-kubernetes-action": "get",
102695        "x-kubernetes-group-version-kind": {
102696          "group": "storage.k8s.io",
102697          "kind": "VolumeAttachment",
102698          "version": "v1"
102699        }
102700      },
102701      "parameters": [
102702        {
102703          "description": "name of the VolumeAttachment",
102704          "in": "path",
102705          "name": "name",
102706          "required": true,
102707          "type": "string",
102708          "uniqueItems": true
102709        },
102710        {
102711          "description": "If 'true', then the output is pretty printed.",
102712          "in": "query",
102713          "name": "pretty",
102714          "type": "string",
102715          "uniqueItems": true
102716        }
102717      ],
102718      "patch": {
102719        "consumes": [
102720          "application/json-patch+json",
102721          "application/merge-patch+json",
102722          "application/strategic-merge-patch+json",
102723          "application/apply-patch+yaml"
102724        ],
102725        "description": "partially update the specified VolumeAttachment",
102726        "operationId": "patchStorageV1VolumeAttachment",
102727        "parameters": [
102728          {
102729            "in": "body",
102730            "name": "body",
102731            "required": true,
102732            "schema": {
102733              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
102734            }
102735          },
102736          {
102737            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102738            "in": "query",
102739            "name": "dryRun",
102740            "type": "string",
102741            "uniqueItems": true
102742          },
102743          {
102744            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
102745            "in": "query",
102746            "name": "fieldManager",
102747            "type": "string",
102748            "uniqueItems": true
102749          },
102750          {
102751            "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.",
102752            "in": "query",
102753            "name": "force",
102754            "type": "boolean",
102755            "uniqueItems": true
102756          }
102757        ],
102758        "produces": [
102759          "application/json",
102760          "application/yaml",
102761          "application/vnd.kubernetes.protobuf"
102762        ],
102763        "responses": {
102764          "200": {
102765            "description": "OK",
102766            "schema": {
102767              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102768            }
102769          },
102770          "401": {
102771            "description": "Unauthorized"
102772          }
102773        },
102774        "schemes": [
102775          "https"
102776        ],
102777        "tags": [
102778          "storage_v1"
102779        ],
102780        "x-kubernetes-action": "patch",
102781        "x-kubernetes-group-version-kind": {
102782          "group": "storage.k8s.io",
102783          "kind": "VolumeAttachment",
102784          "version": "v1"
102785        }
102786      },
102787      "put": {
102788        "consumes": [
102789          "*/*"
102790        ],
102791        "description": "replace the specified VolumeAttachment",
102792        "operationId": "replaceStorageV1VolumeAttachment",
102793        "parameters": [
102794          {
102795            "in": "body",
102796            "name": "body",
102797            "required": true,
102798            "schema": {
102799              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102800            }
102801          },
102802          {
102803            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102804            "in": "query",
102805            "name": "dryRun",
102806            "type": "string",
102807            "uniqueItems": true
102808          },
102809          {
102810            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102811            "in": "query",
102812            "name": "fieldManager",
102813            "type": "string",
102814            "uniqueItems": true
102815          }
102816        ],
102817        "produces": [
102818          "application/json",
102819          "application/yaml",
102820          "application/vnd.kubernetes.protobuf"
102821        ],
102822        "responses": {
102823          "200": {
102824            "description": "OK",
102825            "schema": {
102826              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102827            }
102828          },
102829          "201": {
102830            "description": "Created",
102831            "schema": {
102832              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102833            }
102834          },
102835          "401": {
102836            "description": "Unauthorized"
102837          }
102838        },
102839        "schemes": [
102840          "https"
102841        ],
102842        "tags": [
102843          "storage_v1"
102844        ],
102845        "x-kubernetes-action": "put",
102846        "x-kubernetes-group-version-kind": {
102847          "group": "storage.k8s.io",
102848          "kind": "VolumeAttachment",
102849          "version": "v1"
102850        }
102851      }
102852    },
102853    "/apis/storage.k8s.io/v1/volumeattachments/{name}/status": {
102854      "get": {
102855        "consumes": [
102856          "*/*"
102857        ],
102858        "description": "read status of the specified VolumeAttachment",
102859        "operationId": "readStorageV1VolumeAttachmentStatus",
102860        "produces": [
102861          "application/json",
102862          "application/yaml",
102863          "application/vnd.kubernetes.protobuf"
102864        ],
102865        "responses": {
102866          "200": {
102867            "description": "OK",
102868            "schema": {
102869              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102870            }
102871          },
102872          "401": {
102873            "description": "Unauthorized"
102874          }
102875        },
102876        "schemes": [
102877          "https"
102878        ],
102879        "tags": [
102880          "storage_v1"
102881        ],
102882        "x-kubernetes-action": "get",
102883        "x-kubernetes-group-version-kind": {
102884          "group": "storage.k8s.io",
102885          "kind": "VolumeAttachment",
102886          "version": "v1"
102887        }
102888      },
102889      "parameters": [
102890        {
102891          "description": "name of the VolumeAttachment",
102892          "in": "path",
102893          "name": "name",
102894          "required": true,
102895          "type": "string",
102896          "uniqueItems": true
102897        },
102898        {
102899          "description": "If 'true', then the output is pretty printed.",
102900          "in": "query",
102901          "name": "pretty",
102902          "type": "string",
102903          "uniqueItems": true
102904        }
102905      ],
102906      "patch": {
102907        "consumes": [
102908          "application/json-patch+json",
102909          "application/merge-patch+json",
102910          "application/strategic-merge-patch+json",
102911          "application/apply-patch+yaml"
102912        ],
102913        "description": "partially update status of the specified VolumeAttachment",
102914        "operationId": "patchStorageV1VolumeAttachmentStatus",
102915        "parameters": [
102916          {
102917            "in": "body",
102918            "name": "body",
102919            "required": true,
102920            "schema": {
102921              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
102922            }
102923          },
102924          {
102925            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102926            "in": "query",
102927            "name": "dryRun",
102928            "type": "string",
102929            "uniqueItems": true
102930          },
102931          {
102932            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
102933            "in": "query",
102934            "name": "fieldManager",
102935            "type": "string",
102936            "uniqueItems": true
102937          },
102938          {
102939            "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.",
102940            "in": "query",
102941            "name": "force",
102942            "type": "boolean",
102943            "uniqueItems": true
102944          }
102945        ],
102946        "produces": [
102947          "application/json",
102948          "application/yaml",
102949          "application/vnd.kubernetes.protobuf"
102950        ],
102951        "responses": {
102952          "200": {
102953            "description": "OK",
102954            "schema": {
102955              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102956            }
102957          },
102958          "401": {
102959            "description": "Unauthorized"
102960          }
102961        },
102962        "schemes": [
102963          "https"
102964        ],
102965        "tags": [
102966          "storage_v1"
102967        ],
102968        "x-kubernetes-action": "patch",
102969        "x-kubernetes-group-version-kind": {
102970          "group": "storage.k8s.io",
102971          "kind": "VolumeAttachment",
102972          "version": "v1"
102973        }
102974      },
102975      "put": {
102976        "consumes": [
102977          "*/*"
102978        ],
102979        "description": "replace status of the specified VolumeAttachment",
102980        "operationId": "replaceStorageV1VolumeAttachmentStatus",
102981        "parameters": [
102982          {
102983            "in": "body",
102984            "name": "body",
102985            "required": true,
102986            "schema": {
102987              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102988            }
102989          },
102990          {
102991            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102992            "in": "query",
102993            "name": "dryRun",
102994            "type": "string",
102995            "uniqueItems": true
102996          },
102997          {
102998            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102999            "in": "query",
103000            "name": "fieldManager",
103001            "type": "string",
103002            "uniqueItems": true
103003          }
103004        ],
103005        "produces": [
103006          "application/json",
103007          "application/yaml",
103008          "application/vnd.kubernetes.protobuf"
103009        ],
103010        "responses": {
103011          "200": {
103012            "description": "OK",
103013            "schema": {
103014              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
103015            }
103016          },
103017          "201": {
103018            "description": "Created",
103019            "schema": {
103020              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
103021            }
103022          },
103023          "401": {
103024            "description": "Unauthorized"
103025          }
103026        },
103027        "schemes": [
103028          "https"
103029        ],
103030        "tags": [
103031          "storage_v1"
103032        ],
103033        "x-kubernetes-action": "put",
103034        "x-kubernetes-group-version-kind": {
103035          "group": "storage.k8s.io",
103036          "kind": "VolumeAttachment",
103037          "version": "v1"
103038        }
103039      }
103040    },
103041    "/apis/storage.k8s.io/v1/watch/csidrivers": {
103042      "get": {
103043        "consumes": [
103044          "*/*"
103045        ],
103046        "description": "watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead.",
103047        "operationId": "watchStorageV1CSIDriverList",
103048        "produces": [
103049          "application/json",
103050          "application/yaml",
103051          "application/vnd.kubernetes.protobuf",
103052          "application/json;stream=watch",
103053          "application/vnd.kubernetes.protobuf;stream=watch"
103054        ],
103055        "responses": {
103056          "200": {
103057            "description": "OK",
103058            "schema": {
103059              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103060            }
103061          },
103062          "401": {
103063            "description": "Unauthorized"
103064          }
103065        },
103066        "schemes": [
103067          "https"
103068        ],
103069        "tags": [
103070          "storage_v1"
103071        ],
103072        "x-kubernetes-action": "watchlist",
103073        "x-kubernetes-group-version-kind": {
103074          "group": "storage.k8s.io",
103075          "kind": "CSIDriver",
103076          "version": "v1"
103077        }
103078      },
103079      "parameters": [
103080        {
103081          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103082          "in": "query",
103083          "name": "allowWatchBookmarks",
103084          "type": "boolean",
103085          "uniqueItems": true
103086        },
103087        {
103088          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103089          "in": "query",
103090          "name": "continue",
103091          "type": "string",
103092          "uniqueItems": true
103093        },
103094        {
103095          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103096          "in": "query",
103097          "name": "fieldSelector",
103098          "type": "string",
103099          "uniqueItems": true
103100        },
103101        {
103102          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103103          "in": "query",
103104          "name": "labelSelector",
103105          "type": "string",
103106          "uniqueItems": true
103107        },
103108        {
103109          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103110          "in": "query",
103111          "name": "limit",
103112          "type": "integer",
103113          "uniqueItems": true
103114        },
103115        {
103116          "description": "If 'true', then the output is pretty printed.",
103117          "in": "query",
103118          "name": "pretty",
103119          "type": "string",
103120          "uniqueItems": true
103121        },
103122        {
103123          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103124          "in": "query",
103125          "name": "resourceVersion",
103126          "type": "string",
103127          "uniqueItems": true
103128        },
103129        {
103130          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103131          "in": "query",
103132          "name": "resourceVersionMatch",
103133          "type": "string",
103134          "uniqueItems": true
103135        },
103136        {
103137          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103138          "in": "query",
103139          "name": "timeoutSeconds",
103140          "type": "integer",
103141          "uniqueItems": true
103142        },
103143        {
103144          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103145          "in": "query",
103146          "name": "watch",
103147          "type": "boolean",
103148          "uniqueItems": true
103149        }
103150      ]
103151    },
103152    "/apis/storage.k8s.io/v1/watch/csidrivers/{name}": {
103153      "get": {
103154        "consumes": [
103155          "*/*"
103156        ],
103157        "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.",
103158        "operationId": "watchStorageV1CSIDriver",
103159        "produces": [
103160          "application/json",
103161          "application/yaml",
103162          "application/vnd.kubernetes.protobuf",
103163          "application/json;stream=watch",
103164          "application/vnd.kubernetes.protobuf;stream=watch"
103165        ],
103166        "responses": {
103167          "200": {
103168            "description": "OK",
103169            "schema": {
103170              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103171            }
103172          },
103173          "401": {
103174            "description": "Unauthorized"
103175          }
103176        },
103177        "schemes": [
103178          "https"
103179        ],
103180        "tags": [
103181          "storage_v1"
103182        ],
103183        "x-kubernetes-action": "watch",
103184        "x-kubernetes-group-version-kind": {
103185          "group": "storage.k8s.io",
103186          "kind": "CSIDriver",
103187          "version": "v1"
103188        }
103189      },
103190      "parameters": [
103191        {
103192          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103193          "in": "query",
103194          "name": "allowWatchBookmarks",
103195          "type": "boolean",
103196          "uniqueItems": true
103197        },
103198        {
103199          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103200          "in": "query",
103201          "name": "continue",
103202          "type": "string",
103203          "uniqueItems": true
103204        },
103205        {
103206          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103207          "in": "query",
103208          "name": "fieldSelector",
103209          "type": "string",
103210          "uniqueItems": true
103211        },
103212        {
103213          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103214          "in": "query",
103215          "name": "labelSelector",
103216          "type": "string",
103217          "uniqueItems": true
103218        },
103219        {
103220          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103221          "in": "query",
103222          "name": "limit",
103223          "type": "integer",
103224          "uniqueItems": true
103225        },
103226        {
103227          "description": "name of the CSIDriver",
103228          "in": "path",
103229          "name": "name",
103230          "required": true,
103231          "type": "string",
103232          "uniqueItems": true
103233        },
103234        {
103235          "description": "If 'true', then the output is pretty printed.",
103236          "in": "query",
103237          "name": "pretty",
103238          "type": "string",
103239          "uniqueItems": true
103240        },
103241        {
103242          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103243          "in": "query",
103244          "name": "resourceVersion",
103245          "type": "string",
103246          "uniqueItems": true
103247        },
103248        {
103249          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103250          "in": "query",
103251          "name": "resourceVersionMatch",
103252          "type": "string",
103253          "uniqueItems": true
103254        },
103255        {
103256          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103257          "in": "query",
103258          "name": "timeoutSeconds",
103259          "type": "integer",
103260          "uniqueItems": true
103261        },
103262        {
103263          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103264          "in": "query",
103265          "name": "watch",
103266          "type": "boolean",
103267          "uniqueItems": true
103268        }
103269      ]
103270    },
103271    "/apis/storage.k8s.io/v1/watch/csinodes": {
103272      "get": {
103273        "consumes": [
103274          "*/*"
103275        ],
103276        "description": "watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead.",
103277        "operationId": "watchStorageV1CSINodeList",
103278        "produces": [
103279          "application/json",
103280          "application/yaml",
103281          "application/vnd.kubernetes.protobuf",
103282          "application/json;stream=watch",
103283          "application/vnd.kubernetes.protobuf;stream=watch"
103284        ],
103285        "responses": {
103286          "200": {
103287            "description": "OK",
103288            "schema": {
103289              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103290            }
103291          },
103292          "401": {
103293            "description": "Unauthorized"
103294          }
103295        },
103296        "schemes": [
103297          "https"
103298        ],
103299        "tags": [
103300          "storage_v1"
103301        ],
103302        "x-kubernetes-action": "watchlist",
103303        "x-kubernetes-group-version-kind": {
103304          "group": "storage.k8s.io",
103305          "kind": "CSINode",
103306          "version": "v1"
103307        }
103308      },
103309      "parameters": [
103310        {
103311          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103312          "in": "query",
103313          "name": "allowWatchBookmarks",
103314          "type": "boolean",
103315          "uniqueItems": true
103316        },
103317        {
103318          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103319          "in": "query",
103320          "name": "continue",
103321          "type": "string",
103322          "uniqueItems": true
103323        },
103324        {
103325          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103326          "in": "query",
103327          "name": "fieldSelector",
103328          "type": "string",
103329          "uniqueItems": true
103330        },
103331        {
103332          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103333          "in": "query",
103334          "name": "labelSelector",
103335          "type": "string",
103336          "uniqueItems": true
103337        },
103338        {
103339          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103340          "in": "query",
103341          "name": "limit",
103342          "type": "integer",
103343          "uniqueItems": true
103344        },
103345        {
103346          "description": "If 'true', then the output is pretty printed.",
103347          "in": "query",
103348          "name": "pretty",
103349          "type": "string",
103350          "uniqueItems": true
103351        },
103352        {
103353          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103354          "in": "query",
103355          "name": "resourceVersion",
103356          "type": "string",
103357          "uniqueItems": true
103358        },
103359        {
103360          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103361          "in": "query",
103362          "name": "resourceVersionMatch",
103363          "type": "string",
103364          "uniqueItems": true
103365        },
103366        {
103367          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103368          "in": "query",
103369          "name": "timeoutSeconds",
103370          "type": "integer",
103371          "uniqueItems": true
103372        },
103373        {
103374          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103375          "in": "query",
103376          "name": "watch",
103377          "type": "boolean",
103378          "uniqueItems": true
103379        }
103380      ]
103381    },
103382    "/apis/storage.k8s.io/v1/watch/csinodes/{name}": {
103383      "get": {
103384        "consumes": [
103385          "*/*"
103386        ],
103387        "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.",
103388        "operationId": "watchStorageV1CSINode",
103389        "produces": [
103390          "application/json",
103391          "application/yaml",
103392          "application/vnd.kubernetes.protobuf",
103393          "application/json;stream=watch",
103394          "application/vnd.kubernetes.protobuf;stream=watch"
103395        ],
103396        "responses": {
103397          "200": {
103398            "description": "OK",
103399            "schema": {
103400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103401            }
103402          },
103403          "401": {
103404            "description": "Unauthorized"
103405          }
103406        },
103407        "schemes": [
103408          "https"
103409        ],
103410        "tags": [
103411          "storage_v1"
103412        ],
103413        "x-kubernetes-action": "watch",
103414        "x-kubernetes-group-version-kind": {
103415          "group": "storage.k8s.io",
103416          "kind": "CSINode",
103417          "version": "v1"
103418        }
103419      },
103420      "parameters": [
103421        {
103422          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103423          "in": "query",
103424          "name": "allowWatchBookmarks",
103425          "type": "boolean",
103426          "uniqueItems": true
103427        },
103428        {
103429          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103430          "in": "query",
103431          "name": "continue",
103432          "type": "string",
103433          "uniqueItems": true
103434        },
103435        {
103436          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103437          "in": "query",
103438          "name": "fieldSelector",
103439          "type": "string",
103440          "uniqueItems": true
103441        },
103442        {
103443          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103444          "in": "query",
103445          "name": "labelSelector",
103446          "type": "string",
103447          "uniqueItems": true
103448        },
103449        {
103450          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103451          "in": "query",
103452          "name": "limit",
103453          "type": "integer",
103454          "uniqueItems": true
103455        },
103456        {
103457          "description": "name of the CSINode",
103458          "in": "path",
103459          "name": "name",
103460          "required": true,
103461          "type": "string",
103462          "uniqueItems": true
103463        },
103464        {
103465          "description": "If 'true', then the output is pretty printed.",
103466          "in": "query",
103467          "name": "pretty",
103468          "type": "string",
103469          "uniqueItems": true
103470        },
103471        {
103472          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103473          "in": "query",
103474          "name": "resourceVersion",
103475          "type": "string",
103476          "uniqueItems": true
103477        },
103478        {
103479          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103480          "in": "query",
103481          "name": "resourceVersionMatch",
103482          "type": "string",
103483          "uniqueItems": true
103484        },
103485        {
103486          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103487          "in": "query",
103488          "name": "timeoutSeconds",
103489          "type": "integer",
103490          "uniqueItems": true
103491        },
103492        {
103493          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103494          "in": "query",
103495          "name": "watch",
103496          "type": "boolean",
103497          "uniqueItems": true
103498        }
103499      ]
103500    },
103501    "/apis/storage.k8s.io/v1/watch/storageclasses": {
103502      "get": {
103503        "consumes": [
103504          "*/*"
103505        ],
103506        "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.",
103507        "operationId": "watchStorageV1StorageClassList",
103508        "produces": [
103509          "application/json",
103510          "application/yaml",
103511          "application/vnd.kubernetes.protobuf",
103512          "application/json;stream=watch",
103513          "application/vnd.kubernetes.protobuf;stream=watch"
103514        ],
103515        "responses": {
103516          "200": {
103517            "description": "OK",
103518            "schema": {
103519              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103520            }
103521          },
103522          "401": {
103523            "description": "Unauthorized"
103524          }
103525        },
103526        "schemes": [
103527          "https"
103528        ],
103529        "tags": [
103530          "storage_v1"
103531        ],
103532        "x-kubernetes-action": "watchlist",
103533        "x-kubernetes-group-version-kind": {
103534          "group": "storage.k8s.io",
103535          "kind": "StorageClass",
103536          "version": "v1"
103537        }
103538      },
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.",
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": "If 'true', then the output is pretty printed.",
103577          "in": "query",
103578          "name": "pretty",
103579          "type": "string",
103580          "uniqueItems": true
103581        },
103582        {
103583          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103584          "in": "query",
103585          "name": "resourceVersion",
103586          "type": "string",
103587          "uniqueItems": true
103588        },
103589        {
103590          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103591          "in": "query",
103592          "name": "resourceVersionMatch",
103593          "type": "string",
103594          "uniqueItems": true
103595        },
103596        {
103597          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103598          "in": "query",
103599          "name": "timeoutSeconds",
103600          "type": "integer",
103601          "uniqueItems": true
103602        },
103603        {
103604          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103605          "in": "query",
103606          "name": "watch",
103607          "type": "boolean",
103608          "uniqueItems": true
103609        }
103610      ]
103611    },
103612    "/apis/storage.k8s.io/v1/watch/storageclasses/{name}": {
103613      "get": {
103614        "consumes": [
103615          "*/*"
103616        ],
103617        "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.",
103618        "operationId": "watchStorageV1StorageClass",
103619        "produces": [
103620          "application/json",
103621          "application/yaml",
103622          "application/vnd.kubernetes.protobuf",
103623          "application/json;stream=watch",
103624          "application/vnd.kubernetes.protobuf;stream=watch"
103625        ],
103626        "responses": {
103627          "200": {
103628            "description": "OK",
103629            "schema": {
103630              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103631            }
103632          },
103633          "401": {
103634            "description": "Unauthorized"
103635          }
103636        },
103637        "schemes": [
103638          "https"
103639        ],
103640        "tags": [
103641          "storage_v1"
103642        ],
103643        "x-kubernetes-action": "watch",
103644        "x-kubernetes-group-version-kind": {
103645          "group": "storage.k8s.io",
103646          "kind": "StorageClass",
103647          "version": "v1"
103648        }
103649      },
103650      "parameters": [
103651        {
103652          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103653          "in": "query",
103654          "name": "allowWatchBookmarks",
103655          "type": "boolean",
103656          "uniqueItems": true
103657        },
103658        {
103659          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103660          "in": "query",
103661          "name": "continue",
103662          "type": "string",
103663          "uniqueItems": true
103664        },
103665        {
103666          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103667          "in": "query",
103668          "name": "fieldSelector",
103669          "type": "string",
103670          "uniqueItems": true
103671        },
103672        {
103673          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103674          "in": "query",
103675          "name": "labelSelector",
103676          "type": "string",
103677          "uniqueItems": true
103678        },
103679        {
103680          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103681          "in": "query",
103682          "name": "limit",
103683          "type": "integer",
103684          "uniqueItems": true
103685        },
103686        {
103687          "description": "name of the StorageClass",
103688          "in": "path",
103689          "name": "name",
103690          "required": true,
103691          "type": "string",
103692          "uniqueItems": true
103693        },
103694        {
103695          "description": "If 'true', then the output is pretty printed.",
103696          "in": "query",
103697          "name": "pretty",
103698          "type": "string",
103699          "uniqueItems": true
103700        },
103701        {
103702          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103703          "in": "query",
103704          "name": "resourceVersion",
103705          "type": "string",
103706          "uniqueItems": true
103707        },
103708        {
103709          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103710          "in": "query",
103711          "name": "resourceVersionMatch",
103712          "type": "string",
103713          "uniqueItems": true
103714        },
103715        {
103716          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103717          "in": "query",
103718          "name": "timeoutSeconds",
103719          "type": "integer",
103720          "uniqueItems": true
103721        },
103722        {
103723          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103724          "in": "query",
103725          "name": "watch",
103726          "type": "boolean",
103727          "uniqueItems": true
103728        }
103729      ]
103730    },
103731    "/apis/storage.k8s.io/v1/watch/volumeattachments": {
103732      "get": {
103733        "consumes": [
103734          "*/*"
103735        ],
103736        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
103737        "operationId": "watchStorageV1VolumeAttachmentList",
103738        "produces": [
103739          "application/json",
103740          "application/yaml",
103741          "application/vnd.kubernetes.protobuf",
103742          "application/json;stream=watch",
103743          "application/vnd.kubernetes.protobuf;stream=watch"
103744        ],
103745        "responses": {
103746          "200": {
103747            "description": "OK",
103748            "schema": {
103749              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103750            }
103751          },
103752          "401": {
103753            "description": "Unauthorized"
103754          }
103755        },
103756        "schemes": [
103757          "https"
103758        ],
103759        "tags": [
103760          "storage_v1"
103761        ],
103762        "x-kubernetes-action": "watchlist",
103763        "x-kubernetes-group-version-kind": {
103764          "group": "storage.k8s.io",
103765          "kind": "VolumeAttachment",
103766          "version": "v1"
103767        }
103768      },
103769      "parameters": [
103770        {
103771          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103772          "in": "query",
103773          "name": "allowWatchBookmarks",
103774          "type": "boolean",
103775          "uniqueItems": true
103776        },
103777        {
103778          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103779          "in": "query",
103780          "name": "continue",
103781          "type": "string",
103782          "uniqueItems": true
103783        },
103784        {
103785          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103786          "in": "query",
103787          "name": "fieldSelector",
103788          "type": "string",
103789          "uniqueItems": true
103790        },
103791        {
103792          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103793          "in": "query",
103794          "name": "labelSelector",
103795          "type": "string",
103796          "uniqueItems": true
103797        },
103798        {
103799          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103800          "in": "query",
103801          "name": "limit",
103802          "type": "integer",
103803          "uniqueItems": true
103804        },
103805        {
103806          "description": "If 'true', then the output is pretty printed.",
103807          "in": "query",
103808          "name": "pretty",
103809          "type": "string",
103810          "uniqueItems": true
103811        },
103812        {
103813          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103814          "in": "query",
103815          "name": "resourceVersion",
103816          "type": "string",
103817          "uniqueItems": true
103818        },
103819        {
103820          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103821          "in": "query",
103822          "name": "resourceVersionMatch",
103823          "type": "string",
103824          "uniqueItems": true
103825        },
103826        {
103827          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103828          "in": "query",
103829          "name": "timeoutSeconds",
103830          "type": "integer",
103831          "uniqueItems": true
103832        },
103833        {
103834          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103835          "in": "query",
103836          "name": "watch",
103837          "type": "boolean",
103838          "uniqueItems": true
103839        }
103840      ]
103841    },
103842    "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}": {
103843      "get": {
103844        "consumes": [
103845          "*/*"
103846        ],
103847        "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.",
103848        "operationId": "watchStorageV1VolumeAttachment",
103849        "produces": [
103850          "application/json",
103851          "application/yaml",
103852          "application/vnd.kubernetes.protobuf",
103853          "application/json;stream=watch",
103854          "application/vnd.kubernetes.protobuf;stream=watch"
103855        ],
103856        "responses": {
103857          "200": {
103858            "description": "OK",
103859            "schema": {
103860              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103861            }
103862          },
103863          "401": {
103864            "description": "Unauthorized"
103865          }
103866        },
103867        "schemes": [
103868          "https"
103869        ],
103870        "tags": [
103871          "storage_v1"
103872        ],
103873        "x-kubernetes-action": "watch",
103874        "x-kubernetes-group-version-kind": {
103875          "group": "storage.k8s.io",
103876          "kind": "VolumeAttachment",
103877          "version": "v1"
103878        }
103879      },
103880      "parameters": [
103881        {
103882          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103883          "in": "query",
103884          "name": "allowWatchBookmarks",
103885          "type": "boolean",
103886          "uniqueItems": true
103887        },
103888        {
103889          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103890          "in": "query",
103891          "name": "continue",
103892          "type": "string",
103893          "uniqueItems": true
103894        },
103895        {
103896          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103897          "in": "query",
103898          "name": "fieldSelector",
103899          "type": "string",
103900          "uniqueItems": true
103901        },
103902        {
103903          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103904          "in": "query",
103905          "name": "labelSelector",
103906          "type": "string",
103907          "uniqueItems": true
103908        },
103909        {
103910          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103911          "in": "query",
103912          "name": "limit",
103913          "type": "integer",
103914          "uniqueItems": true
103915        },
103916        {
103917          "description": "name of the VolumeAttachment",
103918          "in": "path",
103919          "name": "name",
103920          "required": true,
103921          "type": "string",
103922          "uniqueItems": true
103923        },
103924        {
103925          "description": "If 'true', then the output is pretty printed.",
103926          "in": "query",
103927          "name": "pretty",
103928          "type": "string",
103929          "uniqueItems": true
103930        },
103931        {
103932          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103933          "in": "query",
103934          "name": "resourceVersion",
103935          "type": "string",
103936          "uniqueItems": true
103937        },
103938        {
103939          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103940          "in": "query",
103941          "name": "resourceVersionMatch",
103942          "type": "string",
103943          "uniqueItems": true
103944        },
103945        {
103946          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103947          "in": "query",
103948          "name": "timeoutSeconds",
103949          "type": "integer",
103950          "uniqueItems": true
103951        },
103952        {
103953          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103954          "in": "query",
103955          "name": "watch",
103956          "type": "boolean",
103957          "uniqueItems": true
103958        }
103959      ]
103960    },
103961    "/apis/storage.k8s.io/v1alpha1/": {
103962      "get": {
103963        "consumes": [
103964          "application/json",
103965          "application/yaml",
103966          "application/vnd.kubernetes.protobuf"
103967        ],
103968        "description": "get available resources",
103969        "operationId": "getStorageV1alpha1APIResources",
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.apimachinery.pkg.apis.meta.v1.APIResourceList"
103980            }
103981          },
103982          "401": {
103983            "description": "Unauthorized"
103984          }
103985        },
103986        "schemes": [
103987          "https"
103988        ],
103989        "tags": [
103990          "storage_v1alpha1"
103991        ]
103992      }
103993    },
103994    "/apis/storage.k8s.io/v1alpha1/csistoragecapacities": {
103995      "get": {
103996        "consumes": [
103997          "*/*"
103998        ],
103999        "description": "list or watch objects of kind CSIStorageCapacity",
104000        "operationId": "listStorageV1alpha1CSIStorageCapacityForAllNamespaces",
104001        "produces": [
104002          "application/json",
104003          "application/yaml",
104004          "application/vnd.kubernetes.protobuf",
104005          "application/json;stream=watch",
104006          "application/vnd.kubernetes.protobuf;stream=watch"
104007        ],
104008        "responses": {
104009          "200": {
104010            "description": "OK",
104011            "schema": {
104012              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacityList"
104013            }
104014          },
104015          "401": {
104016            "description": "Unauthorized"
104017          }
104018        },
104019        "schemes": [
104020          "https"
104021        ],
104022        "tags": [
104023          "storage_v1alpha1"
104024        ],
104025        "x-kubernetes-action": "list",
104026        "x-kubernetes-group-version-kind": {
104027          "group": "storage.k8s.io",
104028          "kind": "CSIStorageCapacity",
104029          "version": "v1alpha1"
104030        }
104031      },
104032      "parameters": [
104033        {
104034          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
104035          "in": "query",
104036          "name": "allowWatchBookmarks",
104037          "type": "boolean",
104038          "uniqueItems": true
104039        },
104040        {
104041          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104042          "in": "query",
104043          "name": "continue",
104044          "type": "string",
104045          "uniqueItems": true
104046        },
104047        {
104048          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104049          "in": "query",
104050          "name": "fieldSelector",
104051          "type": "string",
104052          "uniqueItems": true
104053        },
104054        {
104055          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104056          "in": "query",
104057          "name": "labelSelector",
104058          "type": "string",
104059          "uniqueItems": true
104060        },
104061        {
104062          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104063          "in": "query",
104064          "name": "limit",
104065          "type": "integer",
104066          "uniqueItems": true
104067        },
104068        {
104069          "description": "If 'true', then the output is pretty printed.",
104070          "in": "query",
104071          "name": "pretty",
104072          "type": "string",
104073          "uniqueItems": true
104074        },
104075        {
104076          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104077          "in": "query",
104078          "name": "resourceVersion",
104079          "type": "string",
104080          "uniqueItems": true
104081        },
104082        {
104083          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104084          "in": "query",
104085          "name": "resourceVersionMatch",
104086          "type": "string",
104087          "uniqueItems": true
104088        },
104089        {
104090          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104091          "in": "query",
104092          "name": "timeoutSeconds",
104093          "type": "integer",
104094          "uniqueItems": true
104095        },
104096        {
104097          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104098          "in": "query",
104099          "name": "watch",
104100          "type": "boolean",
104101          "uniqueItems": true
104102        }
104103      ]
104104    },
104105    "/apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities": {
104106      "delete": {
104107        "consumes": [
104108          "*/*"
104109        ],
104110        "description": "delete collection of CSIStorageCapacity",
104111        "operationId": "deleteStorageV1alpha1CollectionNamespacedCSIStorageCapacity",
104112        "parameters": [
104113          {
104114            "in": "body",
104115            "name": "body",
104116            "schema": {
104117              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104118            }
104119          },
104120          {
104121            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104122            "in": "query",
104123            "name": "continue",
104124            "type": "string",
104125            "uniqueItems": true
104126          },
104127          {
104128            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104129            "in": "query",
104130            "name": "dryRun",
104131            "type": "string",
104132            "uniqueItems": true
104133          },
104134          {
104135            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104136            "in": "query",
104137            "name": "fieldSelector",
104138            "type": "string",
104139            "uniqueItems": true
104140          },
104141          {
104142            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
104143            "in": "query",
104144            "name": "gracePeriodSeconds",
104145            "type": "integer",
104146            "uniqueItems": true
104147          },
104148          {
104149            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104150            "in": "query",
104151            "name": "labelSelector",
104152            "type": "string",
104153            "uniqueItems": true
104154          },
104155          {
104156            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104157            "in": "query",
104158            "name": "limit",
104159            "type": "integer",
104160            "uniqueItems": true
104161          },
104162          {
104163            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
104164            "in": "query",
104165            "name": "orphanDependents",
104166            "type": "boolean",
104167            "uniqueItems": true
104168          },
104169          {
104170            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
104171            "in": "query",
104172            "name": "propagationPolicy",
104173            "type": "string",
104174            "uniqueItems": true
104175          },
104176          {
104177            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104178            "in": "query",
104179            "name": "resourceVersion",
104180            "type": "string",
104181            "uniqueItems": true
104182          },
104183          {
104184            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104185            "in": "query",
104186            "name": "resourceVersionMatch",
104187            "type": "string",
104188            "uniqueItems": true
104189          },
104190          {
104191            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104192            "in": "query",
104193            "name": "timeoutSeconds",
104194            "type": "integer",
104195            "uniqueItems": true
104196          }
104197        ],
104198        "produces": [
104199          "application/json",
104200          "application/yaml",
104201          "application/vnd.kubernetes.protobuf"
104202        ],
104203        "responses": {
104204          "200": {
104205            "description": "OK",
104206            "schema": {
104207              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104208            }
104209          },
104210          "401": {
104211            "description": "Unauthorized"
104212          }
104213        },
104214        "schemes": [
104215          "https"
104216        ],
104217        "tags": [
104218          "storage_v1alpha1"
104219        ],
104220        "x-kubernetes-action": "deletecollection",
104221        "x-kubernetes-group-version-kind": {
104222          "group": "storage.k8s.io",
104223          "kind": "CSIStorageCapacity",
104224          "version": "v1alpha1"
104225        }
104226      },
104227      "get": {
104228        "consumes": [
104229          "*/*"
104230        ],
104231        "description": "list or watch objects of kind CSIStorageCapacity",
104232        "operationId": "listStorageV1alpha1NamespacedCSIStorageCapacity",
104233        "parameters": [
104234          {
104235            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
104236            "in": "query",
104237            "name": "allowWatchBookmarks",
104238            "type": "boolean",
104239            "uniqueItems": true
104240          },
104241          {
104242            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104243            "in": "query",
104244            "name": "continue",
104245            "type": "string",
104246            "uniqueItems": true
104247          },
104248          {
104249            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104250            "in": "query",
104251            "name": "fieldSelector",
104252            "type": "string",
104253            "uniqueItems": true
104254          },
104255          {
104256            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104257            "in": "query",
104258            "name": "labelSelector",
104259            "type": "string",
104260            "uniqueItems": true
104261          },
104262          {
104263            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104264            "in": "query",
104265            "name": "limit",
104266            "type": "integer",
104267            "uniqueItems": true
104268          },
104269          {
104270            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104271            "in": "query",
104272            "name": "resourceVersion",
104273            "type": "string",
104274            "uniqueItems": true
104275          },
104276          {
104277            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104278            "in": "query",
104279            "name": "resourceVersionMatch",
104280            "type": "string",
104281            "uniqueItems": true
104282          },
104283          {
104284            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104285            "in": "query",
104286            "name": "timeoutSeconds",
104287            "type": "integer",
104288            "uniqueItems": true
104289          },
104290          {
104291            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104292            "in": "query",
104293            "name": "watch",
104294            "type": "boolean",
104295            "uniqueItems": true
104296          }
104297        ],
104298        "produces": [
104299          "application/json",
104300          "application/yaml",
104301          "application/vnd.kubernetes.protobuf",
104302          "application/json;stream=watch",
104303          "application/vnd.kubernetes.protobuf;stream=watch"
104304        ],
104305        "responses": {
104306          "200": {
104307            "description": "OK",
104308            "schema": {
104309              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacityList"
104310            }
104311          },
104312          "401": {
104313            "description": "Unauthorized"
104314          }
104315        },
104316        "schemes": [
104317          "https"
104318        ],
104319        "tags": [
104320          "storage_v1alpha1"
104321        ],
104322        "x-kubernetes-action": "list",
104323        "x-kubernetes-group-version-kind": {
104324          "group": "storage.k8s.io",
104325          "kind": "CSIStorageCapacity",
104326          "version": "v1alpha1"
104327        }
104328      },
104329      "parameters": [
104330        {
104331          "description": "object name and auth scope, such as for teams and projects",
104332          "in": "path",
104333          "name": "namespace",
104334          "required": true,
104335          "type": "string",
104336          "uniqueItems": true
104337        },
104338        {
104339          "description": "If 'true', then the output is pretty printed.",
104340          "in": "query",
104341          "name": "pretty",
104342          "type": "string",
104343          "uniqueItems": true
104344        }
104345      ],
104346      "post": {
104347        "consumes": [
104348          "*/*"
104349        ],
104350        "description": "create a CSIStorageCapacity",
104351        "operationId": "createStorageV1alpha1NamespacedCSIStorageCapacity",
104352        "parameters": [
104353          {
104354            "in": "body",
104355            "name": "body",
104356            "required": true,
104357            "schema": {
104358              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104359            }
104360          },
104361          {
104362            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104363            "in": "query",
104364            "name": "dryRun",
104365            "type": "string",
104366            "uniqueItems": true
104367          },
104368          {
104369            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
104370            "in": "query",
104371            "name": "fieldManager",
104372            "type": "string",
104373            "uniqueItems": true
104374          }
104375        ],
104376        "produces": [
104377          "application/json",
104378          "application/yaml",
104379          "application/vnd.kubernetes.protobuf"
104380        ],
104381        "responses": {
104382          "200": {
104383            "description": "OK",
104384            "schema": {
104385              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104386            }
104387          },
104388          "201": {
104389            "description": "Created",
104390            "schema": {
104391              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104392            }
104393          },
104394          "202": {
104395            "description": "Accepted",
104396            "schema": {
104397              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104398            }
104399          },
104400          "401": {
104401            "description": "Unauthorized"
104402          }
104403        },
104404        "schemes": [
104405          "https"
104406        ],
104407        "tags": [
104408          "storage_v1alpha1"
104409        ],
104410        "x-kubernetes-action": "post",
104411        "x-kubernetes-group-version-kind": {
104412          "group": "storage.k8s.io",
104413          "kind": "CSIStorageCapacity",
104414          "version": "v1alpha1"
104415        }
104416      }
104417    },
104418    "/apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities/{name}": {
104419      "delete": {
104420        "consumes": [
104421          "*/*"
104422        ],
104423        "description": "delete a CSIStorageCapacity",
104424        "operationId": "deleteStorageV1alpha1NamespacedCSIStorageCapacity",
104425        "parameters": [
104426          {
104427            "in": "body",
104428            "name": "body",
104429            "schema": {
104430              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104431            }
104432          },
104433          {
104434            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104435            "in": "query",
104436            "name": "dryRun",
104437            "type": "string",
104438            "uniqueItems": true
104439          },
104440          {
104441            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
104442            "in": "query",
104443            "name": "gracePeriodSeconds",
104444            "type": "integer",
104445            "uniqueItems": true
104446          },
104447          {
104448            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
104449            "in": "query",
104450            "name": "orphanDependents",
104451            "type": "boolean",
104452            "uniqueItems": true
104453          },
104454          {
104455            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
104456            "in": "query",
104457            "name": "propagationPolicy",
104458            "type": "string",
104459            "uniqueItems": true
104460          }
104461        ],
104462        "produces": [
104463          "application/json",
104464          "application/yaml",
104465          "application/vnd.kubernetes.protobuf"
104466        ],
104467        "responses": {
104468          "200": {
104469            "description": "OK",
104470            "schema": {
104471              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104472            }
104473          },
104474          "202": {
104475            "description": "Accepted",
104476            "schema": {
104477              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104478            }
104479          },
104480          "401": {
104481            "description": "Unauthorized"
104482          }
104483        },
104484        "schemes": [
104485          "https"
104486        ],
104487        "tags": [
104488          "storage_v1alpha1"
104489        ],
104490        "x-kubernetes-action": "delete",
104491        "x-kubernetes-group-version-kind": {
104492          "group": "storage.k8s.io",
104493          "kind": "CSIStorageCapacity",
104494          "version": "v1alpha1"
104495        }
104496      },
104497      "get": {
104498        "consumes": [
104499          "*/*"
104500        ],
104501        "description": "read the specified CSIStorageCapacity",
104502        "operationId": "readStorageV1alpha1NamespacedCSIStorageCapacity",
104503        "produces": [
104504          "application/json",
104505          "application/yaml",
104506          "application/vnd.kubernetes.protobuf"
104507        ],
104508        "responses": {
104509          "200": {
104510            "description": "OK",
104511            "schema": {
104512              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104513            }
104514          },
104515          "401": {
104516            "description": "Unauthorized"
104517          }
104518        },
104519        "schemes": [
104520          "https"
104521        ],
104522        "tags": [
104523          "storage_v1alpha1"
104524        ],
104525        "x-kubernetes-action": "get",
104526        "x-kubernetes-group-version-kind": {
104527          "group": "storage.k8s.io",
104528          "kind": "CSIStorageCapacity",
104529          "version": "v1alpha1"
104530        }
104531      },
104532      "parameters": [
104533        {
104534          "description": "name of the CSIStorageCapacity",
104535          "in": "path",
104536          "name": "name",
104537          "required": true,
104538          "type": "string",
104539          "uniqueItems": true
104540        },
104541        {
104542          "description": "object name and auth scope, such as for teams and projects",
104543          "in": "path",
104544          "name": "namespace",
104545          "required": true,
104546          "type": "string",
104547          "uniqueItems": true
104548        },
104549        {
104550          "description": "If 'true', then the output is pretty printed.",
104551          "in": "query",
104552          "name": "pretty",
104553          "type": "string",
104554          "uniqueItems": true
104555        }
104556      ],
104557      "patch": {
104558        "consumes": [
104559          "application/json-patch+json",
104560          "application/merge-patch+json",
104561          "application/strategic-merge-patch+json",
104562          "application/apply-patch+yaml"
104563        ],
104564        "description": "partially update the specified CSIStorageCapacity",
104565        "operationId": "patchStorageV1alpha1NamespacedCSIStorageCapacity",
104566        "parameters": [
104567          {
104568            "in": "body",
104569            "name": "body",
104570            "required": true,
104571            "schema": {
104572              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
104573            }
104574          },
104575          {
104576            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104577            "in": "query",
104578            "name": "dryRun",
104579            "type": "string",
104580            "uniqueItems": true
104581          },
104582          {
104583            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
104584            "in": "query",
104585            "name": "fieldManager",
104586            "type": "string",
104587            "uniqueItems": true
104588          },
104589          {
104590            "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.",
104591            "in": "query",
104592            "name": "force",
104593            "type": "boolean",
104594            "uniqueItems": true
104595          }
104596        ],
104597        "produces": [
104598          "application/json",
104599          "application/yaml",
104600          "application/vnd.kubernetes.protobuf"
104601        ],
104602        "responses": {
104603          "200": {
104604            "description": "OK",
104605            "schema": {
104606              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104607            }
104608          },
104609          "401": {
104610            "description": "Unauthorized"
104611          }
104612        },
104613        "schemes": [
104614          "https"
104615        ],
104616        "tags": [
104617          "storage_v1alpha1"
104618        ],
104619        "x-kubernetes-action": "patch",
104620        "x-kubernetes-group-version-kind": {
104621          "group": "storage.k8s.io",
104622          "kind": "CSIStorageCapacity",
104623          "version": "v1alpha1"
104624        }
104625      },
104626      "put": {
104627        "consumes": [
104628          "*/*"
104629        ],
104630        "description": "replace the specified CSIStorageCapacity",
104631        "operationId": "replaceStorageV1alpha1NamespacedCSIStorageCapacity",
104632        "parameters": [
104633          {
104634            "in": "body",
104635            "name": "body",
104636            "required": true,
104637            "schema": {
104638              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104639            }
104640          },
104641          {
104642            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104643            "in": "query",
104644            "name": "dryRun",
104645            "type": "string",
104646            "uniqueItems": true
104647          },
104648          {
104649            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
104650            "in": "query",
104651            "name": "fieldManager",
104652            "type": "string",
104653            "uniqueItems": true
104654          }
104655        ],
104656        "produces": [
104657          "application/json",
104658          "application/yaml",
104659          "application/vnd.kubernetes.protobuf"
104660        ],
104661        "responses": {
104662          "200": {
104663            "description": "OK",
104664            "schema": {
104665              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104666            }
104667          },
104668          "201": {
104669            "description": "Created",
104670            "schema": {
104671              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104672            }
104673          },
104674          "401": {
104675            "description": "Unauthorized"
104676          }
104677        },
104678        "schemes": [
104679          "https"
104680        ],
104681        "tags": [
104682          "storage_v1alpha1"
104683        ],
104684        "x-kubernetes-action": "put",
104685        "x-kubernetes-group-version-kind": {
104686          "group": "storage.k8s.io",
104687          "kind": "CSIStorageCapacity",
104688          "version": "v1alpha1"
104689        }
104690      }
104691    },
104692    "/apis/storage.k8s.io/v1alpha1/volumeattachments": {
104693      "delete": {
104694        "consumes": [
104695          "*/*"
104696        ],
104697        "description": "delete collection of VolumeAttachment",
104698        "operationId": "deleteStorageV1alpha1CollectionVolumeAttachment",
104699        "parameters": [
104700          {
104701            "in": "body",
104702            "name": "body",
104703            "schema": {
104704              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104705            }
104706          },
104707          {
104708            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104709            "in": "query",
104710            "name": "continue",
104711            "type": "string",
104712            "uniqueItems": true
104713          },
104714          {
104715            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104716            "in": "query",
104717            "name": "dryRun",
104718            "type": "string",
104719            "uniqueItems": true
104720          },
104721          {
104722            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104723            "in": "query",
104724            "name": "fieldSelector",
104725            "type": "string",
104726            "uniqueItems": true
104727          },
104728          {
104729            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
104730            "in": "query",
104731            "name": "gracePeriodSeconds",
104732            "type": "integer",
104733            "uniqueItems": true
104734          },
104735          {
104736            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104737            "in": "query",
104738            "name": "labelSelector",
104739            "type": "string",
104740            "uniqueItems": true
104741          },
104742          {
104743            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104744            "in": "query",
104745            "name": "limit",
104746            "type": "integer",
104747            "uniqueItems": true
104748          },
104749          {
104750            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
104751            "in": "query",
104752            "name": "orphanDependents",
104753            "type": "boolean",
104754            "uniqueItems": true
104755          },
104756          {
104757            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
104758            "in": "query",
104759            "name": "propagationPolicy",
104760            "type": "string",
104761            "uniqueItems": true
104762          },
104763          {
104764            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104765            "in": "query",
104766            "name": "resourceVersion",
104767            "type": "string",
104768            "uniqueItems": true
104769          },
104770          {
104771            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104772            "in": "query",
104773            "name": "resourceVersionMatch",
104774            "type": "string",
104775            "uniqueItems": true
104776          },
104777          {
104778            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104779            "in": "query",
104780            "name": "timeoutSeconds",
104781            "type": "integer",
104782            "uniqueItems": true
104783          }
104784        ],
104785        "produces": [
104786          "application/json",
104787          "application/yaml",
104788          "application/vnd.kubernetes.protobuf"
104789        ],
104790        "responses": {
104791          "200": {
104792            "description": "OK",
104793            "schema": {
104794              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104795            }
104796          },
104797          "401": {
104798            "description": "Unauthorized"
104799          }
104800        },
104801        "schemes": [
104802          "https"
104803        ],
104804        "tags": [
104805          "storage_v1alpha1"
104806        ],
104807        "x-kubernetes-action": "deletecollection",
104808        "x-kubernetes-group-version-kind": {
104809          "group": "storage.k8s.io",
104810          "kind": "VolumeAttachment",
104811          "version": "v1alpha1"
104812        }
104813      },
104814      "get": {
104815        "consumes": [
104816          "*/*"
104817        ],
104818        "description": "list or watch objects of kind VolumeAttachment",
104819        "operationId": "listStorageV1alpha1VolumeAttachment",
104820        "parameters": [
104821          {
104822            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
104823            "in": "query",
104824            "name": "allowWatchBookmarks",
104825            "type": "boolean",
104826            "uniqueItems": true
104827          },
104828          {
104829            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104830            "in": "query",
104831            "name": "continue",
104832            "type": "string",
104833            "uniqueItems": true
104834          },
104835          {
104836            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104837            "in": "query",
104838            "name": "fieldSelector",
104839            "type": "string",
104840            "uniqueItems": true
104841          },
104842          {
104843            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104844            "in": "query",
104845            "name": "labelSelector",
104846            "type": "string",
104847            "uniqueItems": true
104848          },
104849          {
104850            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104851            "in": "query",
104852            "name": "limit",
104853            "type": "integer",
104854            "uniqueItems": true
104855          },
104856          {
104857            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104858            "in": "query",
104859            "name": "resourceVersion",
104860            "type": "string",
104861            "uniqueItems": true
104862          },
104863          {
104864            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104865            "in": "query",
104866            "name": "resourceVersionMatch",
104867            "type": "string",
104868            "uniqueItems": true
104869          },
104870          {
104871            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104872            "in": "query",
104873            "name": "timeoutSeconds",
104874            "type": "integer",
104875            "uniqueItems": true
104876          },
104877          {
104878            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104879            "in": "query",
104880            "name": "watch",
104881            "type": "boolean",
104882            "uniqueItems": true
104883          }
104884        ],
104885        "produces": [
104886          "application/json",
104887          "application/yaml",
104888          "application/vnd.kubernetes.protobuf",
104889          "application/json;stream=watch",
104890          "application/vnd.kubernetes.protobuf;stream=watch"
104891        ],
104892        "responses": {
104893          "200": {
104894            "description": "OK",
104895            "schema": {
104896              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentList"
104897            }
104898          },
104899          "401": {
104900            "description": "Unauthorized"
104901          }
104902        },
104903        "schemes": [
104904          "https"
104905        ],
104906        "tags": [
104907          "storage_v1alpha1"
104908        ],
104909        "x-kubernetes-action": "list",
104910        "x-kubernetes-group-version-kind": {
104911          "group": "storage.k8s.io",
104912          "kind": "VolumeAttachment",
104913          "version": "v1alpha1"
104914        }
104915      },
104916      "parameters": [
104917        {
104918          "description": "If 'true', then the output is pretty printed.",
104919          "in": "query",
104920          "name": "pretty",
104921          "type": "string",
104922          "uniqueItems": true
104923        }
104924      ],
104925      "post": {
104926        "consumes": [
104927          "*/*"
104928        ],
104929        "description": "create a VolumeAttachment",
104930        "operationId": "createStorageV1alpha1VolumeAttachment",
104931        "parameters": [
104932          {
104933            "in": "body",
104934            "name": "body",
104935            "required": true,
104936            "schema": {
104937              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104938            }
104939          },
104940          {
104941            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104942            "in": "query",
104943            "name": "dryRun",
104944            "type": "string",
104945            "uniqueItems": true
104946          },
104947          {
104948            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
104949            "in": "query",
104950            "name": "fieldManager",
104951            "type": "string",
104952            "uniqueItems": true
104953          }
104954        ],
104955        "produces": [
104956          "application/json",
104957          "application/yaml",
104958          "application/vnd.kubernetes.protobuf"
104959        ],
104960        "responses": {
104961          "200": {
104962            "description": "OK",
104963            "schema": {
104964              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104965            }
104966          },
104967          "201": {
104968            "description": "Created",
104969            "schema": {
104970              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104971            }
104972          },
104973          "202": {
104974            "description": "Accepted",
104975            "schema": {
104976              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104977            }
104978          },
104979          "401": {
104980            "description": "Unauthorized"
104981          }
104982        },
104983        "schemes": [
104984          "https"
104985        ],
104986        "tags": [
104987          "storage_v1alpha1"
104988        ],
104989        "x-kubernetes-action": "post",
104990        "x-kubernetes-group-version-kind": {
104991          "group": "storage.k8s.io",
104992          "kind": "VolumeAttachment",
104993          "version": "v1alpha1"
104994        }
104995      }
104996    },
104997    "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}": {
104998      "delete": {
104999        "consumes": [
105000          "*/*"
105001        ],
105002        "description": "delete a VolumeAttachment",
105003        "operationId": "deleteStorageV1alpha1VolumeAttachment",
105004        "parameters": [
105005          {
105006            "in": "body",
105007            "name": "body",
105008            "schema": {
105009              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
105010            }
105011          },
105012          {
105013            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105014            "in": "query",
105015            "name": "dryRun",
105016            "type": "string",
105017            "uniqueItems": true
105018          },
105019          {
105020            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
105021            "in": "query",
105022            "name": "gracePeriodSeconds",
105023            "type": "integer",
105024            "uniqueItems": true
105025          },
105026          {
105027            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
105028            "in": "query",
105029            "name": "orphanDependents",
105030            "type": "boolean",
105031            "uniqueItems": true
105032          },
105033          {
105034            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
105035            "in": "query",
105036            "name": "propagationPolicy",
105037            "type": "string",
105038            "uniqueItems": true
105039          }
105040        ],
105041        "produces": [
105042          "application/json",
105043          "application/yaml",
105044          "application/vnd.kubernetes.protobuf"
105045        ],
105046        "responses": {
105047          "200": {
105048            "description": "OK",
105049            "schema": {
105050              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105051            }
105052          },
105053          "202": {
105054            "description": "Accepted",
105055            "schema": {
105056              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105057            }
105058          },
105059          "401": {
105060            "description": "Unauthorized"
105061          }
105062        },
105063        "schemes": [
105064          "https"
105065        ],
105066        "tags": [
105067          "storage_v1alpha1"
105068        ],
105069        "x-kubernetes-action": "delete",
105070        "x-kubernetes-group-version-kind": {
105071          "group": "storage.k8s.io",
105072          "kind": "VolumeAttachment",
105073          "version": "v1alpha1"
105074        }
105075      },
105076      "get": {
105077        "consumes": [
105078          "*/*"
105079        ],
105080        "description": "read the specified VolumeAttachment",
105081        "operationId": "readStorageV1alpha1VolumeAttachment",
105082        "produces": [
105083          "application/json",
105084          "application/yaml",
105085          "application/vnd.kubernetes.protobuf"
105086        ],
105087        "responses": {
105088          "200": {
105089            "description": "OK",
105090            "schema": {
105091              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105092            }
105093          },
105094          "401": {
105095            "description": "Unauthorized"
105096          }
105097        },
105098        "schemes": [
105099          "https"
105100        ],
105101        "tags": [
105102          "storage_v1alpha1"
105103        ],
105104        "x-kubernetes-action": "get",
105105        "x-kubernetes-group-version-kind": {
105106          "group": "storage.k8s.io",
105107          "kind": "VolumeAttachment",
105108          "version": "v1alpha1"
105109        }
105110      },
105111      "parameters": [
105112        {
105113          "description": "name of the VolumeAttachment",
105114          "in": "path",
105115          "name": "name",
105116          "required": true,
105117          "type": "string",
105118          "uniqueItems": true
105119        },
105120        {
105121          "description": "If 'true', then the output is pretty printed.",
105122          "in": "query",
105123          "name": "pretty",
105124          "type": "string",
105125          "uniqueItems": true
105126        }
105127      ],
105128      "patch": {
105129        "consumes": [
105130          "application/json-patch+json",
105131          "application/merge-patch+json",
105132          "application/strategic-merge-patch+json",
105133          "application/apply-patch+yaml"
105134        ],
105135        "description": "partially update the specified VolumeAttachment",
105136        "operationId": "patchStorageV1alpha1VolumeAttachment",
105137        "parameters": [
105138          {
105139            "in": "body",
105140            "name": "body",
105141            "required": true,
105142            "schema": {
105143              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
105144            }
105145          },
105146          {
105147            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105148            "in": "query",
105149            "name": "dryRun",
105150            "type": "string",
105151            "uniqueItems": true
105152          },
105153          {
105154            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
105155            "in": "query",
105156            "name": "fieldManager",
105157            "type": "string",
105158            "uniqueItems": true
105159          },
105160          {
105161            "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.",
105162            "in": "query",
105163            "name": "force",
105164            "type": "boolean",
105165            "uniqueItems": true
105166          }
105167        ],
105168        "produces": [
105169          "application/json",
105170          "application/yaml",
105171          "application/vnd.kubernetes.protobuf"
105172        ],
105173        "responses": {
105174          "200": {
105175            "description": "OK",
105176            "schema": {
105177              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105178            }
105179          },
105180          "401": {
105181            "description": "Unauthorized"
105182          }
105183        },
105184        "schemes": [
105185          "https"
105186        ],
105187        "tags": [
105188          "storage_v1alpha1"
105189        ],
105190        "x-kubernetes-action": "patch",
105191        "x-kubernetes-group-version-kind": {
105192          "group": "storage.k8s.io",
105193          "kind": "VolumeAttachment",
105194          "version": "v1alpha1"
105195        }
105196      },
105197      "put": {
105198        "consumes": [
105199          "*/*"
105200        ],
105201        "description": "replace the specified VolumeAttachment",
105202        "operationId": "replaceStorageV1alpha1VolumeAttachment",
105203        "parameters": [
105204          {
105205            "in": "body",
105206            "name": "body",
105207            "required": true,
105208            "schema": {
105209              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105210            }
105211          },
105212          {
105213            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105214            "in": "query",
105215            "name": "dryRun",
105216            "type": "string",
105217            "uniqueItems": true
105218          },
105219          {
105220            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
105221            "in": "query",
105222            "name": "fieldManager",
105223            "type": "string",
105224            "uniqueItems": true
105225          }
105226        ],
105227        "produces": [
105228          "application/json",
105229          "application/yaml",
105230          "application/vnd.kubernetes.protobuf"
105231        ],
105232        "responses": {
105233          "200": {
105234            "description": "OK",
105235            "schema": {
105236              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105237            }
105238          },
105239          "201": {
105240            "description": "Created",
105241            "schema": {
105242              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105243            }
105244          },
105245          "401": {
105246            "description": "Unauthorized"
105247          }
105248        },
105249        "schemes": [
105250          "https"
105251        ],
105252        "tags": [
105253          "storage_v1alpha1"
105254        ],
105255        "x-kubernetes-action": "put",
105256        "x-kubernetes-group-version-kind": {
105257          "group": "storage.k8s.io",
105258          "kind": "VolumeAttachment",
105259          "version": "v1alpha1"
105260        }
105261      }
105262    },
105263    "/apis/storage.k8s.io/v1alpha1/watch/csistoragecapacities": {
105264      "get": {
105265        "consumes": [
105266          "*/*"
105267        ],
105268        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
105269        "operationId": "watchStorageV1alpha1CSIStorageCapacityListForAllNamespaces",
105270        "produces": [
105271          "application/json",
105272          "application/yaml",
105273          "application/vnd.kubernetes.protobuf",
105274          "application/json;stream=watch",
105275          "application/vnd.kubernetes.protobuf;stream=watch"
105276        ],
105277        "responses": {
105278          "200": {
105279            "description": "OK",
105280            "schema": {
105281              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105282            }
105283          },
105284          "401": {
105285            "description": "Unauthorized"
105286          }
105287        },
105288        "schemes": [
105289          "https"
105290        ],
105291        "tags": [
105292          "storage_v1alpha1"
105293        ],
105294        "x-kubernetes-action": "watchlist",
105295        "x-kubernetes-group-version-kind": {
105296          "group": "storage.k8s.io",
105297          "kind": "CSIStorageCapacity",
105298          "version": "v1alpha1"
105299        }
105300      },
105301      "parameters": [
105302        {
105303          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105304          "in": "query",
105305          "name": "allowWatchBookmarks",
105306          "type": "boolean",
105307          "uniqueItems": true
105308        },
105309        {
105310          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105311          "in": "query",
105312          "name": "continue",
105313          "type": "string",
105314          "uniqueItems": true
105315        },
105316        {
105317          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105318          "in": "query",
105319          "name": "fieldSelector",
105320          "type": "string",
105321          "uniqueItems": true
105322        },
105323        {
105324          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105325          "in": "query",
105326          "name": "labelSelector",
105327          "type": "string",
105328          "uniqueItems": true
105329        },
105330        {
105331          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105332          "in": "query",
105333          "name": "limit",
105334          "type": "integer",
105335          "uniqueItems": true
105336        },
105337        {
105338          "description": "If 'true', then the output is pretty printed.",
105339          "in": "query",
105340          "name": "pretty",
105341          "type": "string",
105342          "uniqueItems": true
105343        },
105344        {
105345          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105346          "in": "query",
105347          "name": "resourceVersion",
105348          "type": "string",
105349          "uniqueItems": true
105350        },
105351        {
105352          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105353          "in": "query",
105354          "name": "resourceVersionMatch",
105355          "type": "string",
105356          "uniqueItems": true
105357        },
105358        {
105359          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105360          "in": "query",
105361          "name": "timeoutSeconds",
105362          "type": "integer",
105363          "uniqueItems": true
105364        },
105365        {
105366          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105367          "in": "query",
105368          "name": "watch",
105369          "type": "boolean",
105370          "uniqueItems": true
105371        }
105372      ]
105373    },
105374    "/apis/storage.k8s.io/v1alpha1/watch/namespaces/{namespace}/csistoragecapacities": {
105375      "get": {
105376        "consumes": [
105377          "*/*"
105378        ],
105379        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
105380        "operationId": "watchStorageV1alpha1NamespacedCSIStorageCapacityList",
105381        "produces": [
105382          "application/json",
105383          "application/yaml",
105384          "application/vnd.kubernetes.protobuf",
105385          "application/json;stream=watch",
105386          "application/vnd.kubernetes.protobuf;stream=watch"
105387        ],
105388        "responses": {
105389          "200": {
105390            "description": "OK",
105391            "schema": {
105392              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105393            }
105394          },
105395          "401": {
105396            "description": "Unauthorized"
105397          }
105398        },
105399        "schemes": [
105400          "https"
105401        ],
105402        "tags": [
105403          "storage_v1alpha1"
105404        ],
105405        "x-kubernetes-action": "watchlist",
105406        "x-kubernetes-group-version-kind": {
105407          "group": "storage.k8s.io",
105408          "kind": "CSIStorageCapacity",
105409          "version": "v1alpha1"
105410        }
105411      },
105412      "parameters": [
105413        {
105414          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105415          "in": "query",
105416          "name": "allowWatchBookmarks",
105417          "type": "boolean",
105418          "uniqueItems": true
105419        },
105420        {
105421          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105422          "in": "query",
105423          "name": "continue",
105424          "type": "string",
105425          "uniqueItems": true
105426        },
105427        {
105428          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105429          "in": "query",
105430          "name": "fieldSelector",
105431          "type": "string",
105432          "uniqueItems": true
105433        },
105434        {
105435          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105436          "in": "query",
105437          "name": "labelSelector",
105438          "type": "string",
105439          "uniqueItems": true
105440        },
105441        {
105442          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105443          "in": "query",
105444          "name": "limit",
105445          "type": "integer",
105446          "uniqueItems": true
105447        },
105448        {
105449          "description": "object name and auth scope, such as for teams and projects",
105450          "in": "path",
105451          "name": "namespace",
105452          "required": true,
105453          "type": "string",
105454          "uniqueItems": true
105455        },
105456        {
105457          "description": "If 'true', then the output is pretty printed.",
105458          "in": "query",
105459          "name": "pretty",
105460          "type": "string",
105461          "uniqueItems": true
105462        },
105463        {
105464          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105465          "in": "query",
105466          "name": "resourceVersion",
105467          "type": "string",
105468          "uniqueItems": true
105469        },
105470        {
105471          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105472          "in": "query",
105473          "name": "resourceVersionMatch",
105474          "type": "string",
105475          "uniqueItems": true
105476        },
105477        {
105478          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105479          "in": "query",
105480          "name": "timeoutSeconds",
105481          "type": "integer",
105482          "uniqueItems": true
105483        },
105484        {
105485          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105486          "in": "query",
105487          "name": "watch",
105488          "type": "boolean",
105489          "uniqueItems": true
105490        }
105491      ]
105492    },
105493    "/apis/storage.k8s.io/v1alpha1/watch/namespaces/{namespace}/csistoragecapacities/{name}": {
105494      "get": {
105495        "consumes": [
105496          "*/*"
105497        ],
105498        "description": "watch changes to an object of kind CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
105499        "operationId": "watchStorageV1alpha1NamespacedCSIStorageCapacity",
105500        "produces": [
105501          "application/json",
105502          "application/yaml",
105503          "application/vnd.kubernetes.protobuf",
105504          "application/json;stream=watch",
105505          "application/vnd.kubernetes.protobuf;stream=watch"
105506        ],
105507        "responses": {
105508          "200": {
105509            "description": "OK",
105510            "schema": {
105511              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105512            }
105513          },
105514          "401": {
105515            "description": "Unauthorized"
105516          }
105517        },
105518        "schemes": [
105519          "https"
105520        ],
105521        "tags": [
105522          "storage_v1alpha1"
105523        ],
105524        "x-kubernetes-action": "watch",
105525        "x-kubernetes-group-version-kind": {
105526          "group": "storage.k8s.io",
105527          "kind": "CSIStorageCapacity",
105528          "version": "v1alpha1"
105529        }
105530      },
105531      "parameters": [
105532        {
105533          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105534          "in": "query",
105535          "name": "allowWatchBookmarks",
105536          "type": "boolean",
105537          "uniqueItems": true
105538        },
105539        {
105540          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105541          "in": "query",
105542          "name": "continue",
105543          "type": "string",
105544          "uniqueItems": true
105545        },
105546        {
105547          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105548          "in": "query",
105549          "name": "fieldSelector",
105550          "type": "string",
105551          "uniqueItems": true
105552        },
105553        {
105554          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105555          "in": "query",
105556          "name": "labelSelector",
105557          "type": "string",
105558          "uniqueItems": true
105559        },
105560        {
105561          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105562          "in": "query",
105563          "name": "limit",
105564          "type": "integer",
105565          "uniqueItems": true
105566        },
105567        {
105568          "description": "name of the CSIStorageCapacity",
105569          "in": "path",
105570          "name": "name",
105571          "required": true,
105572          "type": "string",
105573          "uniqueItems": true
105574        },
105575        {
105576          "description": "object name and auth scope, such as for teams and projects",
105577          "in": "path",
105578          "name": "namespace",
105579          "required": true,
105580          "type": "string",
105581          "uniqueItems": true
105582        },
105583        {
105584          "description": "If 'true', then the output is pretty printed.",
105585          "in": "query",
105586          "name": "pretty",
105587          "type": "string",
105588          "uniqueItems": true
105589        },
105590        {
105591          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105592          "in": "query",
105593          "name": "resourceVersion",
105594          "type": "string",
105595          "uniqueItems": true
105596        },
105597        {
105598          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105599          "in": "query",
105600          "name": "resourceVersionMatch",
105601          "type": "string",
105602          "uniqueItems": true
105603        },
105604        {
105605          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105606          "in": "query",
105607          "name": "timeoutSeconds",
105608          "type": "integer",
105609          "uniqueItems": true
105610        },
105611        {
105612          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105613          "in": "query",
105614          "name": "watch",
105615          "type": "boolean",
105616          "uniqueItems": true
105617        }
105618      ]
105619    },
105620    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments": {
105621      "get": {
105622        "consumes": [
105623          "*/*"
105624        ],
105625        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
105626        "operationId": "watchStorageV1alpha1VolumeAttachmentList",
105627        "produces": [
105628          "application/json",
105629          "application/yaml",
105630          "application/vnd.kubernetes.protobuf",
105631          "application/json;stream=watch",
105632          "application/vnd.kubernetes.protobuf;stream=watch"
105633        ],
105634        "responses": {
105635          "200": {
105636            "description": "OK",
105637            "schema": {
105638              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105639            }
105640          },
105641          "401": {
105642            "description": "Unauthorized"
105643          }
105644        },
105645        "schemes": [
105646          "https"
105647        ],
105648        "tags": [
105649          "storage_v1alpha1"
105650        ],
105651        "x-kubernetes-action": "watchlist",
105652        "x-kubernetes-group-version-kind": {
105653          "group": "storage.k8s.io",
105654          "kind": "VolumeAttachment",
105655          "version": "v1alpha1"
105656        }
105657      },
105658      "parameters": [
105659        {
105660          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105661          "in": "query",
105662          "name": "allowWatchBookmarks",
105663          "type": "boolean",
105664          "uniqueItems": true
105665        },
105666        {
105667          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105668          "in": "query",
105669          "name": "continue",
105670          "type": "string",
105671          "uniqueItems": true
105672        },
105673        {
105674          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105675          "in": "query",
105676          "name": "fieldSelector",
105677          "type": "string",
105678          "uniqueItems": true
105679        },
105680        {
105681          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105682          "in": "query",
105683          "name": "labelSelector",
105684          "type": "string",
105685          "uniqueItems": true
105686        },
105687        {
105688          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105689          "in": "query",
105690          "name": "limit",
105691          "type": "integer",
105692          "uniqueItems": true
105693        },
105694        {
105695          "description": "If 'true', then the output is pretty printed.",
105696          "in": "query",
105697          "name": "pretty",
105698          "type": "string",
105699          "uniqueItems": true
105700        },
105701        {
105702          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105703          "in": "query",
105704          "name": "resourceVersion",
105705          "type": "string",
105706          "uniqueItems": true
105707        },
105708        {
105709          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105710          "in": "query",
105711          "name": "resourceVersionMatch",
105712          "type": "string",
105713          "uniqueItems": true
105714        },
105715        {
105716          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105717          "in": "query",
105718          "name": "timeoutSeconds",
105719          "type": "integer",
105720          "uniqueItems": true
105721        },
105722        {
105723          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105724          "in": "query",
105725          "name": "watch",
105726          "type": "boolean",
105727          "uniqueItems": true
105728        }
105729      ]
105730    },
105731    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{name}": {
105732      "get": {
105733        "consumes": [
105734          "*/*"
105735        ],
105736        "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.",
105737        "operationId": "watchStorageV1alpha1VolumeAttachment",
105738        "produces": [
105739          "application/json",
105740          "application/yaml",
105741          "application/vnd.kubernetes.protobuf",
105742          "application/json;stream=watch",
105743          "application/vnd.kubernetes.protobuf;stream=watch"
105744        ],
105745        "responses": {
105746          "200": {
105747            "description": "OK",
105748            "schema": {
105749              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105750            }
105751          },
105752          "401": {
105753            "description": "Unauthorized"
105754          }
105755        },
105756        "schemes": [
105757          "https"
105758        ],
105759        "tags": [
105760          "storage_v1alpha1"
105761        ],
105762        "x-kubernetes-action": "watch",
105763        "x-kubernetes-group-version-kind": {
105764          "group": "storage.k8s.io",
105765          "kind": "VolumeAttachment",
105766          "version": "v1alpha1"
105767        }
105768      },
105769      "parameters": [
105770        {
105771          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105772          "in": "query",
105773          "name": "allowWatchBookmarks",
105774          "type": "boolean",
105775          "uniqueItems": true
105776        },
105777        {
105778          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105779          "in": "query",
105780          "name": "continue",
105781          "type": "string",
105782          "uniqueItems": true
105783        },
105784        {
105785          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105786          "in": "query",
105787          "name": "fieldSelector",
105788          "type": "string",
105789          "uniqueItems": true
105790        },
105791        {
105792          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105793          "in": "query",
105794          "name": "labelSelector",
105795          "type": "string",
105796          "uniqueItems": true
105797        },
105798        {
105799          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105800          "in": "query",
105801          "name": "limit",
105802          "type": "integer",
105803          "uniqueItems": true
105804        },
105805        {
105806          "description": "name of the VolumeAttachment",
105807          "in": "path",
105808          "name": "name",
105809          "required": true,
105810          "type": "string",
105811          "uniqueItems": true
105812        },
105813        {
105814          "description": "If 'true', then the output is pretty printed.",
105815          "in": "query",
105816          "name": "pretty",
105817          "type": "string",
105818          "uniqueItems": true
105819        },
105820        {
105821          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105822          "in": "query",
105823          "name": "resourceVersion",
105824          "type": "string",
105825          "uniqueItems": true
105826        },
105827        {
105828          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105829          "in": "query",
105830          "name": "resourceVersionMatch",
105831          "type": "string",
105832          "uniqueItems": true
105833        },
105834        {
105835          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105836          "in": "query",
105837          "name": "timeoutSeconds",
105838          "type": "integer",
105839          "uniqueItems": true
105840        },
105841        {
105842          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105843          "in": "query",
105844          "name": "watch",
105845          "type": "boolean",
105846          "uniqueItems": true
105847        }
105848      ]
105849    },
105850    "/apis/storage.k8s.io/v1beta1/": {
105851      "get": {
105852        "consumes": [
105853          "application/json",
105854          "application/yaml",
105855          "application/vnd.kubernetes.protobuf"
105856        ],
105857        "description": "get available resources",
105858        "operationId": "getStorageV1beta1APIResources",
105859        "produces": [
105860          "application/json",
105861          "application/yaml",
105862          "application/vnd.kubernetes.protobuf"
105863        ],
105864        "responses": {
105865          "200": {
105866            "description": "OK",
105867            "schema": {
105868              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
105869            }
105870          },
105871          "401": {
105872            "description": "Unauthorized"
105873          }
105874        },
105875        "schemes": [
105876          "https"
105877        ],
105878        "tags": [
105879          "storage_v1beta1"
105880        ]
105881      }
105882    },
105883    "/apis/storage.k8s.io/v1beta1/csidrivers": {
105884      "delete": {
105885        "consumes": [
105886          "*/*"
105887        ],
105888        "description": "delete collection of CSIDriver",
105889        "operationId": "deleteStorageV1beta1CollectionCSIDriver",
105890        "parameters": [
105891          {
105892            "in": "body",
105893            "name": "body",
105894            "schema": {
105895              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
105896            }
105897          },
105898          {
105899            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105900            "in": "query",
105901            "name": "continue",
105902            "type": "string",
105903            "uniqueItems": true
105904          },
105905          {
105906            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105907            "in": "query",
105908            "name": "dryRun",
105909            "type": "string",
105910            "uniqueItems": true
105911          },
105912          {
105913            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105914            "in": "query",
105915            "name": "fieldSelector",
105916            "type": "string",
105917            "uniqueItems": true
105918          },
105919          {
105920            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
105921            "in": "query",
105922            "name": "gracePeriodSeconds",
105923            "type": "integer",
105924            "uniqueItems": true
105925          },
105926          {
105927            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105928            "in": "query",
105929            "name": "labelSelector",
105930            "type": "string",
105931            "uniqueItems": true
105932          },
105933          {
105934            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105935            "in": "query",
105936            "name": "limit",
105937            "type": "integer",
105938            "uniqueItems": true
105939          },
105940          {
105941            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
105942            "in": "query",
105943            "name": "orphanDependents",
105944            "type": "boolean",
105945            "uniqueItems": true
105946          },
105947          {
105948            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
105949            "in": "query",
105950            "name": "propagationPolicy",
105951            "type": "string",
105952            "uniqueItems": true
105953          },
105954          {
105955            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105956            "in": "query",
105957            "name": "resourceVersion",
105958            "type": "string",
105959            "uniqueItems": true
105960          },
105961          {
105962            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105963            "in": "query",
105964            "name": "resourceVersionMatch",
105965            "type": "string",
105966            "uniqueItems": true
105967          },
105968          {
105969            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105970            "in": "query",
105971            "name": "timeoutSeconds",
105972            "type": "integer",
105973            "uniqueItems": true
105974          }
105975        ],
105976        "produces": [
105977          "application/json",
105978          "application/yaml",
105979          "application/vnd.kubernetes.protobuf"
105980        ],
105981        "responses": {
105982          "200": {
105983            "description": "OK",
105984            "schema": {
105985              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
105986            }
105987          },
105988          "401": {
105989            "description": "Unauthorized"
105990          }
105991        },
105992        "schemes": [
105993          "https"
105994        ],
105995        "tags": [
105996          "storage_v1beta1"
105997        ],
105998        "x-kubernetes-action": "deletecollection",
105999        "x-kubernetes-group-version-kind": {
106000          "group": "storage.k8s.io",
106001          "kind": "CSIDriver",
106002          "version": "v1beta1"
106003        }
106004      },
106005      "get": {
106006        "consumes": [
106007          "*/*"
106008        ],
106009        "description": "list or watch objects of kind CSIDriver",
106010        "operationId": "listStorageV1beta1CSIDriver",
106011        "parameters": [
106012          {
106013            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
106014            "in": "query",
106015            "name": "allowWatchBookmarks",
106016            "type": "boolean",
106017            "uniqueItems": true
106018          },
106019          {
106020            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106021            "in": "query",
106022            "name": "continue",
106023            "type": "string",
106024            "uniqueItems": true
106025          },
106026          {
106027            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106028            "in": "query",
106029            "name": "fieldSelector",
106030            "type": "string",
106031            "uniqueItems": true
106032          },
106033          {
106034            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106035            "in": "query",
106036            "name": "labelSelector",
106037            "type": "string",
106038            "uniqueItems": true
106039          },
106040          {
106041            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106042            "in": "query",
106043            "name": "limit",
106044            "type": "integer",
106045            "uniqueItems": true
106046          },
106047          {
106048            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106049            "in": "query",
106050            "name": "resourceVersion",
106051            "type": "string",
106052            "uniqueItems": true
106053          },
106054          {
106055            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106056            "in": "query",
106057            "name": "resourceVersionMatch",
106058            "type": "string",
106059            "uniqueItems": true
106060          },
106061          {
106062            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106063            "in": "query",
106064            "name": "timeoutSeconds",
106065            "type": "integer",
106066            "uniqueItems": true
106067          },
106068          {
106069            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106070            "in": "query",
106071            "name": "watch",
106072            "type": "boolean",
106073            "uniqueItems": true
106074          }
106075        ],
106076        "produces": [
106077          "application/json",
106078          "application/yaml",
106079          "application/vnd.kubernetes.protobuf",
106080          "application/json;stream=watch",
106081          "application/vnd.kubernetes.protobuf;stream=watch"
106082        ],
106083        "responses": {
106084          "200": {
106085            "description": "OK",
106086            "schema": {
106087              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverList"
106088            }
106089          },
106090          "401": {
106091            "description": "Unauthorized"
106092          }
106093        },
106094        "schemes": [
106095          "https"
106096        ],
106097        "tags": [
106098          "storage_v1beta1"
106099        ],
106100        "x-kubernetes-action": "list",
106101        "x-kubernetes-group-version-kind": {
106102          "group": "storage.k8s.io",
106103          "kind": "CSIDriver",
106104          "version": "v1beta1"
106105        }
106106      },
106107      "parameters": [
106108        {
106109          "description": "If 'true', then the output is pretty printed.",
106110          "in": "query",
106111          "name": "pretty",
106112          "type": "string",
106113          "uniqueItems": true
106114        }
106115      ],
106116      "post": {
106117        "consumes": [
106118          "*/*"
106119        ],
106120        "description": "create a CSIDriver",
106121        "operationId": "createStorageV1beta1CSIDriver",
106122        "parameters": [
106123          {
106124            "in": "body",
106125            "name": "body",
106126            "required": true,
106127            "schema": {
106128              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106129            }
106130          },
106131          {
106132            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106133            "in": "query",
106134            "name": "dryRun",
106135            "type": "string",
106136            "uniqueItems": true
106137          },
106138          {
106139            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106140            "in": "query",
106141            "name": "fieldManager",
106142            "type": "string",
106143            "uniqueItems": true
106144          }
106145        ],
106146        "produces": [
106147          "application/json",
106148          "application/yaml",
106149          "application/vnd.kubernetes.protobuf"
106150        ],
106151        "responses": {
106152          "200": {
106153            "description": "OK",
106154            "schema": {
106155              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106156            }
106157          },
106158          "201": {
106159            "description": "Created",
106160            "schema": {
106161              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106162            }
106163          },
106164          "202": {
106165            "description": "Accepted",
106166            "schema": {
106167              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106168            }
106169          },
106170          "401": {
106171            "description": "Unauthorized"
106172          }
106173        },
106174        "schemes": [
106175          "https"
106176        ],
106177        "tags": [
106178          "storage_v1beta1"
106179        ],
106180        "x-kubernetes-action": "post",
106181        "x-kubernetes-group-version-kind": {
106182          "group": "storage.k8s.io",
106183          "kind": "CSIDriver",
106184          "version": "v1beta1"
106185        }
106186      }
106187    },
106188    "/apis/storage.k8s.io/v1beta1/csidrivers/{name}": {
106189      "delete": {
106190        "consumes": [
106191          "*/*"
106192        ],
106193        "description": "delete a CSIDriver",
106194        "operationId": "deleteStorageV1beta1CSIDriver",
106195        "parameters": [
106196          {
106197            "in": "body",
106198            "name": "body",
106199            "schema": {
106200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106201            }
106202          },
106203          {
106204            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106205            "in": "query",
106206            "name": "dryRun",
106207            "type": "string",
106208            "uniqueItems": true
106209          },
106210          {
106211            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
106212            "in": "query",
106213            "name": "gracePeriodSeconds",
106214            "type": "integer",
106215            "uniqueItems": true
106216          },
106217          {
106218            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
106219            "in": "query",
106220            "name": "orphanDependents",
106221            "type": "boolean",
106222            "uniqueItems": true
106223          },
106224          {
106225            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
106226            "in": "query",
106227            "name": "propagationPolicy",
106228            "type": "string",
106229            "uniqueItems": true
106230          }
106231        ],
106232        "produces": [
106233          "application/json",
106234          "application/yaml",
106235          "application/vnd.kubernetes.protobuf"
106236        ],
106237        "responses": {
106238          "200": {
106239            "description": "OK",
106240            "schema": {
106241              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106242            }
106243          },
106244          "202": {
106245            "description": "Accepted",
106246            "schema": {
106247              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106248            }
106249          },
106250          "401": {
106251            "description": "Unauthorized"
106252          }
106253        },
106254        "schemes": [
106255          "https"
106256        ],
106257        "tags": [
106258          "storage_v1beta1"
106259        ],
106260        "x-kubernetes-action": "delete",
106261        "x-kubernetes-group-version-kind": {
106262          "group": "storage.k8s.io",
106263          "kind": "CSIDriver",
106264          "version": "v1beta1"
106265        }
106266      },
106267      "get": {
106268        "consumes": [
106269          "*/*"
106270        ],
106271        "description": "read the specified CSIDriver",
106272        "operationId": "readStorageV1beta1CSIDriver",
106273        "produces": [
106274          "application/json",
106275          "application/yaml",
106276          "application/vnd.kubernetes.protobuf"
106277        ],
106278        "responses": {
106279          "200": {
106280            "description": "OK",
106281            "schema": {
106282              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106283            }
106284          },
106285          "401": {
106286            "description": "Unauthorized"
106287          }
106288        },
106289        "schemes": [
106290          "https"
106291        ],
106292        "tags": [
106293          "storage_v1beta1"
106294        ],
106295        "x-kubernetes-action": "get",
106296        "x-kubernetes-group-version-kind": {
106297          "group": "storage.k8s.io",
106298          "kind": "CSIDriver",
106299          "version": "v1beta1"
106300        }
106301      },
106302      "parameters": [
106303        {
106304          "description": "name of the CSIDriver",
106305          "in": "path",
106306          "name": "name",
106307          "required": true,
106308          "type": "string",
106309          "uniqueItems": true
106310        },
106311        {
106312          "description": "If 'true', then the output is pretty printed.",
106313          "in": "query",
106314          "name": "pretty",
106315          "type": "string",
106316          "uniqueItems": true
106317        }
106318      ],
106319      "patch": {
106320        "consumes": [
106321          "application/json-patch+json",
106322          "application/merge-patch+json",
106323          "application/strategic-merge-patch+json",
106324          "application/apply-patch+yaml"
106325        ],
106326        "description": "partially update the specified CSIDriver",
106327        "operationId": "patchStorageV1beta1CSIDriver",
106328        "parameters": [
106329          {
106330            "in": "body",
106331            "name": "body",
106332            "required": true,
106333            "schema": {
106334              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
106335            }
106336          },
106337          {
106338            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106339            "in": "query",
106340            "name": "dryRun",
106341            "type": "string",
106342            "uniqueItems": true
106343          },
106344          {
106345            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
106346            "in": "query",
106347            "name": "fieldManager",
106348            "type": "string",
106349            "uniqueItems": true
106350          },
106351          {
106352            "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.",
106353            "in": "query",
106354            "name": "force",
106355            "type": "boolean",
106356            "uniqueItems": true
106357          }
106358        ],
106359        "produces": [
106360          "application/json",
106361          "application/yaml",
106362          "application/vnd.kubernetes.protobuf"
106363        ],
106364        "responses": {
106365          "200": {
106366            "description": "OK",
106367            "schema": {
106368              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106369            }
106370          },
106371          "401": {
106372            "description": "Unauthorized"
106373          }
106374        },
106375        "schemes": [
106376          "https"
106377        ],
106378        "tags": [
106379          "storage_v1beta1"
106380        ],
106381        "x-kubernetes-action": "patch",
106382        "x-kubernetes-group-version-kind": {
106383          "group": "storage.k8s.io",
106384          "kind": "CSIDriver",
106385          "version": "v1beta1"
106386        }
106387      },
106388      "put": {
106389        "consumes": [
106390          "*/*"
106391        ],
106392        "description": "replace the specified CSIDriver",
106393        "operationId": "replaceStorageV1beta1CSIDriver",
106394        "parameters": [
106395          {
106396            "in": "body",
106397            "name": "body",
106398            "required": true,
106399            "schema": {
106400              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106401            }
106402          },
106403          {
106404            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106405            "in": "query",
106406            "name": "dryRun",
106407            "type": "string",
106408            "uniqueItems": true
106409          },
106410          {
106411            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106412            "in": "query",
106413            "name": "fieldManager",
106414            "type": "string",
106415            "uniqueItems": true
106416          }
106417        ],
106418        "produces": [
106419          "application/json",
106420          "application/yaml",
106421          "application/vnd.kubernetes.protobuf"
106422        ],
106423        "responses": {
106424          "200": {
106425            "description": "OK",
106426            "schema": {
106427              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106428            }
106429          },
106430          "201": {
106431            "description": "Created",
106432            "schema": {
106433              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106434            }
106435          },
106436          "401": {
106437            "description": "Unauthorized"
106438          }
106439        },
106440        "schemes": [
106441          "https"
106442        ],
106443        "tags": [
106444          "storage_v1beta1"
106445        ],
106446        "x-kubernetes-action": "put",
106447        "x-kubernetes-group-version-kind": {
106448          "group": "storage.k8s.io",
106449          "kind": "CSIDriver",
106450          "version": "v1beta1"
106451        }
106452      }
106453    },
106454    "/apis/storage.k8s.io/v1beta1/csinodes": {
106455      "delete": {
106456        "consumes": [
106457          "*/*"
106458        ],
106459        "description": "delete collection of CSINode",
106460        "operationId": "deleteStorageV1beta1CollectionCSINode",
106461        "parameters": [
106462          {
106463            "in": "body",
106464            "name": "body",
106465            "schema": {
106466              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106467            }
106468          },
106469          {
106470            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106471            "in": "query",
106472            "name": "continue",
106473            "type": "string",
106474            "uniqueItems": true
106475          },
106476          {
106477            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106478            "in": "query",
106479            "name": "dryRun",
106480            "type": "string",
106481            "uniqueItems": true
106482          },
106483          {
106484            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106485            "in": "query",
106486            "name": "fieldSelector",
106487            "type": "string",
106488            "uniqueItems": true
106489          },
106490          {
106491            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
106492            "in": "query",
106493            "name": "gracePeriodSeconds",
106494            "type": "integer",
106495            "uniqueItems": true
106496          },
106497          {
106498            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106499            "in": "query",
106500            "name": "labelSelector",
106501            "type": "string",
106502            "uniqueItems": true
106503          },
106504          {
106505            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106506            "in": "query",
106507            "name": "limit",
106508            "type": "integer",
106509            "uniqueItems": true
106510          },
106511          {
106512            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
106513            "in": "query",
106514            "name": "orphanDependents",
106515            "type": "boolean",
106516            "uniqueItems": true
106517          },
106518          {
106519            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
106520            "in": "query",
106521            "name": "propagationPolicy",
106522            "type": "string",
106523            "uniqueItems": true
106524          },
106525          {
106526            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106527            "in": "query",
106528            "name": "resourceVersion",
106529            "type": "string",
106530            "uniqueItems": true
106531          },
106532          {
106533            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106534            "in": "query",
106535            "name": "resourceVersionMatch",
106536            "type": "string",
106537            "uniqueItems": true
106538          },
106539          {
106540            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106541            "in": "query",
106542            "name": "timeoutSeconds",
106543            "type": "integer",
106544            "uniqueItems": true
106545          }
106546        ],
106547        "produces": [
106548          "application/json",
106549          "application/yaml",
106550          "application/vnd.kubernetes.protobuf"
106551        ],
106552        "responses": {
106553          "200": {
106554            "description": "OK",
106555            "schema": {
106556              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
106557            }
106558          },
106559          "401": {
106560            "description": "Unauthorized"
106561          }
106562        },
106563        "schemes": [
106564          "https"
106565        ],
106566        "tags": [
106567          "storage_v1beta1"
106568        ],
106569        "x-kubernetes-action": "deletecollection",
106570        "x-kubernetes-group-version-kind": {
106571          "group": "storage.k8s.io",
106572          "kind": "CSINode",
106573          "version": "v1beta1"
106574        }
106575      },
106576      "get": {
106577        "consumes": [
106578          "*/*"
106579        ],
106580        "description": "list or watch objects of kind CSINode",
106581        "operationId": "listStorageV1beta1CSINode",
106582        "parameters": [
106583          {
106584            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
106585            "in": "query",
106586            "name": "allowWatchBookmarks",
106587            "type": "boolean",
106588            "uniqueItems": true
106589          },
106590          {
106591            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106592            "in": "query",
106593            "name": "continue",
106594            "type": "string",
106595            "uniqueItems": true
106596          },
106597          {
106598            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106599            "in": "query",
106600            "name": "fieldSelector",
106601            "type": "string",
106602            "uniqueItems": true
106603          },
106604          {
106605            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106606            "in": "query",
106607            "name": "labelSelector",
106608            "type": "string",
106609            "uniqueItems": true
106610          },
106611          {
106612            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106613            "in": "query",
106614            "name": "limit",
106615            "type": "integer",
106616            "uniqueItems": true
106617          },
106618          {
106619            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106620            "in": "query",
106621            "name": "resourceVersion",
106622            "type": "string",
106623            "uniqueItems": true
106624          },
106625          {
106626            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106627            "in": "query",
106628            "name": "resourceVersionMatch",
106629            "type": "string",
106630            "uniqueItems": true
106631          },
106632          {
106633            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106634            "in": "query",
106635            "name": "timeoutSeconds",
106636            "type": "integer",
106637            "uniqueItems": true
106638          },
106639          {
106640            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106641            "in": "query",
106642            "name": "watch",
106643            "type": "boolean",
106644            "uniqueItems": true
106645          }
106646        ],
106647        "produces": [
106648          "application/json",
106649          "application/yaml",
106650          "application/vnd.kubernetes.protobuf",
106651          "application/json;stream=watch",
106652          "application/vnd.kubernetes.protobuf;stream=watch"
106653        ],
106654        "responses": {
106655          "200": {
106656            "description": "OK",
106657            "schema": {
106658              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeList"
106659            }
106660          },
106661          "401": {
106662            "description": "Unauthorized"
106663          }
106664        },
106665        "schemes": [
106666          "https"
106667        ],
106668        "tags": [
106669          "storage_v1beta1"
106670        ],
106671        "x-kubernetes-action": "list",
106672        "x-kubernetes-group-version-kind": {
106673          "group": "storage.k8s.io",
106674          "kind": "CSINode",
106675          "version": "v1beta1"
106676        }
106677      },
106678      "parameters": [
106679        {
106680          "description": "If 'true', then the output is pretty printed.",
106681          "in": "query",
106682          "name": "pretty",
106683          "type": "string",
106684          "uniqueItems": true
106685        }
106686      ],
106687      "post": {
106688        "consumes": [
106689          "*/*"
106690        ],
106691        "description": "create a CSINode",
106692        "operationId": "createStorageV1beta1CSINode",
106693        "parameters": [
106694          {
106695            "in": "body",
106696            "name": "body",
106697            "required": true,
106698            "schema": {
106699              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106700            }
106701          },
106702          {
106703            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106704            "in": "query",
106705            "name": "dryRun",
106706            "type": "string",
106707            "uniqueItems": true
106708          },
106709          {
106710            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106711            "in": "query",
106712            "name": "fieldManager",
106713            "type": "string",
106714            "uniqueItems": true
106715          }
106716        ],
106717        "produces": [
106718          "application/json",
106719          "application/yaml",
106720          "application/vnd.kubernetes.protobuf"
106721        ],
106722        "responses": {
106723          "200": {
106724            "description": "OK",
106725            "schema": {
106726              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106727            }
106728          },
106729          "201": {
106730            "description": "Created",
106731            "schema": {
106732              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106733            }
106734          },
106735          "202": {
106736            "description": "Accepted",
106737            "schema": {
106738              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106739            }
106740          },
106741          "401": {
106742            "description": "Unauthorized"
106743          }
106744        },
106745        "schemes": [
106746          "https"
106747        ],
106748        "tags": [
106749          "storage_v1beta1"
106750        ],
106751        "x-kubernetes-action": "post",
106752        "x-kubernetes-group-version-kind": {
106753          "group": "storage.k8s.io",
106754          "kind": "CSINode",
106755          "version": "v1beta1"
106756        }
106757      }
106758    },
106759    "/apis/storage.k8s.io/v1beta1/csinodes/{name}": {
106760      "delete": {
106761        "consumes": [
106762          "*/*"
106763        ],
106764        "description": "delete a CSINode",
106765        "operationId": "deleteStorageV1beta1CSINode",
106766        "parameters": [
106767          {
106768            "in": "body",
106769            "name": "body",
106770            "schema": {
106771              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106772            }
106773          },
106774          {
106775            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106776            "in": "query",
106777            "name": "dryRun",
106778            "type": "string",
106779            "uniqueItems": true
106780          },
106781          {
106782            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
106783            "in": "query",
106784            "name": "gracePeriodSeconds",
106785            "type": "integer",
106786            "uniqueItems": true
106787          },
106788          {
106789            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
106790            "in": "query",
106791            "name": "orphanDependents",
106792            "type": "boolean",
106793            "uniqueItems": true
106794          },
106795          {
106796            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
106797            "in": "query",
106798            "name": "propagationPolicy",
106799            "type": "string",
106800            "uniqueItems": true
106801          }
106802        ],
106803        "produces": [
106804          "application/json",
106805          "application/yaml",
106806          "application/vnd.kubernetes.protobuf"
106807        ],
106808        "responses": {
106809          "200": {
106810            "description": "OK",
106811            "schema": {
106812              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106813            }
106814          },
106815          "202": {
106816            "description": "Accepted",
106817            "schema": {
106818              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106819            }
106820          },
106821          "401": {
106822            "description": "Unauthorized"
106823          }
106824        },
106825        "schemes": [
106826          "https"
106827        ],
106828        "tags": [
106829          "storage_v1beta1"
106830        ],
106831        "x-kubernetes-action": "delete",
106832        "x-kubernetes-group-version-kind": {
106833          "group": "storage.k8s.io",
106834          "kind": "CSINode",
106835          "version": "v1beta1"
106836        }
106837      },
106838      "get": {
106839        "consumes": [
106840          "*/*"
106841        ],
106842        "description": "read the specified CSINode",
106843        "operationId": "readStorageV1beta1CSINode",
106844        "produces": [
106845          "application/json",
106846          "application/yaml",
106847          "application/vnd.kubernetes.protobuf"
106848        ],
106849        "responses": {
106850          "200": {
106851            "description": "OK",
106852            "schema": {
106853              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106854            }
106855          },
106856          "401": {
106857            "description": "Unauthorized"
106858          }
106859        },
106860        "schemes": [
106861          "https"
106862        ],
106863        "tags": [
106864          "storage_v1beta1"
106865        ],
106866        "x-kubernetes-action": "get",
106867        "x-kubernetes-group-version-kind": {
106868          "group": "storage.k8s.io",
106869          "kind": "CSINode",
106870          "version": "v1beta1"
106871        }
106872      },
106873      "parameters": [
106874        {
106875          "description": "name of the CSINode",
106876          "in": "path",
106877          "name": "name",
106878          "required": true,
106879          "type": "string",
106880          "uniqueItems": true
106881        },
106882        {
106883          "description": "If 'true', then the output is pretty printed.",
106884          "in": "query",
106885          "name": "pretty",
106886          "type": "string",
106887          "uniqueItems": true
106888        }
106889      ],
106890      "patch": {
106891        "consumes": [
106892          "application/json-patch+json",
106893          "application/merge-patch+json",
106894          "application/strategic-merge-patch+json",
106895          "application/apply-patch+yaml"
106896        ],
106897        "description": "partially update the specified CSINode",
106898        "operationId": "patchStorageV1beta1CSINode",
106899        "parameters": [
106900          {
106901            "in": "body",
106902            "name": "body",
106903            "required": true,
106904            "schema": {
106905              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
106906            }
106907          },
106908          {
106909            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106910            "in": "query",
106911            "name": "dryRun",
106912            "type": "string",
106913            "uniqueItems": true
106914          },
106915          {
106916            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
106917            "in": "query",
106918            "name": "fieldManager",
106919            "type": "string",
106920            "uniqueItems": true
106921          },
106922          {
106923            "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.",
106924            "in": "query",
106925            "name": "force",
106926            "type": "boolean",
106927            "uniqueItems": true
106928          }
106929        ],
106930        "produces": [
106931          "application/json",
106932          "application/yaml",
106933          "application/vnd.kubernetes.protobuf"
106934        ],
106935        "responses": {
106936          "200": {
106937            "description": "OK",
106938            "schema": {
106939              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106940            }
106941          },
106942          "401": {
106943            "description": "Unauthorized"
106944          }
106945        },
106946        "schemes": [
106947          "https"
106948        ],
106949        "tags": [
106950          "storage_v1beta1"
106951        ],
106952        "x-kubernetes-action": "patch",
106953        "x-kubernetes-group-version-kind": {
106954          "group": "storage.k8s.io",
106955          "kind": "CSINode",
106956          "version": "v1beta1"
106957        }
106958      },
106959      "put": {
106960        "consumes": [
106961          "*/*"
106962        ],
106963        "description": "replace the specified CSINode",
106964        "operationId": "replaceStorageV1beta1CSINode",
106965        "parameters": [
106966          {
106967            "in": "body",
106968            "name": "body",
106969            "required": true,
106970            "schema": {
106971              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106972            }
106973          },
106974          {
106975            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106976            "in": "query",
106977            "name": "dryRun",
106978            "type": "string",
106979            "uniqueItems": true
106980          },
106981          {
106982            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106983            "in": "query",
106984            "name": "fieldManager",
106985            "type": "string",
106986            "uniqueItems": true
106987          }
106988        ],
106989        "produces": [
106990          "application/json",
106991          "application/yaml",
106992          "application/vnd.kubernetes.protobuf"
106993        ],
106994        "responses": {
106995          "200": {
106996            "description": "OK",
106997            "schema": {
106998              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106999            }
107000          },
107001          "201": {
107002            "description": "Created",
107003            "schema": {
107004              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
107005            }
107006          },
107007          "401": {
107008            "description": "Unauthorized"
107009          }
107010        },
107011        "schemes": [
107012          "https"
107013        ],
107014        "tags": [
107015          "storage_v1beta1"
107016        ],
107017        "x-kubernetes-action": "put",
107018        "x-kubernetes-group-version-kind": {
107019          "group": "storage.k8s.io",
107020          "kind": "CSINode",
107021          "version": "v1beta1"
107022        }
107023      }
107024    },
107025    "/apis/storage.k8s.io/v1beta1/storageclasses": {
107026      "delete": {
107027        "consumes": [
107028          "*/*"
107029        ],
107030        "description": "delete collection of StorageClass",
107031        "operationId": "deleteStorageV1beta1CollectionStorageClass",
107032        "parameters": [
107033          {
107034            "in": "body",
107035            "name": "body",
107036            "schema": {
107037              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107038            }
107039          },
107040          {
107041            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107042            "in": "query",
107043            "name": "continue",
107044            "type": "string",
107045            "uniqueItems": true
107046          },
107047          {
107048            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107049            "in": "query",
107050            "name": "dryRun",
107051            "type": "string",
107052            "uniqueItems": true
107053          },
107054          {
107055            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107056            "in": "query",
107057            "name": "fieldSelector",
107058            "type": "string",
107059            "uniqueItems": true
107060          },
107061          {
107062            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107063            "in": "query",
107064            "name": "gracePeriodSeconds",
107065            "type": "integer",
107066            "uniqueItems": true
107067          },
107068          {
107069            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107070            "in": "query",
107071            "name": "labelSelector",
107072            "type": "string",
107073            "uniqueItems": true
107074          },
107075          {
107076            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107077            "in": "query",
107078            "name": "limit",
107079            "type": "integer",
107080            "uniqueItems": true
107081          },
107082          {
107083            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107084            "in": "query",
107085            "name": "orphanDependents",
107086            "type": "boolean",
107087            "uniqueItems": true
107088          },
107089          {
107090            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107091            "in": "query",
107092            "name": "propagationPolicy",
107093            "type": "string",
107094            "uniqueItems": true
107095          },
107096          {
107097            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107098            "in": "query",
107099            "name": "resourceVersion",
107100            "type": "string",
107101            "uniqueItems": true
107102          },
107103          {
107104            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107105            "in": "query",
107106            "name": "resourceVersionMatch",
107107            "type": "string",
107108            "uniqueItems": true
107109          },
107110          {
107111            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107112            "in": "query",
107113            "name": "timeoutSeconds",
107114            "type": "integer",
107115            "uniqueItems": true
107116          }
107117        ],
107118        "produces": [
107119          "application/json",
107120          "application/yaml",
107121          "application/vnd.kubernetes.protobuf"
107122        ],
107123        "responses": {
107124          "200": {
107125            "description": "OK",
107126            "schema": {
107127              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107128            }
107129          },
107130          "401": {
107131            "description": "Unauthorized"
107132          }
107133        },
107134        "schemes": [
107135          "https"
107136        ],
107137        "tags": [
107138          "storage_v1beta1"
107139        ],
107140        "x-kubernetes-action": "deletecollection",
107141        "x-kubernetes-group-version-kind": {
107142          "group": "storage.k8s.io",
107143          "kind": "StorageClass",
107144          "version": "v1beta1"
107145        }
107146      },
107147      "get": {
107148        "consumes": [
107149          "*/*"
107150        ],
107151        "description": "list or watch objects of kind StorageClass",
107152        "operationId": "listStorageV1beta1StorageClass",
107153        "parameters": [
107154          {
107155            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
107156            "in": "query",
107157            "name": "allowWatchBookmarks",
107158            "type": "boolean",
107159            "uniqueItems": true
107160          },
107161          {
107162            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107163            "in": "query",
107164            "name": "continue",
107165            "type": "string",
107166            "uniqueItems": true
107167          },
107168          {
107169            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107170            "in": "query",
107171            "name": "fieldSelector",
107172            "type": "string",
107173            "uniqueItems": true
107174          },
107175          {
107176            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107177            "in": "query",
107178            "name": "labelSelector",
107179            "type": "string",
107180            "uniqueItems": true
107181          },
107182          {
107183            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107184            "in": "query",
107185            "name": "limit",
107186            "type": "integer",
107187            "uniqueItems": true
107188          },
107189          {
107190            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107191            "in": "query",
107192            "name": "resourceVersion",
107193            "type": "string",
107194            "uniqueItems": true
107195          },
107196          {
107197            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107198            "in": "query",
107199            "name": "resourceVersionMatch",
107200            "type": "string",
107201            "uniqueItems": true
107202          },
107203          {
107204            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107205            "in": "query",
107206            "name": "timeoutSeconds",
107207            "type": "integer",
107208            "uniqueItems": true
107209          },
107210          {
107211            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107212            "in": "query",
107213            "name": "watch",
107214            "type": "boolean",
107215            "uniqueItems": true
107216          }
107217        ],
107218        "produces": [
107219          "application/json",
107220          "application/yaml",
107221          "application/vnd.kubernetes.protobuf",
107222          "application/json;stream=watch",
107223          "application/vnd.kubernetes.protobuf;stream=watch"
107224        ],
107225        "responses": {
107226          "200": {
107227            "description": "OK",
107228            "schema": {
107229              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClassList"
107230            }
107231          },
107232          "401": {
107233            "description": "Unauthorized"
107234          }
107235        },
107236        "schemes": [
107237          "https"
107238        ],
107239        "tags": [
107240          "storage_v1beta1"
107241        ],
107242        "x-kubernetes-action": "list",
107243        "x-kubernetes-group-version-kind": {
107244          "group": "storage.k8s.io",
107245          "kind": "StorageClass",
107246          "version": "v1beta1"
107247        }
107248      },
107249      "parameters": [
107250        {
107251          "description": "If 'true', then the output is pretty printed.",
107252          "in": "query",
107253          "name": "pretty",
107254          "type": "string",
107255          "uniqueItems": true
107256        }
107257      ],
107258      "post": {
107259        "consumes": [
107260          "*/*"
107261        ],
107262        "description": "create a StorageClass",
107263        "operationId": "createStorageV1beta1StorageClass",
107264        "parameters": [
107265          {
107266            "in": "body",
107267            "name": "body",
107268            "required": true,
107269            "schema": {
107270              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107271            }
107272          },
107273          {
107274            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107275            "in": "query",
107276            "name": "dryRun",
107277            "type": "string",
107278            "uniqueItems": true
107279          },
107280          {
107281            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107282            "in": "query",
107283            "name": "fieldManager",
107284            "type": "string",
107285            "uniqueItems": true
107286          }
107287        ],
107288        "produces": [
107289          "application/json",
107290          "application/yaml",
107291          "application/vnd.kubernetes.protobuf"
107292        ],
107293        "responses": {
107294          "200": {
107295            "description": "OK",
107296            "schema": {
107297              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107298            }
107299          },
107300          "201": {
107301            "description": "Created",
107302            "schema": {
107303              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107304            }
107305          },
107306          "202": {
107307            "description": "Accepted",
107308            "schema": {
107309              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107310            }
107311          },
107312          "401": {
107313            "description": "Unauthorized"
107314          }
107315        },
107316        "schemes": [
107317          "https"
107318        ],
107319        "tags": [
107320          "storage_v1beta1"
107321        ],
107322        "x-kubernetes-action": "post",
107323        "x-kubernetes-group-version-kind": {
107324          "group": "storage.k8s.io",
107325          "kind": "StorageClass",
107326          "version": "v1beta1"
107327        }
107328      }
107329    },
107330    "/apis/storage.k8s.io/v1beta1/storageclasses/{name}": {
107331      "delete": {
107332        "consumes": [
107333          "*/*"
107334        ],
107335        "description": "delete a StorageClass",
107336        "operationId": "deleteStorageV1beta1StorageClass",
107337        "parameters": [
107338          {
107339            "in": "body",
107340            "name": "body",
107341            "schema": {
107342              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107343            }
107344          },
107345          {
107346            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107347            "in": "query",
107348            "name": "dryRun",
107349            "type": "string",
107350            "uniqueItems": true
107351          },
107352          {
107353            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107354            "in": "query",
107355            "name": "gracePeriodSeconds",
107356            "type": "integer",
107357            "uniqueItems": true
107358          },
107359          {
107360            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107361            "in": "query",
107362            "name": "orphanDependents",
107363            "type": "boolean",
107364            "uniqueItems": true
107365          },
107366          {
107367            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107368            "in": "query",
107369            "name": "propagationPolicy",
107370            "type": "string",
107371            "uniqueItems": true
107372          }
107373        ],
107374        "produces": [
107375          "application/json",
107376          "application/yaml",
107377          "application/vnd.kubernetes.protobuf"
107378        ],
107379        "responses": {
107380          "200": {
107381            "description": "OK",
107382            "schema": {
107383              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107384            }
107385          },
107386          "202": {
107387            "description": "Accepted",
107388            "schema": {
107389              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107390            }
107391          },
107392          "401": {
107393            "description": "Unauthorized"
107394          }
107395        },
107396        "schemes": [
107397          "https"
107398        ],
107399        "tags": [
107400          "storage_v1beta1"
107401        ],
107402        "x-kubernetes-action": "delete",
107403        "x-kubernetes-group-version-kind": {
107404          "group": "storage.k8s.io",
107405          "kind": "StorageClass",
107406          "version": "v1beta1"
107407        }
107408      },
107409      "get": {
107410        "consumes": [
107411          "*/*"
107412        ],
107413        "description": "read the specified StorageClass",
107414        "operationId": "readStorageV1beta1StorageClass",
107415        "produces": [
107416          "application/json",
107417          "application/yaml",
107418          "application/vnd.kubernetes.protobuf"
107419        ],
107420        "responses": {
107421          "200": {
107422            "description": "OK",
107423            "schema": {
107424              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107425            }
107426          },
107427          "401": {
107428            "description": "Unauthorized"
107429          }
107430        },
107431        "schemes": [
107432          "https"
107433        ],
107434        "tags": [
107435          "storage_v1beta1"
107436        ],
107437        "x-kubernetes-action": "get",
107438        "x-kubernetes-group-version-kind": {
107439          "group": "storage.k8s.io",
107440          "kind": "StorageClass",
107441          "version": "v1beta1"
107442        }
107443      },
107444      "parameters": [
107445        {
107446          "description": "name of the StorageClass",
107447          "in": "path",
107448          "name": "name",
107449          "required": true,
107450          "type": "string",
107451          "uniqueItems": true
107452        },
107453        {
107454          "description": "If 'true', then the output is pretty printed.",
107455          "in": "query",
107456          "name": "pretty",
107457          "type": "string",
107458          "uniqueItems": true
107459        }
107460      ],
107461      "patch": {
107462        "consumes": [
107463          "application/json-patch+json",
107464          "application/merge-patch+json",
107465          "application/strategic-merge-patch+json",
107466          "application/apply-patch+yaml"
107467        ],
107468        "description": "partially update the specified StorageClass",
107469        "operationId": "patchStorageV1beta1StorageClass",
107470        "parameters": [
107471          {
107472            "in": "body",
107473            "name": "body",
107474            "required": true,
107475            "schema": {
107476              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
107477            }
107478          },
107479          {
107480            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107481            "in": "query",
107482            "name": "dryRun",
107483            "type": "string",
107484            "uniqueItems": true
107485          },
107486          {
107487            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
107488            "in": "query",
107489            "name": "fieldManager",
107490            "type": "string",
107491            "uniqueItems": true
107492          },
107493          {
107494            "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.",
107495            "in": "query",
107496            "name": "force",
107497            "type": "boolean",
107498            "uniqueItems": true
107499          }
107500        ],
107501        "produces": [
107502          "application/json",
107503          "application/yaml",
107504          "application/vnd.kubernetes.protobuf"
107505        ],
107506        "responses": {
107507          "200": {
107508            "description": "OK",
107509            "schema": {
107510              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107511            }
107512          },
107513          "401": {
107514            "description": "Unauthorized"
107515          }
107516        },
107517        "schemes": [
107518          "https"
107519        ],
107520        "tags": [
107521          "storage_v1beta1"
107522        ],
107523        "x-kubernetes-action": "patch",
107524        "x-kubernetes-group-version-kind": {
107525          "group": "storage.k8s.io",
107526          "kind": "StorageClass",
107527          "version": "v1beta1"
107528        }
107529      },
107530      "put": {
107531        "consumes": [
107532          "*/*"
107533        ],
107534        "description": "replace the specified StorageClass",
107535        "operationId": "replaceStorageV1beta1StorageClass",
107536        "parameters": [
107537          {
107538            "in": "body",
107539            "name": "body",
107540            "required": true,
107541            "schema": {
107542              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107543            }
107544          },
107545          {
107546            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107547            "in": "query",
107548            "name": "dryRun",
107549            "type": "string",
107550            "uniqueItems": true
107551          },
107552          {
107553            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107554            "in": "query",
107555            "name": "fieldManager",
107556            "type": "string",
107557            "uniqueItems": true
107558          }
107559        ],
107560        "produces": [
107561          "application/json",
107562          "application/yaml",
107563          "application/vnd.kubernetes.protobuf"
107564        ],
107565        "responses": {
107566          "200": {
107567            "description": "OK",
107568            "schema": {
107569              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107570            }
107571          },
107572          "201": {
107573            "description": "Created",
107574            "schema": {
107575              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107576            }
107577          },
107578          "401": {
107579            "description": "Unauthorized"
107580          }
107581        },
107582        "schemes": [
107583          "https"
107584        ],
107585        "tags": [
107586          "storage_v1beta1"
107587        ],
107588        "x-kubernetes-action": "put",
107589        "x-kubernetes-group-version-kind": {
107590          "group": "storage.k8s.io",
107591          "kind": "StorageClass",
107592          "version": "v1beta1"
107593        }
107594      }
107595    },
107596    "/apis/storage.k8s.io/v1beta1/volumeattachments": {
107597      "delete": {
107598        "consumes": [
107599          "*/*"
107600        ],
107601        "description": "delete collection of VolumeAttachment",
107602        "operationId": "deleteStorageV1beta1CollectionVolumeAttachment",
107603        "parameters": [
107604          {
107605            "in": "body",
107606            "name": "body",
107607            "schema": {
107608              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107609            }
107610          },
107611          {
107612            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107613            "in": "query",
107614            "name": "continue",
107615            "type": "string",
107616            "uniqueItems": true
107617          },
107618          {
107619            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107620            "in": "query",
107621            "name": "dryRun",
107622            "type": "string",
107623            "uniqueItems": true
107624          },
107625          {
107626            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107627            "in": "query",
107628            "name": "fieldSelector",
107629            "type": "string",
107630            "uniqueItems": true
107631          },
107632          {
107633            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107634            "in": "query",
107635            "name": "gracePeriodSeconds",
107636            "type": "integer",
107637            "uniqueItems": true
107638          },
107639          {
107640            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107641            "in": "query",
107642            "name": "labelSelector",
107643            "type": "string",
107644            "uniqueItems": true
107645          },
107646          {
107647            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107648            "in": "query",
107649            "name": "limit",
107650            "type": "integer",
107651            "uniqueItems": true
107652          },
107653          {
107654            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107655            "in": "query",
107656            "name": "orphanDependents",
107657            "type": "boolean",
107658            "uniqueItems": true
107659          },
107660          {
107661            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107662            "in": "query",
107663            "name": "propagationPolicy",
107664            "type": "string",
107665            "uniqueItems": true
107666          },
107667          {
107668            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107669            "in": "query",
107670            "name": "resourceVersion",
107671            "type": "string",
107672            "uniqueItems": true
107673          },
107674          {
107675            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107676            "in": "query",
107677            "name": "resourceVersionMatch",
107678            "type": "string",
107679            "uniqueItems": true
107680          },
107681          {
107682            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107683            "in": "query",
107684            "name": "timeoutSeconds",
107685            "type": "integer",
107686            "uniqueItems": true
107687          }
107688        ],
107689        "produces": [
107690          "application/json",
107691          "application/yaml",
107692          "application/vnd.kubernetes.protobuf"
107693        ],
107694        "responses": {
107695          "200": {
107696            "description": "OK",
107697            "schema": {
107698              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107699            }
107700          },
107701          "401": {
107702            "description": "Unauthorized"
107703          }
107704        },
107705        "schemes": [
107706          "https"
107707        ],
107708        "tags": [
107709          "storage_v1beta1"
107710        ],
107711        "x-kubernetes-action": "deletecollection",
107712        "x-kubernetes-group-version-kind": {
107713          "group": "storage.k8s.io",
107714          "kind": "VolumeAttachment",
107715          "version": "v1beta1"
107716        }
107717      },
107718      "get": {
107719        "consumes": [
107720          "*/*"
107721        ],
107722        "description": "list or watch objects of kind VolumeAttachment",
107723        "operationId": "listStorageV1beta1VolumeAttachment",
107724        "parameters": [
107725          {
107726            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
107727            "in": "query",
107728            "name": "allowWatchBookmarks",
107729            "type": "boolean",
107730            "uniqueItems": true
107731          },
107732          {
107733            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107734            "in": "query",
107735            "name": "continue",
107736            "type": "string",
107737            "uniqueItems": true
107738          },
107739          {
107740            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107741            "in": "query",
107742            "name": "fieldSelector",
107743            "type": "string",
107744            "uniqueItems": true
107745          },
107746          {
107747            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107748            "in": "query",
107749            "name": "labelSelector",
107750            "type": "string",
107751            "uniqueItems": true
107752          },
107753          {
107754            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107755            "in": "query",
107756            "name": "limit",
107757            "type": "integer",
107758            "uniqueItems": true
107759          },
107760          {
107761            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107762            "in": "query",
107763            "name": "resourceVersion",
107764            "type": "string",
107765            "uniqueItems": true
107766          },
107767          {
107768            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107769            "in": "query",
107770            "name": "resourceVersionMatch",
107771            "type": "string",
107772            "uniqueItems": true
107773          },
107774          {
107775            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107776            "in": "query",
107777            "name": "timeoutSeconds",
107778            "type": "integer",
107779            "uniqueItems": true
107780          },
107781          {
107782            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107783            "in": "query",
107784            "name": "watch",
107785            "type": "boolean",
107786            "uniqueItems": true
107787          }
107788        ],
107789        "produces": [
107790          "application/json",
107791          "application/yaml",
107792          "application/vnd.kubernetes.protobuf",
107793          "application/json;stream=watch",
107794          "application/vnd.kubernetes.protobuf;stream=watch"
107795        ],
107796        "responses": {
107797          "200": {
107798            "description": "OK",
107799            "schema": {
107800              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentList"
107801            }
107802          },
107803          "401": {
107804            "description": "Unauthorized"
107805          }
107806        },
107807        "schemes": [
107808          "https"
107809        ],
107810        "tags": [
107811          "storage_v1beta1"
107812        ],
107813        "x-kubernetes-action": "list",
107814        "x-kubernetes-group-version-kind": {
107815          "group": "storage.k8s.io",
107816          "kind": "VolumeAttachment",
107817          "version": "v1beta1"
107818        }
107819      },
107820      "parameters": [
107821        {
107822          "description": "If 'true', then the output is pretty printed.",
107823          "in": "query",
107824          "name": "pretty",
107825          "type": "string",
107826          "uniqueItems": true
107827        }
107828      ],
107829      "post": {
107830        "consumes": [
107831          "*/*"
107832        ],
107833        "description": "create a VolumeAttachment",
107834        "operationId": "createStorageV1beta1VolumeAttachment",
107835        "parameters": [
107836          {
107837            "in": "body",
107838            "name": "body",
107839            "required": true,
107840            "schema": {
107841              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107842            }
107843          },
107844          {
107845            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107846            "in": "query",
107847            "name": "dryRun",
107848            "type": "string",
107849            "uniqueItems": true
107850          },
107851          {
107852            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107853            "in": "query",
107854            "name": "fieldManager",
107855            "type": "string",
107856            "uniqueItems": true
107857          }
107858        ],
107859        "produces": [
107860          "application/json",
107861          "application/yaml",
107862          "application/vnd.kubernetes.protobuf"
107863        ],
107864        "responses": {
107865          "200": {
107866            "description": "OK",
107867            "schema": {
107868              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107869            }
107870          },
107871          "201": {
107872            "description": "Created",
107873            "schema": {
107874              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107875            }
107876          },
107877          "202": {
107878            "description": "Accepted",
107879            "schema": {
107880              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107881            }
107882          },
107883          "401": {
107884            "description": "Unauthorized"
107885          }
107886        },
107887        "schemes": [
107888          "https"
107889        ],
107890        "tags": [
107891          "storage_v1beta1"
107892        ],
107893        "x-kubernetes-action": "post",
107894        "x-kubernetes-group-version-kind": {
107895          "group": "storage.k8s.io",
107896          "kind": "VolumeAttachment",
107897          "version": "v1beta1"
107898        }
107899      }
107900    },
107901    "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}": {
107902      "delete": {
107903        "consumes": [
107904          "*/*"
107905        ],
107906        "description": "delete a VolumeAttachment",
107907        "operationId": "deleteStorageV1beta1VolumeAttachment",
107908        "parameters": [
107909          {
107910            "in": "body",
107911            "name": "body",
107912            "schema": {
107913              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107914            }
107915          },
107916          {
107917            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107918            "in": "query",
107919            "name": "dryRun",
107920            "type": "string",
107921            "uniqueItems": true
107922          },
107923          {
107924            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107925            "in": "query",
107926            "name": "gracePeriodSeconds",
107927            "type": "integer",
107928            "uniqueItems": true
107929          },
107930          {
107931            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107932            "in": "query",
107933            "name": "orphanDependents",
107934            "type": "boolean",
107935            "uniqueItems": true
107936          },
107937          {
107938            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107939            "in": "query",
107940            "name": "propagationPolicy",
107941            "type": "string",
107942            "uniqueItems": true
107943          }
107944        ],
107945        "produces": [
107946          "application/json",
107947          "application/yaml",
107948          "application/vnd.kubernetes.protobuf"
107949        ],
107950        "responses": {
107951          "200": {
107952            "description": "OK",
107953            "schema": {
107954              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107955            }
107956          },
107957          "202": {
107958            "description": "Accepted",
107959            "schema": {
107960              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107961            }
107962          },
107963          "401": {
107964            "description": "Unauthorized"
107965          }
107966        },
107967        "schemes": [
107968          "https"
107969        ],
107970        "tags": [
107971          "storage_v1beta1"
107972        ],
107973        "x-kubernetes-action": "delete",
107974        "x-kubernetes-group-version-kind": {
107975          "group": "storage.k8s.io",
107976          "kind": "VolumeAttachment",
107977          "version": "v1beta1"
107978        }
107979      },
107980      "get": {
107981        "consumes": [
107982          "*/*"
107983        ],
107984        "description": "read the specified VolumeAttachment",
107985        "operationId": "readStorageV1beta1VolumeAttachment",
107986        "produces": [
107987          "application/json",
107988          "application/yaml",
107989          "application/vnd.kubernetes.protobuf"
107990        ],
107991        "responses": {
107992          "200": {
107993            "description": "OK",
107994            "schema": {
107995              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107996            }
107997          },
107998          "401": {
107999            "description": "Unauthorized"
108000          }
108001        },
108002        "schemes": [
108003          "https"
108004        ],
108005        "tags": [
108006          "storage_v1beta1"
108007        ],
108008        "x-kubernetes-action": "get",
108009        "x-kubernetes-group-version-kind": {
108010          "group": "storage.k8s.io",
108011          "kind": "VolumeAttachment",
108012          "version": "v1beta1"
108013        }
108014      },
108015      "parameters": [
108016        {
108017          "description": "name of the VolumeAttachment",
108018          "in": "path",
108019          "name": "name",
108020          "required": true,
108021          "type": "string",
108022          "uniqueItems": true
108023        },
108024        {
108025          "description": "If 'true', then the output is pretty printed.",
108026          "in": "query",
108027          "name": "pretty",
108028          "type": "string",
108029          "uniqueItems": true
108030        }
108031      ],
108032      "patch": {
108033        "consumes": [
108034          "application/json-patch+json",
108035          "application/merge-patch+json",
108036          "application/strategic-merge-patch+json",
108037          "application/apply-patch+yaml"
108038        ],
108039        "description": "partially update the specified VolumeAttachment",
108040        "operationId": "patchStorageV1beta1VolumeAttachment",
108041        "parameters": [
108042          {
108043            "in": "body",
108044            "name": "body",
108045            "required": true,
108046            "schema": {
108047              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
108048            }
108049          },
108050          {
108051            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108052            "in": "query",
108053            "name": "dryRun",
108054            "type": "string",
108055            "uniqueItems": true
108056          },
108057          {
108058            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
108059            "in": "query",
108060            "name": "fieldManager",
108061            "type": "string",
108062            "uniqueItems": true
108063          },
108064          {
108065            "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.",
108066            "in": "query",
108067            "name": "force",
108068            "type": "boolean",
108069            "uniqueItems": true
108070          }
108071        ],
108072        "produces": [
108073          "application/json",
108074          "application/yaml",
108075          "application/vnd.kubernetes.protobuf"
108076        ],
108077        "responses": {
108078          "200": {
108079            "description": "OK",
108080            "schema": {
108081              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108082            }
108083          },
108084          "401": {
108085            "description": "Unauthorized"
108086          }
108087        },
108088        "schemes": [
108089          "https"
108090        ],
108091        "tags": [
108092          "storage_v1beta1"
108093        ],
108094        "x-kubernetes-action": "patch",
108095        "x-kubernetes-group-version-kind": {
108096          "group": "storage.k8s.io",
108097          "kind": "VolumeAttachment",
108098          "version": "v1beta1"
108099        }
108100      },
108101      "put": {
108102        "consumes": [
108103          "*/*"
108104        ],
108105        "description": "replace the specified VolumeAttachment",
108106        "operationId": "replaceStorageV1beta1VolumeAttachment",
108107        "parameters": [
108108          {
108109            "in": "body",
108110            "name": "body",
108111            "required": true,
108112            "schema": {
108113              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108114            }
108115          },
108116          {
108117            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108118            "in": "query",
108119            "name": "dryRun",
108120            "type": "string",
108121            "uniqueItems": true
108122          },
108123          {
108124            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
108125            "in": "query",
108126            "name": "fieldManager",
108127            "type": "string",
108128            "uniqueItems": true
108129          }
108130        ],
108131        "produces": [
108132          "application/json",
108133          "application/yaml",
108134          "application/vnd.kubernetes.protobuf"
108135        ],
108136        "responses": {
108137          "200": {
108138            "description": "OK",
108139            "schema": {
108140              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108141            }
108142          },
108143          "201": {
108144            "description": "Created",
108145            "schema": {
108146              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108147            }
108148          },
108149          "401": {
108150            "description": "Unauthorized"
108151          }
108152        },
108153        "schemes": [
108154          "https"
108155        ],
108156        "tags": [
108157          "storage_v1beta1"
108158        ],
108159        "x-kubernetes-action": "put",
108160        "x-kubernetes-group-version-kind": {
108161          "group": "storage.k8s.io",
108162          "kind": "VolumeAttachment",
108163          "version": "v1beta1"
108164        }
108165      }
108166    },
108167    "/apis/storage.k8s.io/v1beta1/watch/csidrivers": {
108168      "get": {
108169        "consumes": [
108170          "*/*"
108171        ],
108172        "description": "watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead.",
108173        "operationId": "watchStorageV1beta1CSIDriverList",
108174        "produces": [
108175          "application/json",
108176          "application/yaml",
108177          "application/vnd.kubernetes.protobuf",
108178          "application/json;stream=watch",
108179          "application/vnd.kubernetes.protobuf;stream=watch"
108180        ],
108181        "responses": {
108182          "200": {
108183            "description": "OK",
108184            "schema": {
108185              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108186            }
108187          },
108188          "401": {
108189            "description": "Unauthorized"
108190          }
108191        },
108192        "schemes": [
108193          "https"
108194        ],
108195        "tags": [
108196          "storage_v1beta1"
108197        ],
108198        "x-kubernetes-action": "watchlist",
108199        "x-kubernetes-group-version-kind": {
108200          "group": "storage.k8s.io",
108201          "kind": "CSIDriver",
108202          "version": "v1beta1"
108203        }
108204      },
108205      "parameters": [
108206        {
108207          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108208          "in": "query",
108209          "name": "allowWatchBookmarks",
108210          "type": "boolean",
108211          "uniqueItems": true
108212        },
108213        {
108214          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108215          "in": "query",
108216          "name": "continue",
108217          "type": "string",
108218          "uniqueItems": true
108219        },
108220        {
108221          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108222          "in": "query",
108223          "name": "fieldSelector",
108224          "type": "string",
108225          "uniqueItems": true
108226        },
108227        {
108228          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108229          "in": "query",
108230          "name": "labelSelector",
108231          "type": "string",
108232          "uniqueItems": true
108233        },
108234        {
108235          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108236          "in": "query",
108237          "name": "limit",
108238          "type": "integer",
108239          "uniqueItems": true
108240        },
108241        {
108242          "description": "If 'true', then the output is pretty printed.",
108243          "in": "query",
108244          "name": "pretty",
108245          "type": "string",
108246          "uniqueItems": true
108247        },
108248        {
108249          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108250          "in": "query",
108251          "name": "resourceVersion",
108252          "type": "string",
108253          "uniqueItems": true
108254        },
108255        {
108256          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108257          "in": "query",
108258          "name": "resourceVersionMatch",
108259          "type": "string",
108260          "uniqueItems": true
108261        },
108262        {
108263          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108264          "in": "query",
108265          "name": "timeoutSeconds",
108266          "type": "integer",
108267          "uniqueItems": true
108268        },
108269        {
108270          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108271          "in": "query",
108272          "name": "watch",
108273          "type": "boolean",
108274          "uniqueItems": true
108275        }
108276      ]
108277    },
108278    "/apis/storage.k8s.io/v1beta1/watch/csidrivers/{name}": {
108279      "get": {
108280        "consumes": [
108281          "*/*"
108282        ],
108283        "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.",
108284        "operationId": "watchStorageV1beta1CSIDriver",
108285        "produces": [
108286          "application/json",
108287          "application/yaml",
108288          "application/vnd.kubernetes.protobuf",
108289          "application/json;stream=watch",
108290          "application/vnd.kubernetes.protobuf;stream=watch"
108291        ],
108292        "responses": {
108293          "200": {
108294            "description": "OK",
108295            "schema": {
108296              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108297            }
108298          },
108299          "401": {
108300            "description": "Unauthorized"
108301          }
108302        },
108303        "schemes": [
108304          "https"
108305        ],
108306        "tags": [
108307          "storage_v1beta1"
108308        ],
108309        "x-kubernetes-action": "watch",
108310        "x-kubernetes-group-version-kind": {
108311          "group": "storage.k8s.io",
108312          "kind": "CSIDriver",
108313          "version": "v1beta1"
108314        }
108315      },
108316      "parameters": [
108317        {
108318          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108319          "in": "query",
108320          "name": "allowWatchBookmarks",
108321          "type": "boolean",
108322          "uniqueItems": true
108323        },
108324        {
108325          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108326          "in": "query",
108327          "name": "continue",
108328          "type": "string",
108329          "uniqueItems": true
108330        },
108331        {
108332          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108333          "in": "query",
108334          "name": "fieldSelector",
108335          "type": "string",
108336          "uniqueItems": true
108337        },
108338        {
108339          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108340          "in": "query",
108341          "name": "labelSelector",
108342          "type": "string",
108343          "uniqueItems": true
108344        },
108345        {
108346          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108347          "in": "query",
108348          "name": "limit",
108349          "type": "integer",
108350          "uniqueItems": true
108351        },
108352        {
108353          "description": "name of the CSIDriver",
108354          "in": "path",
108355          "name": "name",
108356          "required": true,
108357          "type": "string",
108358          "uniqueItems": true
108359        },
108360        {
108361          "description": "If 'true', then the output is pretty printed.",
108362          "in": "query",
108363          "name": "pretty",
108364          "type": "string",
108365          "uniqueItems": true
108366        },
108367        {
108368          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108369          "in": "query",
108370          "name": "resourceVersion",
108371          "type": "string",
108372          "uniqueItems": true
108373        },
108374        {
108375          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108376          "in": "query",
108377          "name": "resourceVersionMatch",
108378          "type": "string",
108379          "uniqueItems": true
108380        },
108381        {
108382          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108383          "in": "query",
108384          "name": "timeoutSeconds",
108385          "type": "integer",
108386          "uniqueItems": true
108387        },
108388        {
108389          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108390          "in": "query",
108391          "name": "watch",
108392          "type": "boolean",
108393          "uniqueItems": true
108394        }
108395      ]
108396    },
108397    "/apis/storage.k8s.io/v1beta1/watch/csinodes": {
108398      "get": {
108399        "consumes": [
108400          "*/*"
108401        ],
108402        "description": "watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead.",
108403        "operationId": "watchStorageV1beta1CSINodeList",
108404        "produces": [
108405          "application/json",
108406          "application/yaml",
108407          "application/vnd.kubernetes.protobuf",
108408          "application/json;stream=watch",
108409          "application/vnd.kubernetes.protobuf;stream=watch"
108410        ],
108411        "responses": {
108412          "200": {
108413            "description": "OK",
108414            "schema": {
108415              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108416            }
108417          },
108418          "401": {
108419            "description": "Unauthorized"
108420          }
108421        },
108422        "schemes": [
108423          "https"
108424        ],
108425        "tags": [
108426          "storage_v1beta1"
108427        ],
108428        "x-kubernetes-action": "watchlist",
108429        "x-kubernetes-group-version-kind": {
108430          "group": "storage.k8s.io",
108431          "kind": "CSINode",
108432          "version": "v1beta1"
108433        }
108434      },
108435      "parameters": [
108436        {
108437          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108438          "in": "query",
108439          "name": "allowWatchBookmarks",
108440          "type": "boolean",
108441          "uniqueItems": true
108442        },
108443        {
108444          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108445          "in": "query",
108446          "name": "continue",
108447          "type": "string",
108448          "uniqueItems": true
108449        },
108450        {
108451          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108452          "in": "query",
108453          "name": "fieldSelector",
108454          "type": "string",
108455          "uniqueItems": true
108456        },
108457        {
108458          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108459          "in": "query",
108460          "name": "labelSelector",
108461          "type": "string",
108462          "uniqueItems": true
108463        },
108464        {
108465          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108466          "in": "query",
108467          "name": "limit",
108468          "type": "integer",
108469          "uniqueItems": true
108470        },
108471        {
108472          "description": "If 'true', then the output is pretty printed.",
108473          "in": "query",
108474          "name": "pretty",
108475          "type": "string",
108476          "uniqueItems": true
108477        },
108478        {
108479          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108480          "in": "query",
108481          "name": "resourceVersion",
108482          "type": "string",
108483          "uniqueItems": true
108484        },
108485        {
108486          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108487          "in": "query",
108488          "name": "resourceVersionMatch",
108489          "type": "string",
108490          "uniqueItems": true
108491        },
108492        {
108493          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108494          "in": "query",
108495          "name": "timeoutSeconds",
108496          "type": "integer",
108497          "uniqueItems": true
108498        },
108499        {
108500          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108501          "in": "query",
108502          "name": "watch",
108503          "type": "boolean",
108504          "uniqueItems": true
108505        }
108506      ]
108507    },
108508    "/apis/storage.k8s.io/v1beta1/watch/csinodes/{name}": {
108509      "get": {
108510        "consumes": [
108511          "*/*"
108512        ],
108513        "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.",
108514        "operationId": "watchStorageV1beta1CSINode",
108515        "produces": [
108516          "application/json",
108517          "application/yaml",
108518          "application/vnd.kubernetes.protobuf",
108519          "application/json;stream=watch",
108520          "application/vnd.kubernetes.protobuf;stream=watch"
108521        ],
108522        "responses": {
108523          "200": {
108524            "description": "OK",
108525            "schema": {
108526              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108527            }
108528          },
108529          "401": {
108530            "description": "Unauthorized"
108531          }
108532        },
108533        "schemes": [
108534          "https"
108535        ],
108536        "tags": [
108537          "storage_v1beta1"
108538        ],
108539        "x-kubernetes-action": "watch",
108540        "x-kubernetes-group-version-kind": {
108541          "group": "storage.k8s.io",
108542          "kind": "CSINode",
108543          "version": "v1beta1"
108544        }
108545      },
108546      "parameters": [
108547        {
108548          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108549          "in": "query",
108550          "name": "allowWatchBookmarks",
108551          "type": "boolean",
108552          "uniqueItems": true
108553        },
108554        {
108555          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108556          "in": "query",
108557          "name": "continue",
108558          "type": "string",
108559          "uniqueItems": true
108560        },
108561        {
108562          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108563          "in": "query",
108564          "name": "fieldSelector",
108565          "type": "string",
108566          "uniqueItems": true
108567        },
108568        {
108569          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108570          "in": "query",
108571          "name": "labelSelector",
108572          "type": "string",
108573          "uniqueItems": true
108574        },
108575        {
108576          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108577          "in": "query",
108578          "name": "limit",
108579          "type": "integer",
108580          "uniqueItems": true
108581        },
108582        {
108583          "description": "name of the CSINode",
108584          "in": "path",
108585          "name": "name",
108586          "required": true,
108587          "type": "string",
108588          "uniqueItems": true
108589        },
108590        {
108591          "description": "If 'true', then the output is pretty printed.",
108592          "in": "query",
108593          "name": "pretty",
108594          "type": "string",
108595          "uniqueItems": true
108596        },
108597        {
108598          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108599          "in": "query",
108600          "name": "resourceVersion",
108601          "type": "string",
108602          "uniqueItems": true
108603        },
108604        {
108605          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108606          "in": "query",
108607          "name": "resourceVersionMatch",
108608          "type": "string",
108609          "uniqueItems": true
108610        },
108611        {
108612          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108613          "in": "query",
108614          "name": "timeoutSeconds",
108615          "type": "integer",
108616          "uniqueItems": true
108617        },
108618        {
108619          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108620          "in": "query",
108621          "name": "watch",
108622          "type": "boolean",
108623          "uniqueItems": true
108624        }
108625      ]
108626    },
108627    "/apis/storage.k8s.io/v1beta1/watch/storageclasses": {
108628      "get": {
108629        "consumes": [
108630          "*/*"
108631        ],
108632        "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.",
108633        "operationId": "watchStorageV1beta1StorageClassList",
108634        "produces": [
108635          "application/json",
108636          "application/yaml",
108637          "application/vnd.kubernetes.protobuf",
108638          "application/json;stream=watch",
108639          "application/vnd.kubernetes.protobuf;stream=watch"
108640        ],
108641        "responses": {
108642          "200": {
108643            "description": "OK",
108644            "schema": {
108645              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108646            }
108647          },
108648          "401": {
108649            "description": "Unauthorized"
108650          }
108651        },
108652        "schemes": [
108653          "https"
108654        ],
108655        "tags": [
108656          "storage_v1beta1"
108657        ],
108658        "x-kubernetes-action": "watchlist",
108659        "x-kubernetes-group-version-kind": {
108660          "group": "storage.k8s.io",
108661          "kind": "StorageClass",
108662          "version": "v1beta1"
108663        }
108664      },
108665      "parameters": [
108666        {
108667          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108668          "in": "query",
108669          "name": "allowWatchBookmarks",
108670          "type": "boolean",
108671          "uniqueItems": true
108672        },
108673        {
108674          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108675          "in": "query",
108676          "name": "continue",
108677          "type": "string",
108678          "uniqueItems": true
108679        },
108680        {
108681          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108682          "in": "query",
108683          "name": "fieldSelector",
108684          "type": "string",
108685          "uniqueItems": true
108686        },
108687        {
108688          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108689          "in": "query",
108690          "name": "labelSelector",
108691          "type": "string",
108692          "uniqueItems": true
108693        },
108694        {
108695          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108696          "in": "query",
108697          "name": "limit",
108698          "type": "integer",
108699          "uniqueItems": true
108700        },
108701        {
108702          "description": "If 'true', then the output is pretty printed.",
108703          "in": "query",
108704          "name": "pretty",
108705          "type": "string",
108706          "uniqueItems": true
108707        },
108708        {
108709          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108710          "in": "query",
108711          "name": "resourceVersion",
108712          "type": "string",
108713          "uniqueItems": true
108714        },
108715        {
108716          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108717          "in": "query",
108718          "name": "resourceVersionMatch",
108719          "type": "string",
108720          "uniqueItems": true
108721        },
108722        {
108723          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108724          "in": "query",
108725          "name": "timeoutSeconds",
108726          "type": "integer",
108727          "uniqueItems": true
108728        },
108729        {
108730          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108731          "in": "query",
108732          "name": "watch",
108733          "type": "boolean",
108734          "uniqueItems": true
108735        }
108736      ]
108737    },
108738    "/apis/storage.k8s.io/v1beta1/watch/storageclasses/{name}": {
108739      "get": {
108740        "consumes": [
108741          "*/*"
108742        ],
108743        "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.",
108744        "operationId": "watchStorageV1beta1StorageClass",
108745        "produces": [
108746          "application/json",
108747          "application/yaml",
108748          "application/vnd.kubernetes.protobuf",
108749          "application/json;stream=watch",
108750          "application/vnd.kubernetes.protobuf;stream=watch"
108751        ],
108752        "responses": {
108753          "200": {
108754            "description": "OK",
108755            "schema": {
108756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108757            }
108758          },
108759          "401": {
108760            "description": "Unauthorized"
108761          }
108762        },
108763        "schemes": [
108764          "https"
108765        ],
108766        "tags": [
108767          "storage_v1beta1"
108768        ],
108769        "x-kubernetes-action": "watch",
108770        "x-kubernetes-group-version-kind": {
108771          "group": "storage.k8s.io",
108772          "kind": "StorageClass",
108773          "version": "v1beta1"
108774        }
108775      },
108776      "parameters": [
108777        {
108778          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108779          "in": "query",
108780          "name": "allowWatchBookmarks",
108781          "type": "boolean",
108782          "uniqueItems": true
108783        },
108784        {
108785          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108786          "in": "query",
108787          "name": "continue",
108788          "type": "string",
108789          "uniqueItems": true
108790        },
108791        {
108792          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108793          "in": "query",
108794          "name": "fieldSelector",
108795          "type": "string",
108796          "uniqueItems": true
108797        },
108798        {
108799          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108800          "in": "query",
108801          "name": "labelSelector",
108802          "type": "string",
108803          "uniqueItems": true
108804        },
108805        {
108806          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108807          "in": "query",
108808          "name": "limit",
108809          "type": "integer",
108810          "uniqueItems": true
108811        },
108812        {
108813          "description": "name of the StorageClass",
108814          "in": "path",
108815          "name": "name",
108816          "required": true,
108817          "type": "string",
108818          "uniqueItems": true
108819        },
108820        {
108821          "description": "If 'true', then the output is pretty printed.",
108822          "in": "query",
108823          "name": "pretty",
108824          "type": "string",
108825          "uniqueItems": true
108826        },
108827        {
108828          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108829          "in": "query",
108830          "name": "resourceVersion",
108831          "type": "string",
108832          "uniqueItems": true
108833        },
108834        {
108835          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108836          "in": "query",
108837          "name": "resourceVersionMatch",
108838          "type": "string",
108839          "uniqueItems": true
108840        },
108841        {
108842          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108843          "in": "query",
108844          "name": "timeoutSeconds",
108845          "type": "integer",
108846          "uniqueItems": true
108847        },
108848        {
108849          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108850          "in": "query",
108851          "name": "watch",
108852          "type": "boolean",
108853          "uniqueItems": true
108854        }
108855      ]
108856    },
108857    "/apis/storage.k8s.io/v1beta1/watch/volumeattachments": {
108858      "get": {
108859        "consumes": [
108860          "*/*"
108861        ],
108862        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
108863        "operationId": "watchStorageV1beta1VolumeAttachmentList",
108864        "produces": [
108865          "application/json",
108866          "application/yaml",
108867          "application/vnd.kubernetes.protobuf",
108868          "application/json;stream=watch",
108869          "application/vnd.kubernetes.protobuf;stream=watch"
108870        ],
108871        "responses": {
108872          "200": {
108873            "description": "OK",
108874            "schema": {
108875              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108876            }
108877          },
108878          "401": {
108879            "description": "Unauthorized"
108880          }
108881        },
108882        "schemes": [
108883          "https"
108884        ],
108885        "tags": [
108886          "storage_v1beta1"
108887        ],
108888        "x-kubernetes-action": "watchlist",
108889        "x-kubernetes-group-version-kind": {
108890          "group": "storage.k8s.io",
108891          "kind": "VolumeAttachment",
108892          "version": "v1beta1"
108893        }
108894      },
108895      "parameters": [
108896        {
108897          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108898          "in": "query",
108899          "name": "allowWatchBookmarks",
108900          "type": "boolean",
108901          "uniqueItems": true
108902        },
108903        {
108904          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108905          "in": "query",
108906          "name": "continue",
108907          "type": "string",
108908          "uniqueItems": true
108909        },
108910        {
108911          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108912          "in": "query",
108913          "name": "fieldSelector",
108914          "type": "string",
108915          "uniqueItems": true
108916        },
108917        {
108918          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108919          "in": "query",
108920          "name": "labelSelector",
108921          "type": "string",
108922          "uniqueItems": true
108923        },
108924        {
108925          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108926          "in": "query",
108927          "name": "limit",
108928          "type": "integer",
108929          "uniqueItems": true
108930        },
108931        {
108932          "description": "If 'true', then the output is pretty printed.",
108933          "in": "query",
108934          "name": "pretty",
108935          "type": "string",
108936          "uniqueItems": true
108937        },
108938        {
108939          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108940          "in": "query",
108941          "name": "resourceVersion",
108942          "type": "string",
108943          "uniqueItems": true
108944        },
108945        {
108946          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108947          "in": "query",
108948          "name": "resourceVersionMatch",
108949          "type": "string",
108950          "uniqueItems": true
108951        },
108952        {
108953          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108954          "in": "query",
108955          "name": "timeoutSeconds",
108956          "type": "integer",
108957          "uniqueItems": true
108958        },
108959        {
108960          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108961          "in": "query",
108962          "name": "watch",
108963          "type": "boolean",
108964          "uniqueItems": true
108965        }
108966      ]
108967    },
108968    "/apis/storage.k8s.io/v1beta1/watch/volumeattachments/{name}": {
108969      "get": {
108970        "consumes": [
108971          "*/*"
108972        ],
108973        "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.",
108974        "operationId": "watchStorageV1beta1VolumeAttachment",
108975        "produces": [
108976          "application/json",
108977          "application/yaml",
108978          "application/vnd.kubernetes.protobuf",
108979          "application/json;stream=watch",
108980          "application/vnd.kubernetes.protobuf;stream=watch"
108981        ],
108982        "responses": {
108983          "200": {
108984            "description": "OK",
108985            "schema": {
108986              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108987            }
108988          },
108989          "401": {
108990            "description": "Unauthorized"
108991          }
108992        },
108993        "schemes": [
108994          "https"
108995        ],
108996        "tags": [
108997          "storage_v1beta1"
108998        ],
108999        "x-kubernetes-action": "watch",
109000        "x-kubernetes-group-version-kind": {
109001          "group": "storage.k8s.io",
109002          "kind": "VolumeAttachment",
109003          "version": "v1beta1"
109004        }
109005      },
109006      "parameters": [
109007        {
109008          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
109009          "in": "query",
109010          "name": "allowWatchBookmarks",
109011          "type": "boolean",
109012          "uniqueItems": true
109013        },
109014        {
109015          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
109016          "in": "query",
109017          "name": "continue",
109018          "type": "string",
109019          "uniqueItems": true
109020        },
109021        {
109022          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
109023          "in": "query",
109024          "name": "fieldSelector",
109025          "type": "string",
109026          "uniqueItems": true
109027        },
109028        {
109029          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
109030          "in": "query",
109031          "name": "labelSelector",
109032          "type": "string",
109033          "uniqueItems": true
109034        },
109035        {
109036          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
109037          "in": "query",
109038          "name": "limit",
109039          "type": "integer",
109040          "uniqueItems": true
109041        },
109042        {
109043          "description": "name of the VolumeAttachment",
109044          "in": "path",
109045          "name": "name",
109046          "required": true,
109047          "type": "string",
109048          "uniqueItems": true
109049        },
109050        {
109051          "description": "If 'true', then the output is pretty printed.",
109052          "in": "query",
109053          "name": "pretty",
109054          "type": "string",
109055          "uniqueItems": true
109056        },
109057        {
109058          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
109059          "in": "query",
109060          "name": "resourceVersion",
109061          "type": "string",
109062          "uniqueItems": true
109063        },
109064        {
109065          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
109066          "in": "query",
109067          "name": "resourceVersionMatch",
109068          "type": "string",
109069          "uniqueItems": true
109070        },
109071        {
109072          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109073          "in": "query",
109074          "name": "timeoutSeconds",
109075          "type": "integer",
109076          "uniqueItems": true
109077        },
109078        {
109079          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109080          "in": "query",
109081          "name": "watch",
109082          "type": "boolean",
109083          "uniqueItems": true
109084        }
109085      ]
109086    },
109087    "/logs/": {
109088      "get": {
109089        "operationId": "logFileListHandler",
109090        "responses": {
109091          "401": {
109092            "description": "Unauthorized"
109093          }
109094        },
109095        "schemes": [
109096          "https"
109097        ],
109098        "tags": [
109099          "logs"
109100        ]
109101      }
109102    },
109103    "/logs/{logpath}": {
109104      "get": {
109105        "operationId": "logFileHandler",
109106        "responses": {
109107          "401": {
109108            "description": "Unauthorized"
109109          }
109110        },
109111        "schemes": [
109112          "https"
109113        ],
109114        "tags": [
109115          "logs"
109116        ]
109117      },
109118      "parameters": [
109119        {
109120          "description": "path to the log",
109121          "in": "path",
109122          "name": "logpath",
109123          "required": true,
109124          "type": "string",
109125          "uniqueItems": true
109126        }
109127      ]
109128    },
109129    "/openid/v1/jwks/": {
109130      "get": {
109131        "description": "get service account issuer OpenID JSON Web Key Set (contains public token verification keys)",
109132        "operationId": "getServiceAccountIssuerOpenIDKeyset",
109133        "produces": [
109134          "application/jwk-set+json"
109135        ],
109136        "responses": {
109137          "200": {
109138            "description": "OK",
109139            "schema": {
109140              "type": "string"
109141            }
109142          },
109143          "401": {
109144            "description": "Unauthorized"
109145          }
109146        },
109147        "schemes": [
109148          "https"
109149        ],
109150        "tags": [
109151          "openid"
109152        ]
109153      }
109154    },
109155    "/version/": {
109156      "get": {
109157        "consumes": [
109158          "application/json"
109159        ],
109160        "description": "get the code version",
109161        "operationId": "getCodeVersion",
109162        "produces": [
109163          "application/json"
109164        ],
109165        "responses": {
109166          "200": {
109167            "description": "OK",
109168            "schema": {
109169              "$ref": "#/definitions/io.k8s.apimachinery.pkg.version.Info"
109170            }
109171          },
109172          "401": {
109173            "description": "Unauthorized"
109174          }
109175        },
109176        "schemes": [
109177          "https"
109178        ],
109179        "tags": [
109180          "version"
109181        ]
109182      }
109183    }
109184  },
109185  "security": [
109186    {
109187      "BearerToken": []
109188    }
109189  ],
109190  "securityDefinitions": {
109191    "BearerToken": {
109192      "description": "Bearer Token authentication",
109193      "in": "header",
109194      "name": "authorization",
109195      "type": "apiKey"
109196    }
109197  },
109198  "swagger": "2.0"
109199}
109200